/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: linear-gradient(to bottom, 
    #221033 0%, 
    #1f0d30 25%,
    #1d0b2d 50%,
    #190927 65%,
    #170824 80%,
    #150722 100%
  );
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Navigation - Hamburger Menu */
.hamburger-nav {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 10000;
}

.hamburger-btn {
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: transparent;
  border:none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 0;
  position: relative;
  z-index: 10001;
}

.hamburger-btn:hover {
  transform: scale(1.1);
  border-color: rgba(139, 58, 125, 0.6);
  box-shadow: 0 6px 30px rgba(139, 58, 125, 0.4);
  background: rgba(139, 58, 125, 0.3);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

.hamburger-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.hamburger-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.hamburger-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 4, 23, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hamburger-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: rgba(30, 11, 46, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(139, 58, 125, 0.3);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
}

.hamburger-menu.is-open .hamburger-content {
  transform: translateX(0);
}

.hamburger-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hamburger-link {
  display: block;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  border: 1px solid transparent;
}

.hamburger-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: rgba(139, 58, 125, 0.8);
  border-radius: 0 2px 2px 0;
  transition: height 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-link:hover,
.hamburger-link.active {
  color: rgba(255, 255, 255, 1);
  background: rgba(139, 58, 125, 0.2);
  border-color: rgba(139, 58, 125, 0.4);
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(139, 58, 125, 0.2);
}

.hamburger-link:hover::before,
.hamburger-link.active::before {
  height: 60%;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger-nav {
    top: 1.5rem;
    right: 1.5rem;
  }

  .hamburger-btn {
    width: 48px;
    height: 48px;
  }

  .hamburger-line {
    width: 20px;
  }

  .hamburger-content {
    width: 100%;
    max-width: 100%;
    padding: 5rem 1.5rem 2rem;
  }

}

/* Hero Container */
.hero-container {
  min-height: 100vh;
  background: transparent; /* Fondo unificado en el body */
  position: relative;
  z-index: 1;
  overflow: visible;
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
}

/* Background Effects - Para toda la página */
.background-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Asegurar que el canvas cubra toda la altura */
.background-effects canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  display: block;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: pulse 2s ease-in forwards;
}

/* Gradient overlay - Oscurecimiento sutil en la zona del hero */
.background-effects::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to bottom, 
    transparent 0%,
    transparent 30%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.1) 85%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Grid background */
.background-effects::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.3;
  background-image: 
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  mask: radial-gradient(circle at center, black 0%, black 40%, transparent 80%);
  -webkit-mask: radial-gradient(circle at center, black 0%, black 40%, transparent 80%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(circle at center, black 0%, black 40%, transparent 80%),
    linear-gradient(to top, transparent 0%, black 20%);
  -webkit-mask-image:
    radial-gradient(circle at center, black 0%, black 40%, transparent 80%),
    linear-gradient(to top, transparent 0%, black 20%);
  z-index: 0;
}

/* Content Wrapper */
.content-wrapper {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Content */
.content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 80rem; /* max-w-5xl */
  margin: 0 auto;
  padding: 2rem 2rem 5rem 2rem;
  position: relative;
  z-index: 50;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(71, 85, 105, 0.5); /* slate-600/50 */
  background-color: rgba(30, 41, 59, 0.6); /* slate-800/60 */
  color: #e2e8f0; /* slate-200 */
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  z-index: 50;
  width: fit-content;
  margin: 0 auto;
}

/* Logo Section */
.logo-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 50;
}

/* Logo Image */
.logo-image {
  width: 18rem; /* w-72 */
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.3));
  margin: 0 auto;
  position: relative;
  z-index: 50;
  display: block;
}

/* Giselle Logo */
.giselle-logo {
  width: 18rem; /* w-72 */
  height: auto;
  color: white;
  fill: currentColor;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.3));
  margin: 0 auto;
  position: relative;
  z-index: 50;
}

/* Tagline */
.tagline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tagline-text {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 200; /* font-extralight */
  color: white;
  line-height: 1.25;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  z-index: 50;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 255, 255, 0.1);
}

