/* Reset básico */
* {
    margin: 0; padding: 0; box-sizing: border-box;
  }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo 2', sans-serif;
  background: #000000;
    /* overflow-x: hidden; */
}

/*-------------------
---------NAVEGACIÓN-----
---------------------*/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;

  position: fixed;   /* 🔥 Fija el navbar */
  top: 0;            /* Lo ancla arriba */
  left: 0;
  width: 100%;       /* Ocupa todo el ancho */

  background: rgba(0, 0, 0, 0.4); /* Fondo negro translúcido elegante */
  backdrop-filter: blur(8px);
  z-index: 1002;     /* Asegura que quede por encima de todo */
}


.logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(
    90deg,
    #000 0%,
    #d9b382 35%,
    #ecaf5f 50%,
    #d9b382 65%,
    #000 100%
  );
  background-size: 300% auto;
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

  animation: shineText 11s linear infinite, glowText 4s ease-in-out infinite;
}

@keyframes shineText {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 300% 0;
  }
}

@keyframes glowText {
  0%, 100% {
    text-shadow:
      0 0 2px #d9b382,
      0 0 4px #d9b382;
  }
  50% {
    text-shadow:
      0 0 4px #ecaf5f,
      0 0 8px #ecaf5f;
  }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  font-weight: bolder;
  transition: color 0.3s ease;

  /* Degradado en el texto */
  background: linear-gradient(180deg, #fafafa, #ddd1c1, #d3bda8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Para navegadores que no soporten -webkit-text-fill-color */
  background-clip: text;
  color: transparent;
}


.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -2px;  /* Espacio debajo del texto */
  left: 0;
  background-color: #ecaf5f;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #eed8bc;  /* Color del texto al pasar */
}

.nav-links li a:hover::after {
  width: 100%;  /* La línea se extiende */
}



