
.text-outline {
  -webkit-text-stroke: 2px #E7983F;
  -webkit-text-fill-color: transparent;
}

.diagonal-section {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.diagonal-section-reverse {
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse-border {
  0%, 100% {
    border-color: #E7983F;
  }
  50% {
    border-color: #F1F1F1;
  }
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out;
}

.animate-pulse-border {
  animation: pulse-border 2s infinite;
}

.animate-rotate-slow {
  animation: rotate-slow 20s linear infinite;
}

.animate-slide-up {
  animation: slide-up 0.6s ease-out;
}

.hover-3d {
  transition: transform 0.3s;
  transform-style: preserve-3d;
}

.hover-3d:hover {
  transform: rotateY(10deg) rotateX(-10deg) scale(1.05);
}

.gradient-border {
  background: linear-gradient(45deg, #E7983F, #F1F1F1, #E7983F);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

.card-tilt {
  transition: transform 0.3s;
}

.card-tilt:hover {
  transform: perspective(1000px) rotateX(10deg) translateY(-10px);
}

.neon-text {
  text-shadow: 0 0 10px #E7983F, 0 0 20px #E7983F, 0 0 30px #E7983F;
}

.glass-morphism {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(231, 152, 63, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.zigzag-border {
  background-image: linear-gradient(135deg, #E7983F 25%, transparent 25%),
    linear-gradient(225deg, #E7983F 25%, transparent 25%),
    linear-gradient(45deg, #E7983F 25%, transparent 25%),
    linear-gradient(315deg, #E7983F 25%, transparent 25%);
  background-position: 10px 0, 10px 0, 0 0, 0 0;
  background-size: 20px 20px;
  background-repeat: repeat-x;
}

.text-gradient-animated {
  background: linear-gradient(270deg, #E7983F, #F1F1F1, #E7983F);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease infinite;
}

/* Fix para el navbar en dispositivos móviles - padding top para el hero */
@media (max-width: 1023px) {
  section:first-of-type {
    padding-top: 100px;
  }
}