/* Description */
.description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 64rem; /* max-w-4xl */
  margin: 0 auto;
  position: relative;
  z-index: 50;
}

.description p {
  font-size: 1.25rem; /* text-xl */
  color: #cbd5e1; /* slate-300 */
  line-height: 1.75;
  font-family: 'DM Sans', sans-serif;
  filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

/* CTA Wrapper */
.cta-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  position: relative;
  z-index: 50;
}

/* Glow Button */
.glow-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 9999px;
  border: 1px solid #8B3A7D;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1;
  background-color: transparent;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.glow-button::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 20px;
  left: 10%;
  bottom: 0px;
  background-color: #8B3A7D;
  filter: blur(10px);
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.glow-button::after {
  content: '';
  position: absolute;
  width: 90%;
  height: 30px;
  left: 5%;
  bottom: -6px;
  background-color: #8B3A7D;
  filter: blur(15px);
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.glow-button:hover {
  box-shadow: 0 2px 12px rgba(139, 58, 125, 0.4);
}

.glow-button:hover::before {
  opacity: 0.3;
}

.glow-button:hover::after {
  opacity: 0.2;
}

.glow-button .arrow {
  font-size: 1.125rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .tagline-text {
    font-size: 2.25rem; /* md:text-4xl */
  }
  
  .content {
    padding: 5rem 2rem;
  }
}

/* Canvas para WebGL - Estilos ya aplicados arriba */

@keyframes pulse {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Sección de Servicios */
.services-section {
  background: transparent; /* Fondo unificado en el body */
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.services-title {
  font-size: 3rem;
  font-weight: 300;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.services-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 4rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

/* Services Grid - Cards con Testimonios */
.services-grid {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-row {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  height: auto;
  min-height: 500px;
  width: 100%;
}

/* Animaciones de entrada lateral - Solo cuando se hace scroll */
.service-row .service-card-large,
.service-row .testimonial-card,
.service-row .video-testimonial-card {
  opacity: 0;
}

/* Primera fila visible por defecto */
.service-row:first-child.animate .service-card-large,
.service-row:first-child.animate .testimonial-card,
.service-row:first-child.animate .video-testimonial-card,
.service-row:first-child .service-card-large,
.service-row:first-child .testimonial-card,
.service-row:first-child .video-testimonial-card {
  opacity: 1;
  animation: none;
}

.service-row.animate:nth-child(odd) .service-card-large {
  animation: slideInLeft 0.8s ease-out forwards;
}

.service-row.animate:nth-child(odd) .testimonial-card,
.service-row.animate:nth-child(odd) .video-testimonial-card {
  animation: slideInRight 0.8s ease-out 0.2s forwards;
  height: auto;

}

.service-row.animate:nth-child(even) .testimonial-card,
.service-row.animate:nth-child(even) .video-testimonial-card {
  animation: slideInLeft 0.8s ease-out forwards;
}

.service-row.animate:nth-child(even) .service-card-large {
  animation: slideInRight 0.8s ease-out 0.2s forwards;
}

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

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


/* Service Card Large (70%) */
.service-card-large {
  flex: 0 0 65%;
  background: rgba(30, 11, 46, 0.6);
  border: 1px solid rgba(139, 58, 125, 0.3);
  border-radius: 1.5rem;
  padding: 3rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.service-card-large:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 58, 125, 0.5);
  box-shadow: 0 15px 50px rgba(139, 58, 125, 0.2);
}

.service-card-large.featured {
  border-color: rgba(139, 58, 125, 0.4);
  background: linear-gradient(135deg, rgba(87, 27, 75, 0.3) 0%, rgba(30, 11, 46, 0.6) 100%);
}

.service-card-large .service-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-card-large .service-icon svg {
  stroke: currentColor;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0 10px rgba(139, 58, 125, 0.5));
}

.service-card-large .service-title {
  font-size: 2rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.service-card-large .service-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-family: 'DM Sans', sans-serif;
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Scrollbar personalizado para las descripciones */
.service-card-large .service-description::-webkit-scrollbar {
  width: 6px;
}

.service-card-large .service-description::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.service-card-large .service-description::-webkit-scrollbar-thumb {
  background: rgba(139, 58, 125, 0.4);
  border-radius: 10px;
}

.service-card-large .service-description::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 58, 125, 0.6);
}

.service-card-large .service-link,
.service-card-large .service-links {
  margin-top: auto;
}

.service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, rgba(139, 58, 125, 0.4) 0%, rgba(109, 52, 132, 0.3) 100%);
  color: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(139, 58, 125, 0.3);
  backdrop-filter: blur(10px);
}