/* MENU TOGGLE base (oculto en desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1003;
}

.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #e0e0d9;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  position: absolute;
}

.menu-toggle .hamburger::before {
  transform: translateY(-8px);
}

.menu-toggle .hamburger::after {
  transform: translateY(8px);
}

.menu-toggle.open .hamburger {
  background: transparent;
}

.menu-toggle.open .hamburger::before {
  transform: rotate(45deg);
}

.menu-toggle.open .hamburger::after {
  transform: rotate(-45deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    min-height: 100%;
    overflow-y: auto;
    flex-direction: column;
    width: 200px;
    padding: 4rem 1rem 1rem;
    gap: 1.5rem;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.6); /* ← semitransparente por defecto */
    backdrop-filter: blur(10px);   /* ← efecto glass */
    -webkit-backdrop-filter: blur(10px);
  }

  .navbar {
    background-color: rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(9px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.1s ease, backdrop-filter 0.3s ease;
    z-index: 1002;
  }

  /* Navbar al abrir el menú */
  .navbar.active-bg {
    background-color: #111111 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Panel del menú abierto */
  .nav-links.active {
  transform: translateX(0);
  background: #111111; /* ← Aplica fondo sólido inmediato */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: background-color 0.3s ease;
}
}

/*-------------
---HERO SECTION--
-----------------*/
/* HERO SECTION */

/* Base (desktop) */
 /* === HERO TITLE con efecto linterna === */
.hero-section {
  position: relative; /* ⬅️ Esto es indispensable */
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: image-set(
    url("img/fondo-img-480.avif") 1x,
    url("img/fondo-img-768.avif") 2x,
    url("img/fondo-img-1440.avif") 3x
  );
  background-size: cover;
  background-position: center var(--parallax-offset, 0px);
  background-repeat: no-repeat;
  filter: brightness(0.25) saturate(0.8) blur(2px);
  z-index: -1;
  will-change: background-position;
}

.hero-subtitle {
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: #f1f1f1;
  margin-top: -5rem;
  max-width: 750px;
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSubtitle 1.5s ease-out 4s forwards;
}

@keyframes fadeInSubtitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.wind-title {
  position: relative;
  text-align: center;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.line {
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: 0.07em;
  user-select: none;

  background: linear-gradient(
    to right,
    rgba(255, 230, 100, 0) 0%,
    rgba(255, 230, 100, 0.3) 20%,
    rgba(255, 230, 100, 1) 40%,
    rgba(255, 230, 100, 1) 60%,
    rgba(255, 230, 100, 0.3) 80%,
    rgba(255, 230, 100, 1) 100%
  );
  background-size: 200% 100%;
  background-position: -100% center;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  animation: lightSweep 4s ease-out forwards;
  white-space: nowrap;
}

@keyframes lightSweep {
  0% {
    background-position: -150% center;
  }
  100% {
    background-position: 50% center;
  }
}
 

.reflection {
  transform: scaleY(-1);
  opacity: 0;
  margin-top: 0.3em;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  animation: reflectionFade 2s ease-out 1s forwards;
}

@keyframes reflectionFade {
  to {
    opacity: 0.15;
  }
}


@media (max-width: 1024px) {
  .line.desktop-only { display: none; }
  .line.mobile-only {
    display: block;
    white-space: normal;
  }

  .hero-subtitle {
    margin-top: -8rem; /* más separado del título en mobile/tablet */
    padding: 0 1.5rem;
    font-size: 1rem;
  }

  .wind-title {
    gap: 0.05em;
    margin-top: -2rem;
  }

  .line.mobile-only {
    margin-bottom: 1rem; 
  }
}

@media (min-width: 1025px) {
  .line.mobile-only { display: none; }
  .line.desktop-only {
    display: block;
    white-space: nowrap;
  }

}

@media (min-width: 601px) and (max-width: 1024px) {
  .wind-title {
    gap: 0.05em;
  }

  .line.mobile-only {
    margin-bottom: -2rem;
    font-size: 3.2rem; /* tamaño equilibrado para tablets */
  }

  .reflection.mobile-only {
    margin-top: 0.1em;
  }

  .hero-subtitle {
    margin-top: -7rem;
    font-size: 1.1rem;
    padding: 0 2rem;
  }
}

/*------------------------
- SERVICES CARRUSEL ----
------------------------- */
.scroll-offset {
  position: relative;
  top: -80px; /* o ajustá según altura de tu navbar */
  height: 0;
  visibility: hidden;
}

.services-title {
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 2rem);
  font-family: 'Exo 2', sans-serif;
  font-weight: 100;
  letter-spacing: 0.05em;
  margin-bottom: -4rem;
  margin-top: 2rem;
  background: linear-gradient(90deg, #f5d598, #ecaf5f, #f5d598);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 1s ease, transform 0.8s ease;
}

.services-title.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: gradientSweep 5s linear infinite;
}

@keyframes gradientSweep {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.services-carousel {
  position: relative;
  margin: 2rem auto;
  padding: 6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: visible;
}

.carousel-track {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 400px;
  min-height: 420px;
}

.carousel-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 280px;
  height: 100%;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 16px rgba(0,0,0,0.3);
  color: #f1f1f1;
  text-align: center;
  transform: translateX(-50%) scale(0.85);
  opacity: 0.25;
  transition: transform 0.6s ease, opacity 0.6s ease, background 0.4s ease;
  pointer-events: none;
}

.carousel-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
  color: #f5f5f5;
  min-height: 3.2em;
  transition: all 0.4s ease;
}

.carousel-card p {
  font-size: 0.9rem;
  color: #ccc;
  min-height: 6.2em;
  line-height: 1.5;
  transition: opacity 0.4s ease, transform 0.4s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.carousel-card .icon-placeholder {
  margin-bottom: 1rem;
}

.carousel-card.position-0 {
  transform: translateX(-50%) scale(1.1);
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 20px rgba(255, 220, 150, 0.15),
    0 0 40px rgba(255, 220, 150, 0.2),
    0 0 60px rgba(255, 220, 150, 0.1);
}

.carousel-card.position-1 {
  transform: translateX(calc(-50% - 220px)) scale(0.95);
  z-index: 3;
  opacity: 0.6;
}

.carousel-card.position-2 {
  transform: translateX(calc(-50% + 220px)) scale(0.95);
  z-index: 3;
  opacity: 0.6;
}

.carousel-card.position-3 {
  transform: translateX(-50%) scale(0.8);
  z-index: 1;
  opacity: 0.2;
}

.carousel-card.position-0::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 230, 150, 0.25) 0%, rgba(255, 230, 150, 0) 80%);
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
  filter: blur(30px);
  transition: opacity 0.4s ease;
}

.carousel-viewport {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.carousel-track-wrapper {
  flex-grow: 1;
  max-width: 1000px;
  position: relative;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #d9b382;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 1rem;
  transition: transform 0.2s ease;
}

.carousel-arrow.left {
  left: 11rem;
}

.carousel-arrow.right {
  right: 11rem;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.2);
}

/* Dots por defecto ocultos */
.carousel-dots {
  display: none;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #777;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dots button.active {
  background-color: #d9b382;
}

/* Sólo visibles en móvil y tablet */
@media (max-width: 768px) {
  .carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-left: -2rem;
    gap: 0.5rem;
  }

  .carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #777;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .carousel-dots button.active {
    background-color: #d9b382;
  }

  .carousel-card {
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .carousel-card.position-0::before {
    content: "";
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle contain, rgba(255, 230, 150, 0.25) 0%, rgba(255, 230, 150, 0) 80%);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
    filter: blur(20px);
    transition: opacity 0.4s ease;
  }

  .carousel-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .services-title {
    margin-bottom: -7rem;
    margin-top: 3rem;
  }

  .carousel-viewport {
    overflow-x: hidden;
    width: 100vw;
    position: relative;
    padding-top: 2rem;
  }

  .carousel-track {
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
  }
  

  .carousel-dots {
    margin-top: 4rem;
    margin-left: auto;
    order: 2;
  }

}

@media (max-width: 768px) {
  .carousel-card {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.6s ease,
                box-shadow 0.6s ease;
    will-change: transform, opacity, box-shadow;
  }

  .carousel-card.position-0 {
    transform: translateX(-50%) scale(1.05) rotateY(0deg);
    box-shadow:
      0 10px 20px rgba(255, 220, 150, 0.2),
      0 20px 30px rgba(255, 220, 150, 0.15);
  }

  .carousel-card.position-1 {
    transform: translateX(calc(-50% - 220px)) scale(0.9) rotateY(15deg);
  }

  .carousel-card.position-2 {
    transform: translateX(calc(-50% + 220px)) scale(0.9) rotateY(-15deg);
  }

  .carousel-card.position-3 {
    transform: translateX(-50%) scale(0.75);
    opacity: 0.15;
  }

  .carousel-card.position-0::before {
    opacity: 0.5;
    filter: blur(25px);
    transition: all 0.4s ease;
  }
}











/*-------------
-----ABOUT 7MO---
----------------*/
.scroll-offset-about {
  position: relative;
  top: -50px; /* o ajustá según altura de tu navbar */
  height: 0;
  visibility: hidden;
}
.about-7mo {
  display: flex;
  flex-wrap: wrap;
  min-height: 50vh;
  width: 100%;
  overflow: hidden;
}

.about-7mo-left {
  flex: 1 1 50%;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 3rem 2rem;
}

.about-7mo-content {
  max-width: 540px;
}

.about-7mo-content h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #d9b382;
  font-weight: 700;
}

.about-7mo-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e3e3e3;
}

.about-7mo-right {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.about-7mo-parallax-img {
  position: relative;
  width: 100%;
  height: 70%;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
}

.about-7mo-parallax-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

.about-7mo-parallax-img img {
  will-change: transform;
  backface-visibility: hidden;
}

.about-7mo-parallax-img::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.308); /* Opacidad del overlay */
  z-index: 2;
  pointer-events: none;
}

.about-7mo-parallax-img img {
  position: relative;
  z-index: 1;
}