/* Testimonial Card (30%) */
.testimonial-card {
  flex: 0 0 35%;
  background: linear-gradient(135deg, rgba(139, 58, 125, 0.25) 0%, rgba(109, 52, 132, 0.2) 50%, rgba(87, 27, 75, 0.15) 100%);
  border: 1px solid rgba(139, 58, 125, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 100%;
  box-shadow: inset 0 0 30px rgba(139, 58, 125, 0.1), 0 5px 20px rgba(139, 58, 125, 0.1);
}

.testimonial-card:hover {
  border-color: rgba(139, 58, 125, 0.6);
  box-shadow: inset 0 0 40px rgba(139, 58, 125, 0.15), 0 10px 40px rgba(139, 58, 125, 0.2);
  transform: translateY(-3px);
}

.testimonial-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-icon {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  opacity: 0.8;
  filter: drop-shadow(0 0 8px rgba(139, 58, 125, 0.6));
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  font-style: italic;
  font-family: 'DM Sans', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  margin-top: 0.5rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Video Testimonial Styles */
.video-testimonial-card {
  flex: 0 0 30%;
  background: linear-gradient(135deg, rgba(139, 58, 125, 0.25) 0%, rgba(109, 52, 132, 0.2) 50%, rgba(87, 27, 75, 0.15) 100%);
  border: 1px solid rgba(139, 58, 125, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: inset 0 0 30px rgba(139, 58, 125, 0.1), 0 5px 20px rgba(139, 58, 125, 0.1);
  opacity: 0;
}

.video-testimonial-card:hover {
  border-color: rgba(139, 58, 125, 0.6);
  box-shadow: inset 0 0 40px rgba(139, 58, 125, 0.15), 0 10px 40px rgba(139, 58, 125, 0.2);
  transform: translateY(-3px);
}

.video-testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.video-testimonial-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'DM Sans', sans-serif;
  margin: 0;
}

.video-icon {
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(139, 58, 125, 0.6));
}

.video-link-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(139, 58, 125, 0.3) 0%, rgba(139, 58, 125, 0.15) 100%);
  border: 1px solid rgba(139, 58, 125, 0.4);
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
  justify-content: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.video-link-button:hover {
  background: linear-gradient(135deg, rgba(139, 58, 125, 0.4) 0%, rgba(139, 58, 125, 0.2) 100%);
  border-color: rgba(139, 58, 125, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 58, 125, 0.4);
}

.video-link-button svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.video-link-button:hover svg {
  transform: scale(1.1);
}

.video-link-button.secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.3);
  margin-top: 0.75rem;
}

.video-link-button.secondary:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.video-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  justify-content: center;
}

/* Vimeo Embed Styles */
.vimeo-embed {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.vimeo-container {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(139, 58, 125, 0.3);
}

.vimeo-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(139, 58, 125, 0.5);
  color: white;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: rgba(139, 58, 125, 0.1);
  width: fit-content;
}

.service-link:hover {
  background: rgba(139, 58, 125, 0.3);
  border-color: rgba(139, 58, 125, 0.8);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(139, 58, 125, 0.3);
}

.service-link.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  margin-top: 0.75rem;
}

.service-link.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.service-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Tabs Navigation */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(139, 58, 125, 0.2);
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(30, 11, 46, 0.4);
  border: 1px solid rgba(139, 58, 125, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 58, 125, 0.2), transparent);
  transition: left 0.5s ease;
}

.tab-button:hover::before {
  left: 100%;
}