@media (max-width: 768px) {
  .about-7mo {
    flex-direction: column;
  }

  .scroll-offset-about {
    margin-bottom: 0rem; /* asegura que no haya un espaciado extra invisible */
  }

  .about-7mo-left, .about-7mo-right {
    flex: 1 1 100%;
    min-height: 50vh;
  }

  .about-7mo-parallax {
    height: 100%;
  }

  .about-7mo-content {
    text-align: center;
  }

}

@media screen and (min-width: 769px) {
  .about-7mo {
    margin-bottom: 2rem; /* Antes podría haber sido 4rem o más */
  }

  .contact-section {
    margin-top: -18rem; /* Reducimos separación desde arriba */
  }
}


/*--------------------
-----CONTACT---------
--------------------*/
.contact-section {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
  min-height: 100vh;
}

.contact-card {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: rgba(8, 8, 8, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #d9b382;
  text-align: center;
}

.contact-card label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #ccc;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.048);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  font-family: 'Exo 2', sans-serif;
  resize: none;
}

.contact-card button {
  width: 100%;
  padding: 0.9rem 1rem;
  background-color: #d9b382;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-card button:hover {
  background-color: #e6c99b;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 2rem 1.5rem;
  }
}

.form-response {
  margin-top: 1rem;
  font-size: 0.95rem;
  text-align: center;
}

.form-response {
  margin-top: 1rem;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.form-response.visible {
  opacity: 1;
}

.spinner {
  display: none;
  margin-left: 10px;
  border: 2px solid #fff;
  border-top: 2px solid #d9b382;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

button.loading .btn-text {
  opacity: 0.5;
}

button.loading .spinner {
  display: inline-block;
}

/* Brillo superior animado */
.contact-card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 220%;
  background: radial-gradient(
    ellipse at top,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(80px);
  animation: cardGlowMove 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

/* Animación suave del resplandor */
@keyframes cardGlowMove {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  100% {
    transform: translateX(-50%) translateY(10%);
  }
}


/* === FOOTER GENERAL === */
footer {
  background-color: #000000;
  color: #f1f1f1;
  padding: 3rem 1rem 2rem;
  font-size: 0.9rem;
  box-shadow: inset 0 3px 8px rgb(0 0 0 / 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d9b382;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e3e3e3;
  margin-bottom: 1rem;
}

/* Enlaces */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.6rem;
}

.footer-list a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #d9b382;
}

/* Redes sociales */
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-social a {
  color: #f1f1f1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #d9b382;
  transform: scale(1.1);
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #ccc;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom-col {
  flex: 1 1 30%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom-col.center {
  justify-content: center;
  text-align: center;
}

.footer-bottom-col.right {
  justify-content: flex-end;
  text-align: right;
}

.footer-bottom svg {
  min-width: 16px;
  min-height: 16px;
}

/* Responsive en móviles */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-col {
    justify-content: center !important;
    text-align: center !important;
  }
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 2rem;
  }

  .footer-social {
    justify-content: center;
  }
}


/* === -----------------------
Estilos para la sección de políticas
-------------------------- === */
.body-content {
  background-color: #000000;
}

.policy-content {
  max-width: 720px;
  margin: 3rem auto 6rem;
  padding: 0 1rem;
  color: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
  background: rgba(10, 59, 71, 0.678);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  line-height: 1.7;
}

.policy-content h1 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.8rem;
  text-align: center;
  color: #d9b382;
  letter-spacing: 0.03em;
}

.policy-content h2 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: 2.4rem;
  margin-bottom: 1rem;
  border-left: 4px solid #d9b382;
  padding-left: 0.8rem;
  color: #f5f5f5;
}

.policy-content p {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1.3rem;
  color: #e3e3e3;
}

.policy-content ul {
  margin-left: 1.6rem;
  margin-bottom: 1.6rem;
  color: #e3e3e3;
  font-size: 1rem;
}

.policy-content ul li {
  margin-bottom: 0.6rem;
  padding-left: 0.2rem;
  position: relative;
}

.policy-content ul li::before {
  content: '•';
  color: #d9b382;
  position: absolute;
  left: -1rem;
  font-size: 1.2rem;
  line-height: 1;
}

.policy-content a {
  color: #d9b382;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy-content a:hover {
  color: #f5f5f5;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-content {
    margin: 2rem 1rem 4rem;
    padding: 1rem 1rem 2rem;
  }

  .policy-content h1 {
    font-size: 2rem;
  }

  .policy-content h2 {
    font-size: 1.2rem;
    margin-top: 1.8rem;
  }

  .policy-content p,
  .policy-content ul,
  .policy-content ul li {
    font-size: 0.95rem;
  }
}


/*------------- 
------BANNER -----
------------------*/
/* Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #000000;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 0.95rem;
}
.cookie-banner-content p {
  margin: 0;
}
.cookie-banner-content a {
  color: #f5c349;
  text-decoration: underline;
}
.cookie-buttons button {
  margin-left: 10px;
  padding: 0.5rem 1rem;
  border: none;
  background: #cfb14e;
  color: #222;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}
.cookie-buttons button:hover {
  background: #d9b13d;
}

/* Modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.938);
  justify-content: center;
  align-items: center;
}
.cookie-modal-content {
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 6px;
  max-width: 400px;
  width: 90%;
}
.cookie-modal-content h3 {
  margin-top: 0;
}
.cookie-modal-content label {
  display: block;
  margin: 10px 0;
  font-size: 0.9rem;
}
.cookie-modal-buttons {
  text-align: right;
}
.cookie-modal-buttons button {
  background: #222;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}
.cookie-modal-buttons button:hover {
  background: #333;
}

/* ===== CONTACT CARD PROPORCIONES ===== */

.contact-card {
  max-width: 760px;   /* antes estaba muy angosta */
  width: 100%;
  padding: 40px 42px;
}

/* ===== GRID MEJORADO ===== */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px; /* más aire horizontal */
}

/* Campos full-width */
.form-field.full {
  grid-column: 1 / -1;
}

/* Inputs un poco más elegantes */
.form-field input,
.form-field select,
.form-field textarea {
  min-height: 44px;
}

.form-field textarea {
  min-height: 110px; /* más jerarquía visual */
  resize: vertical;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .contact-card {
    width: 100%;
    max-width: 96%;
    padding: 36px 26px;
    border-radius: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* === SELECT PREMIUM – CONTACTO === */
.contact-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;

  background-color: rgba(255, 255, 255, 0.06);
  color: #f1f1f1;

  border: 1px solid rgba(217, 179, 130, 0.25);

  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Flecha personalizada */
.contact-card select {
  background-image:
    linear-gradient(45deg, transparent 50%, #d9b382 50%),
    linear-gradient(135deg, #d9b382 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* Focus / interacción */
.contact-card select:focus {
  outline: none;
  background-color: rgba(217, 179, 130, 0.08);

  box-shadow:
    inset 0 0 0 1px rgba(217, 179, 130, 0.45),
    inset 0 0 12px rgba(217, 179, 130, 0.25);
}

/* Opciones (lo máximo que permite CSS) */
.contact-card select option {
  background-color: #111;
  color: #f1f1f1;
}


/* === BRILLO DORADO INTERNO – CONTACT CARD === */
.contact-card {
  position: relative;
  z-index: 1;

  /* brillo interno */
  box-shadow:
    inset 0 0 0 1px rgba(217, 179, 130, 0.25),
    inset 0 0 24px rgba(217, 179, 130, 0.18),
    0 8px 32px rgba(0, 0, 0, 0.5);

  animation: innerGlowPulse 9s ease-in-out infinite;
}

@keyframes innerGlowPulse {
  0% {
    box-shadow:
      inset 0 0 0 1px rgba(217, 179, 130, 0.22),
      inset 0 0 20px rgba(217, 179, 130, 0.14),
      0 8px 32px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(217, 179, 130, 0.32),
      inset 0 0 28px rgba(217, 179, 130, 0.22),
      0 8px 32px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(217, 179, 130, 0.22),
      inset 0 0 20px rgba(217, 179, 130, 0.14),
      0 8px 32px rgba(0, 0, 0, 0.5);
  }
}

/* === INPUTS – FEEDBACK VISUAL AL ESCRIBIR === */
.contact-card input,
.contact-card textarea,
.contact-card select {
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Estado foco / escritura */
.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  outline: none;

  background-color: rgba(217, 179, 130, 0.08);

  box-shadow:
    inset 0 0 0 1px rgba(217, 179, 130, 0.45),
    inset 0 0 12px rgba(217, 179, 130, 0.25),
    0 0 0 2px rgba(217, 179, 130, 0.08);
}

/* ================================
   Checkbox Términos – Mobile & Desktop
================================ */

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;

  font-size: 0.95rem;
  color: #ccc;

  cursor: pointer;
  user-select: none;
  margin: 1.2rem 0;
}

.terms-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #d9b382;
  cursor: pointer;
}

.terms-checkbox span {
  line-height: 1.5;
}

.terms-checkbox a {
  color: #d9b382;
  text-decoration: underline;
}

.terms-checkbox a:hover {
  text-decoration: none;
}

/* Mobile fine tuning */
@media (max-width: 768px) {
  .terms-checkbox {
    font-size: 0.9rem;
  }
}


/* ================================
   BOTÓN WHATSAPP – AGENCIA 5.0
================================ */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 9999;
  box-shadow:
    0 0 0 0 rgba(37, 211, 102, 0.6),
    0 10px 30px rgba(0,0,0,0.4);
  animation: whatsappPulse 2.4s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 0 12px rgba(37, 211, 102, 0.0),
    0 14px 38px rgba(0,0,0,0.55);
}

/* SVG centrado sin correcciones raras */
.whatsapp-float svg {
  width: 34px;
  height: 34px;
  display: block;
}

/* Pulso premium */
@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.55),
      0 10px 30px rgba(0,0,0,0.4);
  }
  70% {
    box-shadow:
      0 0 0 18px rgba(37, 211, 102, 0),
      0 10px 30px rgba(0,0,0,0.4);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 10px 30px rgba(0,0,0,0.4);
  }
}