.tab-button:hover {
  background: rgba(139, 58, 125, 0.15);
  border-color: rgba(139, 58, 125, 0.4);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.tab-button.active {
  background: rgba(139, 58, 125, 0.2);
  border-color: rgba(139, 58, 125, 0.5);
  color: white;
  box-shadow: 0 4px 20px rgba(139, 58, 125, 0.3);
}

.tab-button.active::before {
  display: none;
}

.tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.tab-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  filter: drop-shadow(0 0 8px rgba(139, 58, 125, 0.5));
  transition: all 0.3s ease;
}

.tab-button:hover .tab-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(139, 58, 125, 0.7));
}

.tab-button.active .tab-icon svg {
  filter: drop-shadow(0 0 12px rgba(139, 58, 125, 0.8));
}

.tab-label {
  font-weight: 500;
}

.tab-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(139, 58, 125, 0.3);
  border: 1px solid rgba(139, 58, 125, 0.4);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: auto;
}

.tab-button.active .tab-badge {
  background: rgba(139, 58, 125, 0.5);
  border-color: rgba(139, 58, 125, 0.7);
}

/* Tabs Content */
.tabs-content {
  position: relative;
  min-height: 400px;
  margin-bottom: 2rem;
}

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tab-panel.active {
  display: block;
  animation: fadeInTab 0.5s ease forwards;
}

@keyframes fadeInTab {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel-content {
  background: rgba(30, 11, 46, 0.6);
  border: 1px solid rgba(139, 58, 125, 0.3);
  border-radius: 1.5rem;
  padding: 3rem;
  backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: 0 10px 40px rgba(139, 58, 125, 0.1);
  transition: all 0.3s ease;
}

.tab-panel.active .tab-panel-content {
  box-shadow: 0 15px 50px rgba(139, 58, 125, 0.2);
  border-color: rgba(139, 58, 125, 0.4);
}

.tab-panel-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
}

.tab-panel-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0 20px rgba(139, 58, 125, 0.6));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.tab-panel-title {
  font-size: 2rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tab-panel-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-family: 'DM Sans', sans-serif;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tab-panel-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.tab-panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(139, 58, 125, 0.5);
  color: white;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: rgba(139, 58, 125, 0.1);
  min-width: 200px;
}

.tab-panel-link:hover {
  background: rgba(139, 58, 125, 0.3);
  border-color: rgba(139, 58, 125, 0.8);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(139, 58, 125, 0.3);
}

.tab-panel-link.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.tab-panel-link.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Responsive para servicios */
@media (max-width: 768px) {
  .services-container {
    padding-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3rem;
  }

  .services-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .services-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .services-grid {
    margin-top: 2.5rem;
    gap: 2rem;
  }

  .service-row {
    flex-direction: column;
    gap: 1.25rem;
    height: auto;
    min-height: auto;
  }

  /* En móvil, las filas con reverse deben mostrar servicio primero, testimonio después */
  .service-row.reverse {
    flex-direction: column-reverse;
  }

  /* Sin animaciones en móvil - mostrar directamente */
  .service-row .service-card-large,
  .service-row .testimonial-card,
  .service-row .video-testimonial-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .service-row.animate .service-card-large,
  .service-row.animate .testimonial-card,
  .service-row.animate .video-testimonial-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* Deshabilitar todas las animaciones de entrada en móvil */
  .service-row:first-child .service-card-large,
  .service-row:first-child .testimonial-card,
  .service-row:first-child .video-testimonial-card {
    opacity: 1 !important;
    animation: none !important;
  }

  .service-card-large {
    flex: 1 1 100%;
    padding: 1.75rem;
    height: auto;
    min-height: auto;
  }

  .service-card-large .service-icon {
    margin-bottom: 1.25rem;
  }

  .service-card-large .service-icon svg {
    width: 40px;
    height: 40px;
  }

  .service-card-large .service-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .service-card-large .service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .service-card-large .service-link {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .service-badge {
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
  }

  .testimonial-card {
    flex: 1 1 100%;
    padding: 1.5rem;
    height: auto;
    min-height: auto;
  }

  .testimonial-content {
    gap: 0.75rem;
  }

  .quote-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0.25rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .testimonial-author {
    font-size: 0.85rem;
    margin-top: 0.25rem;
  }

  .video-testimonial-card {
    flex: 1 1 100%;
    padding: 1.5rem;
    height: auto;
    min-height: auto;
  }

  .video-testimonial-header {
    margin-bottom: 1rem;
  }

  .video-testimonial-header h4 {
    font-size: 1rem;
  }

  .video-link-button {
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
  }

  .vimeo-embed {
    padding: 1.25rem;
  }

  .vimeo-container {
    padding-bottom: 56.25%; /* Mantener 16:9 en móvil */
  }

  .video-links-group {
    gap: 0.5rem;
  }

  .service-links {
    gap: 0.5rem;
  }

  .service-link.secondary {
    margin-top: 0.5rem;
  }
}

/* Trust Section - ¿Por qué debes confiar en mí? */
.trust-section {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.trust-title {
  font-size: 3rem;
  font-weight: 300;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.trust-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.trust-photo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
}

.trust-photo-container.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.trust-photo-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 3px solid rgba(139, 58, 125, 0.4);
  box-shadow: 0 0 40px rgba(139, 58, 125, 0.3), inset 0 0 40px rgba(139, 58, 125, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(30, 11, 46, 0.8);
}

.trust-photo-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(139, 58, 125, 0.6);
  box-shadow: 0 15px 60px rgba(139, 58, 125, 0.5), inset 0 0 50px rgba(139, 58, 125, 0.15);
}

.trust-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(139, 58, 125, 0.1) 0%,
    transparent 50%,
    rgba(87, 27, 75, 0.1) 100%
  );
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.trust-card {
  background: rgba(30, 11, 46, 0.6);
  border: 1px solid rgba(139, 58, 125, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 58, 125, 0.1), transparent);
  transition: left 0.6s ease;
}