/* Mobile fine tuning */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    bottom: 18px;
    right: 18px;
  }
}


/* ===============================
   RUTA 7MO – SCROLL HORIZONTAL
================================ */

.journey-section {
  height: 500vh; /* controla duración del viaje */
  background: #000;
  position: relative;
}

.journey-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.journey-track {
  display: flex;
  gap: 120px;
  padding: 0 20vw;
  will-change: transform;
}

/* Cada paso */
.journey-step {
  min-width: 320px;
  max-width: 360px;
  padding: 2rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  opacity: 0.25;
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s ease;
}

.journey-step.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow:
    0 0 40px rgba(217,179,130,0.25),
    0 20px 60px rgba(0,0,0,0.6);
}

/* Punto del camino */
.journey-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d9b382;
  margin-bottom: 1rem;
}

/* Títulos */
.journey-step h3 {
  color: #d9b382;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.journey-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e3e3e3;
}

/* ===============================
   RUTA 7MO – MOBILE NATIVE SCROLL
================================ */
@media (max-width: 768px) {

  .journey-section {
    height: auto;              /* ❌ ya no 500vh */
    padding: 4rem 0;
  }

  .journey-sticky {
    position: relative;        /* ❌ no sticky */
    height: auto;
  }

  .journey-track {
    display: flex;
    gap: 20px;
    padding: 0 1.5rem;

    overflow-x: auto;          /* ✅ CORRECTO */
    flex-wrap: nowrap;         /* ✅ CLAVE */

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    will-change: auto;
  }

  .journey-track.journey-hint {
    animation: journeyHint 6s ease-in-out 0.8s infinite;
    will-change: transform;
  }

  @keyframes journeyHint {
    0% { transform: translate3d(0, 0, 0); }
    45% { transform: translate3d(-26px, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
  }

  @media (prefers-reduced-motion: reduce) {
    .journey-track.journey-hint {
      animation: none;
    }
  }


  .journey-track::-webkit-scrollbar {
    display: none;
  }

  .journey-step {
    scroll-snap-align: center;
    min-width: 85vw;
    max-width: 85vw;

    opacity: 1;
    transform: none;
  }
}