.trust-card:hover::before {
  left: 100%;
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 58, 125, 0.5);
  box-shadow: 0 15px 50px rgba(139, 58, 125, 0.2);
}

.trust-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.trust-icon svg {
  stroke: currentColor;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0 10px rgba(139, 58, 125, 0.5));
  transition: transform 0.3s ease;
}

.trust-card:hover .trust-icon svg {
  transform: scale(1.1) rotate(5deg);
}

.trust-card-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.trust-card-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
}

.trust-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.trust-testimonial-item {
  background: linear-gradient(135deg, rgba(139, 58, 125, 0.25) 0%, rgba(109, 52, 132, 0.2) 50%, rgba(87, 27, 75, 0.15) 100%);
  border: 1px solid rgba(139, 58, 125, 0.4);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: inset 0 0 30px rgba(139, 58, 125, 0.1), 0 5px 20px rgba(139, 58, 125, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.trust-testimonial-item:hover {
  border-color: rgba(139, 58, 125, 0.6);
  box-shadow: inset 0 0 40px rgba(139, 58, 125, 0.15), 0 10px 40px rgba(139, 58, 125, 0.2);
  transform: translateY(-5px);
}

.quote-icon-small {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  opacity: 0.8;
  filter: drop-shadow(0 0 8px rgba(139, 58, 125, 0.6));
}

.trust-testimonial-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-style: italic;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.trust-testimonial-author {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Animaciones scroll para trust section */
.trust-card.animate,
.trust-testimonial-item.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Responsive para trust section */
@media (max-width: 768px) {
  .trust-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .trust-title {
    font-size: 2rem;
  }

  .trust-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .trust-photo-container {
    margin-bottom: 3rem;
  }

  .trust-photo-wrapper {
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .trust-card {
    padding: 2rem;
  }

  .trust-card-title {
    font-size: 1.25rem;
  }

  .trust-card-description {
    font-size: 0.95rem;
  }

  .trust-testimonials {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .trust-testimonial-item {
    padding: 2rem;
  }

  .trust-testimonial-text {
    font-size: 1rem;
  }

  .trust-testimonial-author {
    font-size: 0.9rem;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.cta-content {
  text-align: center;
  background: linear-gradient(135deg, rgba(139, 58, 125, 0.2) 0%, rgba(109, 52, 132, 0.15) 50%, rgba(87, 27, 75, 0.1) 100%);
  border: 1px solid rgba(139, 58, 125, 0.3);
  border-radius: 2rem;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(139, 58, 125, 0.2), inset 0 0 60px rgba(139, 58, 125, 0.1);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: white;
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: linear-gradient(135deg, rgba(139, 58, 125, 0.9) 0%, rgba(109, 52, 132, 0.8) 100%);
  color: white;
  border-color: rgba(139, 58, 125, 0.5);
  box-shadow: 0 5px 20px rgba(139, 58, 125, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 58, 125, 0.5);
  border-color: rgba(139, 58, 125, 0.7);
}

.cta-button.secondary {
  background: rgba(30, 11, 46, 0.6);
  color: white;
  border-color: rgba(139, 58, 125, 0.4);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  transform: translateY(-3px);
  background: rgba(30, 11, 46, 0.8);
  border-color: rgba(139, 58, 125, 0.6);
  box-shadow: 0 10px 30px rgba(139, 58, 125, 0.3);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}

.footer-brand-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.footer-brand-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(5px);
}

.footer-link svg {
  flex-shrink: 0;
}

.footer-social {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(139, 58, 125, 0.2);
  border-bottom: 1px solid rgba(139, 58, 125, 0.2);
  margin-bottom: 2rem;
}

.footer-social-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(30, 11, 46, 0.6);
  border: 1px solid rgba(139, 58, 125, 0.3);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer-social-link:hover {
  background: rgba(139, 58, 125, 0.3);
  border-color: rgba(139, 58, 125, 0.5);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 58, 125, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'DM Sans', sans-serif;
  margin: 0;
}

.footer-developer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'DM Sans', sans-serif;
  margin: 0.5rem 0 0 0;
  text-align: center;
  width: 100%;
}

.footer-developer .highlight-text {
  color: #8B3A7D;
  font-weight: 600;
}

.footer-developer .theone-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-developer .theone-link:hover {
  transform: translateY(-1px);
}

.footer-developer .theone-link:hover .highlight-text {
  color: #a34a94;
  text-shadow: 0 0 10px rgba(139, 58, 125, 0.5);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive para CTA y Footer */
@media (max-width: 768px) {
  .cta-container {
    padding: 4rem 1rem;
  }

  .cta-content {
    padding: 3rem 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* Love Wall Section */
.love-wall-section {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}

.love-wall-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

.love-wall-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.love-wall-title {
  font-size: 3rem;
  font-weight: 300;
  color: white;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
  font-family: 'DM Sans', sans-serif;
}

.love-wall-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
}

.love-wall-grid-wrapper {
  position: relative;
  max-height: 720px;
  overflow-y: auto;
  border-radius: 1.5rem;
  padding-right: 0.35rem;
  padding-bottom: 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.love-wall-grid-wrapper::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.love-wall-grid {
  column-count: 4;
  column-gap: 1.75rem;
}

.love-wall-item {
  break-inside: avoid;
  margin-bottom: 1.75rem;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(139, 58, 125, 0.3);
  box-shadow: 0 18px 45px rgba(11, 4, 23, 0.35);
  background: linear-gradient(135deg, rgba(139, 58, 125, 0.35) 0%, rgba(30, 11, 46, 0.75) 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.love-wall-item img {
  width: 100%;
  display: block;
  border-radius: 1.25rem;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.4s ease;
}

.love-wall-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 5, 26, 0.05) 0%, rgba(14, 5, 26, 0.45) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.love-wall-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(139, 58, 125, 0.35);
  border-color: rgba(139, 58, 125, 0.6);
}

.love-wall-item:hover img {
  transform: scale(1.05);
}

.love-wall-item:hover::after {
  opacity: 0.2;
}

/* Cursor pointer para indicar que es clickeable (desktop y móvil) */
.love-wall-item {
  cursor: pointer;
}

.love-wall-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 1;
}

.love-wall-grid-wrapper.is-scrolling .love-wall-fade,
.love-wall-grid-wrapper.at-bottom .love-wall-fade {
  opacity: 0;
}

/* Partículas flotantes */
.love-wall-particles {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  height: 200px;
  pointer-events: none;
  overflow: visible;
  border-radius: 0 0 1.5rem 1.5rem;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 5;
}

.love-wall-grid-wrapper.is-scrolling ~ .love-wall-particles,
.love-wall-grid-wrapper.at-bottom ~ .love-wall-particles {
  opacity: 0;
}

/* Partículas individuales creadas con JavaScript */
.love-wall-particle {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 4px;
  background: rgba(139, 58, 125, 0.7);
  border-radius: 50%;
  animation: floatUp 10s infinite ease-in-out;
  box-shadow: 
    0 0 8px rgba(139, 58, 125, 0.6),
    0 0 16px rgba(139, 58, 125, 0.4),
    0 0 24px rgba(139, 58, 125, 0.2);
  pointer-events: none;
  z-index: 2;
}
.love-wall-scroll-overlay{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  background: transparent;
  z-index: 9999;
}
@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  95% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-200px) translateX(var(--drift, 0px));
    opacity: 0;
  }
}

.love-wall-scroller {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 10;
}

.love-wall-scroller.is-hidden {
  display: none;
}

.love-wall-scroll-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  border: 1px solid rgba(139, 58, 125, 0.5);
  background: linear-gradient(135deg, rgba(139, 58, 125, 0.75) 0%, rgba(109, 52, 132, 0.65) 100%);
  color: rgba(255, 255, 255, 0.95);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 15px 40px rgba(139, 58, 125, 0.35);
  backdrop-filter: blur(12px);
}

.love-wall-scroll-trigger:hover,
.love-wall-scroll-trigger:focus {
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(139, 58, 125, 0.45);
  background: linear-gradient(135deg, rgba(139, 58, 125, 0.85) 0%, rgba(109, 52, 132, 0.75) 100%);
}

.love-wall-scroll-trigger:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

.love-wall-scroll-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.love-wall-scroll-text {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.love-wall-grid-wrapper.is-scrolling ~ .love-wall-scroller .love-wall-scroll-icon {
  transform: translateY(4px);
}

@media (max-width: 1024px) {
  .love-wall-container {
    padding: 5rem 2rem;
  }

  .love-wall-grid {
    column-count: 3;
  }

  .love-wall-scroller {
    right: 2rem;
  }
}

@media (max-width: 768px) {
  .love-wall-title {
    font-size: 2.25rem;
  }

  .love-wall-subtitle {
    font-size: 1.05rem;
  }
  .love-wall-scroll-overlay {
    display: block;
  }
  .love-wall-grid {
    column-count: 2;
    column-gap: 1.25rem;
  }

  .love-wall-grid-wrapper {
    max-height: 520px;
  }

  .love-wall-scroller {
    bottom: 2rem;
  }

  .love-wall-scroll-trigger {
    padding: 0.7rem 1.5rem;
  }
  .love-wall-particles {
    bottom: 80px;
  }
}

@media (max-width: 520px) {
  .love-wall-container {
    padding: 4rem 1rem;
  }

  .love-wall-grid {
    column-count: 1;
  }

  .love-wall-item {
    margin-bottom: 1.25rem;
  }

  .love-wall-grid-wrapper {
    max-height: 480px;
  }

  .love-wall-scroller {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Modal para ampliar imágenes (desktop y móvil) */
.love-wall-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.love-wall-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.love-wall-modal-overlay {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 4, 23, 0.95);
  backdrop-filter: blur(10px);
}

.love-wall-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.love-wall-modal-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  filter: saturate(1.05) contrast(1.05);
}

.love-wall-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(139, 58, 125, 0.8);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  backdrop-filter: blur(10px);
}

.love-wall-modal-close:hover {
  background: rgba(139, 58, 125, 1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.love-wall-modal-close svg {
  width: 20px;
  height: 20px;
}

/* Ajustes para móvil */
@media (max-width: 768px) {
  .love-wall-modal-content {
    padding: 1rem;
  }

  .love-wall-modal-image {
    max-height: 85vh;
    border-radius: 0.75rem;
  }

  .love-wall-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
  }

  .love-wall-modal-close svg {
    width: 18px;
    height: 18px;
  }

  /* Mostrar botón de scroll en móvil */
  .love-wall-scroller {
    display: block !important;
  }
}




