body {
  background: linear-gradient(180deg, #0a0a0a, #141414);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */

}

.footer-column .social-icons {
    display: flex;
    gap: 12px;           /* Espacio entre los iconos */
    align-items: center; /* Centra verticalmente */
}

.footer-column .social-icons i {
    font-size: 24px;     /* Tamaño uniforme */
    color: inherit;      /* Mantiene el color actual */
    transition: 0.3s;
}

.footer-column .social-icons i:hover {
    color: #ff0050; /* Ejemplo de efecto hover */
}




html,
body {
  overflow-x: hidden;
  width: 100%;
}

* {
  box-sizing: border-box;
  max-width: 100vw;
}



.logo img {
  height: 80px;
  /* tamaño deseado */
  width: auto;
  object-fit: contain;
  display: block;
  /* elimina espacio extra */
  filter: brightness(0) invert(1);
  display: block;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}



.text-bone {
  color: #f5f5dc;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* 🔹 Altura ligeramente mayor */
  padding: 0.7rem 1.5rem;
  height: 60px;
  background: #E7E4DF;
  border-bottom: 1px solid #222;
  transition: background 0.4s ease, border 0.4s ease;
}

.navbar img {
  height: 50px;
  width: auto;
}


/* Transparente solo sobre hero */
.navbar.transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}

/* Logo + nombre de empresa */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  max-height: 90px;
}

.company-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* Nav Links - Desktop */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}



/* Estilo común para enlaces y botones */
.nav-links li a,
.nav-links li button {
  display: block;
  width: 100%;
  text-align: left;
  padding: .25rem 0;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: inherit;
  /* hereda color según el estado del navbar */
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

/* Hover común */
.nav-links li a:hover,
.nav-links li button:hover {
  color: #000;
  /* o #fff si navbar es transparente */
}


.nav-links li a:hover,
.nav-links li button:hover {
  color: #fff;
}

/* Login Button */
.login-btn {
  border: 1px solid #ccc;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  transition: 0.3s;
}

.login-btn:hover {
  border-color: #fff;
  color: #fff;
}

/* === HAMBURGER MENU === */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

/* === NAVBAR no transparente (color hueso) === */
.navbar:not(.transparent) .company-name,
.navbar:not(.transparent) .nav-links li a,
.navbar:not(.transparent) .nav-links li button,
.navbar:not(.transparent) .menu-toggle {
  color: #222;
  /* Negro o el color oscuro que prefieras */
}

.navbar:not(.transparent) .login-btn {
  border-color: #222;
  color: #222;
}

.navbar:not(.transparent) .login-btn:hover {
  border-color: #000;
  color: #000;
}

/* Cuando el navbar NO es transparente: invertir el logo */
.navbar:not(.transparent) .logo img {
  filter: invert(1) brightness(0);
}


/* Línea animada al hacer hover o cuando esté activa */
.nav-links li a {
  position: relative;
  color: #ccc;
  transition: color 0.3s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #fff;
  /* o #222 cuando navbar no es transparente */
}



@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 1rem;
  }

  .company-name {
    display: none;
  }

  nav {
    width: 100%;
    display: none;
    padding: 1.5rem 2rem;
    transition: background-color 0.3s ease;
  }

  nav.open {
    display: block;
  }

  /* Menú en modo transparente (fondo oscuro) */
  .navbar.transparent nav {
    background-color: rgba(10, 10, 10, 0.95);
  }

  /* Menú cuando navbar es color hueso (fondo claro) */
  .navbar:not(.transparent) nav {
    background-color: #E7E4DF;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
  }

  .menu-toggle {
    display: block;
    color: inherit;
  }

  /* Colores de enlaces dependiendo del estado */
  .navbar.transparent .nav-links li a,
  .navbar.transparent .nav-links li button {
    color: #ccc;
  }

  .navbar.transparent .nav-links li a:hover,
  .navbar.transparent .nav-links li a.active,
  .navbar.transparent .nav-links li button:hover {
    color: #fff;
  }

  .navbar:not(.transparent) .nav-links li a,
  .navbar:not(.transparent) .nav-links li button {
    color: #222;
  }

  .navbar:not(.transparent) .nav-links li a:hover,
  .navbar:not(.transparent) .nav-links li a.active,
  .navbar:not(.transparent) .nav-links li button:hover {
    color: #000;
  }

  .navbar:not(.transparent) .login-btn {
    border-color: #222;
    color: #222;
  }

  .navbar:not(.transparent) .login-btn:hover {
    border-color: #000;
    color: #000;
  }

  .login-btn {
    width: 100%;
    text-align: center;
  }
}

/* ====== Tablets / portátiles pequeños (820px–1200px): usar burger ====== */
@media (min-width: 800px) and (max-width: 1200px) {
  .navbar {
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
  }

  /* Oculta el menú horizontal y usa el desplegable */
  nav {
    width: 100%;
    display: none;
    /* cerrado por defecto */
    padding: 1.25rem 2rem;
    transition: background-color .3s ease;
  }

  nav.open {
    /* ábrelo con tu JS añadiendo .open */
    display: block;
  }

  /* Mostrar el botón hamburguesa */
  .menu-toggle {
    display: block;
    color: inherit;
    /* hereda color según transparente/no */
  }

  /* Menú en columna (como móvil) */
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
  }

  /* Fondo según estado del navbar */
  .navbar.transparent nav {
    background-color: rgba(10, 10, 10, .95);
  }

  .navbar:not(.transparent) nav {
    background-color: #E7E4DF;
  }

  /* Colores de enlaces en este rango, igual que móvil */
  .navbar.transparent .nav-links li a,
  .navbar.transparent .nav-links li button {
    color: #ccc;
  }

  .navbar.transparent .nav-links li a:hover,
  .navbar.transparent .nav-links li a.active,
  .navbar.transparent .nav-links li button:hover {
    color: #fff;
  }

  .navbar:not(.transparent) .nav-links li a,
  .navbar:not(.transparent) .nav-links li button {
    color: #222;
  }

  .navbar:not(.transparent) .nav-links li a:hover,
  .navbar:not(.transparent) .nav-links li a.active,
  .navbar:not(.transparent) .nav-links li button:hover {
    color: #000;
  }

  /* Botón login a juego */
  .navbar:not(.transparent) .login-btn {
    border-color: #222;
    color: #222;
  }

  .navbar:not(.transparent) .login-btn:hover {
    border-color: #000;
    color: #000;
  }
}


.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center; /* Centra verticalmente el .hero-content */
  align-items: center;     /* Centra horizontalmente */
  text-align: center;
  color: #fff;
  background-color: #111;
  overflow: hidden;
  padding: 0 1.5rem;
  box-sizing: border-box;
}


/* Título */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* 🔥 centra absolutamente el texto y el botón */
  justify-content: center;
  text-align: center;
}

/* Asegura que cada línea del título quede centrada */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center; /* 🔥 centra todos los span del título */
  justify-content: center;
  text-align: center;
}

/* Centrado perfecto del contenedor del botón */
.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.75rem;
}

/* El enlace se comporta como bloque centrado */
.buttons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* Botón */
.transparent-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 40px;
  font-size: 1rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: color 0.4s ease-in-out;
}


.transparent-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transition: left 0.8s ease-in-out;
}

.transparent-btn:hover::before {
  left: 0;
}

.transparent-btn:hover {
  color: black;
}

/* Responsivo */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .transparent-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .transparent-btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}



/** Separador del hero y block**/

.separator-text {
  display: flex;
  justify-content: space-between;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  width: 100%;
  max-width: 100%;
  padding: 0 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.separator-text span {
  flex: 1;
  min-width: fit-content;
}

/* CARDS & CAROUSEL */
.carousel-track {
  display: flex;
  gap: 0;
  /* sin espacio entre las cards */
  overflow-x: auto;
  padding: 1rem 0;
  /* menos margen arriba/abajo */
}

.card {
  width: 240px;
  /* más anchas */
  height: 320px;
  /* más altas */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  /* texto un poco más grande */
  color: #ccc;
  transition: transform 0.3s;
  flex-shrink: 0;
  /* que no se reduzcan al hacer scroll */
  margin: 0;
  /* nada de aire lateral */
}

.card:hover {
  transform: scale(1.05);
  color: white;
}

.sound-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  /* siempre arriba */
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  z-index: 5;
}

.sound-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Responsive: tablets y pantallas medianas */
@media (max-width: 992px) {
  .sound-btn {
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* Responsive: móviles */
@media (max-width: 768px) {
  .sound-btn {
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Responsive: pantallas muy pequeñas */
@media (max-width: 480px) {
  .sound-btn {
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 11px;
  }
}



/* Asegurar que la sección tenga suficiente altura */
.video-carousel {
  min-height: 500px;
  /* ajustar según tus videos */
  position: relative;
}


/* Separator */
.separator {
  height: 1px;
  margin: 9rem auto 6rem;
  /* más margen superior: antes 4rem → ahora 6rem */
  width: 95%;
  max-width: 1600px;
}

/* Grid */
.enhanced-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 5% 2rem;
  /* más margen superior: antes 2rem → ahora 4rem arriba */
  align-items: center;
}


/* Headings */
.headline-light {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  color: #aaa;
  display: block;
  margin-top: 2rem;
  /* nuevo: más espacio sobre el título */
}

.headline-bold {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
  display: block;
  margin-top: 1.5rem;
  /* un poco más de separación */
}

/* Quote box */


.quote-box {
  background: #121212;
  padding: 1.5rem;
  border: 1px solid #ffffff;
  /* borde blanco completo */
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}


.quote-highlight {
  background: rgba(255, 255, 255, 0.03);
  border-left: 1px solid #888;
  padding: 1.5rem;
  border-radius: 20px;
  color: #ddd;
  font-size: 1rem;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.bw-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.bw-btn:hover {
  background: #eee;
  transform: scale(1.05);
}

.bw-btn.outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.bw-btn.outline:hover {
  background: #fff;
  color: #000;
}


.enhanced-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2rem 5%;
  align-items: center;
}

.image-left img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  animation: floatImage 10s ease-in-out infinite;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
  .enhanced-content-grid {
    grid-template-columns: 1fr;
  }

  .image-left,
  .content-right {
    text-align: center;
  }

  .buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}


/* FOOTER */


.call-footer {
  padding: 2rem 1.5rem;
  background-color: #0a0a0a;
  color: #e7e4df;
  text-align: center;
}

.footer-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.tagline {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #cfcac0;
  max-width: 400px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
  text-align: left;
}

.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #e7e4df;
}

.footer-column p,
.footer-column a {
  color: #b6b1a8;
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: #d3c6a5;
}

.footer-newsletter input {
  padding: 0.4rem;
  border: none;
  border-radius: 4px;
  width: 80%;
  max-width: 250px;
  margin-bottom: 0.5rem;
}

.select-btn {
  background-color: #b8a47c;
  border: none;
  padding: 0.4rem 1rem;
  color: #141414;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.select-btn:hover {
  background-color: #a08c65;
}

.select-btn.active {
  background-color: #E7E4DF !important;
  /* beige claro */
  color: #071932 !important;
  /* texto azul oscuro */
  box-shadow: 0 0 12px rgba(231, 228, 223, 0.8);
}

.pricing-card .select-btn {
  align-self: center;
  /* 🔹 Botón centrado dentro del card */
}






.social-icons a {
  color: #d8d3cb;
  margin-right: 0.8rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #b8a47c;
}

.footer-bottom {
  font-size: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
  color: #aaa;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 2rem;
  }

  .footer-newsletter input {
    width: 100%;
  }
}

/* ===============================
   CARRUSEL DE VIDEOS - BASE
================================== */
.video-carousel {
  margin: 0 5rem 5rem 5rem;
  padding: 0 1rem;
  max-width: 100%;
}

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem;
  gap: 1rem;
  width: 100%;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

/* === Ítems (videos) === */
.slider-track .item {
  flex: 0 0 20%;
  /* 5 por pantalla */
  scroll-snap-align: center;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
}

.slider-track .item video {
  position: relative;
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease, border-radius 0.5s ease;
  opacity: 0.9;
  filter: brightness(0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  margin: auto;
}

/* === Ítem activo === */
.slider-track .item.active {
  transform: scale(1);
  z-index: 3;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.slider-track .item.active video {
  filter: none;
  opacity: 1;
  transform: scale(1.25);
  border-radius: 16px;
}

/* ===============================
   RESPONSIVE
================================== */

/* 💻 Pantallas grandes (≥1200px) */
@media (min-width: 1200px) {
  .slider-track .item {
    flex: 0 0 20%;
    /* 5 visibles */
  }
}

/* 🧩 Laptops y tablets horizontales (≤1024px) */
@media (max-width: 1024px) {
  .video-carousel {
    margin: 0 3rem 4rem 3rem;
    padding: 0 0.5rem;
  }

  .slider-track .item {
    flex: 0 0 25%;
    /* 4 por pantalla */
  }

  .slider-track .item video {
    width: 80%;
    height: 80%;
  }
}

/* 📱 Tablets verticales (≤768px) */
@media (max-width: 768px) {
  .video-carousel {
    margin: 0 2rem 3rem 2rem;
    padding: 0;
  }

  .slider-track {
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .slider-track .item {
    flex: 0 0 33.33%;
    /* 3 por pantalla */
  }

  .slider-track .item video {
    width: 85%;
    height: 85%;
  }
}

/* 📱 Celulares medianos (≤600px) */
@media (max-width: 600px) {
  .video-carousel {
    margin: 0 1rem 2rem 1rem;
  }

  .slider-track {
    gap: 0.8rem;
    padding: 0.5rem;
  }

  .slider-track .item {
    flex: 0 0 50%;
    /* 2 por pantalla */
  }

  .slider-track .item video {
    width: 90%;
    height: 90%;
  }

  .slider-track .item.active video {
    transform: scale(1.15);
  }
}

/* 📱 Celulares pequeños (≤400px) */
@media (max-width: 400px) {
  .video-carousel {
    margin: 0 0.5rem 2rem 0.5rem;
  }

  .slider-track {
    gap: 0.6rem;
  }

  .slider-track .item {
    flex: 0 0 80%;
    /* 1 visible a la vez */
  }

  .slider-track .item video {
    width: 100%;
    height: 100%;
  }

  .slider-track .item.active video {
    transform: scale(1.1);
  }
}








/* ==================== */
/* CONTENT BLOCK BASE   */
/* ==================== */
.content-block {
  width: 100%;
  background: #eceae6;
  font-family: 'Poppins', sans-serif;
  color: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.content-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* ==================== */
/* LADO IZQ: IMAGEN     */
/* ==================== */
.content-image {
  flex: 1;
  background: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================== */
/* LADO DER: TEXTO      */
/* ==================== */
.content-text {
  flex: 1;
  background: #eceae6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 3rem;
}

.content-box {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: end;
  text-align: end;
  margin-inline: auto;
}


/* ==================== */
/* TITULAR PRINCIPAL    */
/* ==================== */
.content-title {
  text-align: right;
  /* fondo similar al ejemplo */
  border: 1px solid #000000;
  /* borde negro visible */
  border-radius: 40px;
  padding: 1.2rem 2rem;
  display: inline-block;
  margin: 1rem 0;
}

.title-main {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  color: #1a1a1a;
  font-weight: 800;
  /* texto superior fuerte */
  text-align: right;
  font-family: "Poppins", sans-serif;
}

.title-main span {
  display: block;
  font-weight: 500;
  /* un poco más gruesa que em */
  font-style: italic;
  color: #2c2c2c;
}

.title-main em {
  display: block;
  font-style: normal;
  font-weight: 450;
  color: #2c2c2c;
}


.content-text-image {
  text-align: right;
  /* alinea la imagen igual que el texto */
  margin: 10px 0;
  /* espacio arriba y abajo */
}

.content-text-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}




.content-description {
  margin: .65rem auto 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-align: end;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.2;
  transform: translateY(-6px);
  /* súbelo visualmente */
}


/* ==================== */
/* CTA                  */
/* ==================== */
.content-highlight {
  display: block;
  max-width: 560px;
  margin: 1rem auto 0;
  text-align: center;
  text-decoration: none;
  background: #0a0a0a;
  color: #fff;
  padding: 1.05rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  letter-spacing: .3px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .18);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.content-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
}

.content-highlight:active {
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* ≥1600px (ultra-wide) */
@media (min-width:1600px) {
  .content-text {
    padding: 4rem 4rem;
  }

  .content-box {
    max-width: 640px;
    gap: 1.25rem;
  }

  .title-main .line-strong {
    font-size: 3.2rem;
  }

  .title-main .line-medium {
    font-size: 2.6rem;
  }

  .title-main .line-light {
    font-size: 2.1rem;
  }

  .content-subtitle-inline {
    font-size: 2rem;
  }

  .signature-hero {
    font-size: clamp(2.6rem, 5vw, 5rem);
  }

  /* ↑ más hero en pantallas grandes */
}

/* 1366–1599px */
@media (min-width:1366px) and (max-width:1599px) {
  .content-text {
    padding: 3.6rem 3rem;
  }

  .content-box {
    max-width: 600px;
  }

  .signature-hero {
    font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  }
}

/* 1200–1365px */
@media (min-width:1200px) and (max-width:1365px) {
  .content-text {
    padding: 3rem 2.2rem;
  }

  .content-box {
    max-width: 560px;
    gap: 1.05rem;
  }

  .title-main .line-strong {
    font-size: 2.6rem;
  }

  .title-main .line-medium {
    font-size: 2.1rem;
  }

  .title-main .line-light {
    font-size: 1.7rem;
  }

  .content-subtitle-inline {
    font-size: 1.9rem;
  }

  .signature-hero {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
  }
}

/* 992–1199px (laptops medianos) */
@media (min-width:992px) and (max-width:1199px) {
  .content-text {
    padding: 2.6rem 2rem;
  }

  .title-main .line-strong {
    font-size: 2.2rem;
  }

  .title-main .line-medium {
    font-size: 1.8rem;
  }

  .title-main .line-light {
    font-size: 1.5rem;
  }

  .content-subtitle-inline {
    font-size: 1.65rem;
  }

  .signature-hero {
    font-size: clamp(2rem, 5.2vw, 4rem);
  }
}

/* 640–991px (tablets) */
@media (min-width:640px) and (max-width:991px) {
  .content-container {
    flex-direction: column;
    min-height: auto;
  }

  .content-image,
  .content-text {
    width: 100%;
    height: auto;
  }

  .content-text {
    display: grid;
    place-items: center;
    padding: 2.2rem 1.6rem;
  }

  .content-box {
    max-width: 600px;
    gap: 1rem;
  }

  .title-main .line-strong {
    font-size: 2.4rem;
  }

  .title-main .line-medium {
    font-size: 2rem;
  }

  .title-main .line-light {
    font-size: 1.8rem;
  }

  .content-subtitle-inline {
    font-size: 1.6rem;
  }

  .signature-hero {
    font-size: clamp(2rem, 7vw, 3.6rem);
  }

  /* grande pero controlado */
  .content-highlight {
    font-size: 1.2rem;
    padding: .95rem 1.3rem;
  }
}

/* ≤639px (móviles) */
@media (max-width:639px) {
  .content-container {
    flex-direction: column;
  }

  .content-image,
  .content-text {
    width: 100%;
    height: auto;
  }

  .content-text {
    display: grid;
    place-items: center;
    padding: 1.8rem 1.2rem;
  }

  .content-box {
    width: min(92vw, 560px);
    gap: .9rem;
  }

  .title-main .line-strong {
    font-size: 2rem;
  }

  .title-main .line-medium {
    font-size: 1.6rem;
  }

  .title-main .line-light {
    font-size: 1.4rem;
  }

  .content-subtitle-inline {
    font-size: 1.35rem;
  }

  /* 👍 mantiene presencia, evita cortes en móviles estrechos */
  .signature-hero {
    font-size: clamp(1.9rem, 8vw, 3.2rem);
  }

  .content-description {
    font-size: .95rem;
    line-height: 1.6;
  }

  .content-highlight {
    width: 100%;
    font-size: 1rem;
    padding: .9rem 1rem;
  }
}

/* ≤360px (muy pequeños) */
@media (max-width:360px) {
  .signature-hero {
    font-size: clamp(1.7rem, 8.5vw, 2.6rem);
  }
}

/* ≤320px (ultra-pequeños) */
@media (max-width:320px) {
  .signature-hero {
    font-size: clamp(1.5rem, 9vw, 2.3rem);
  }
}


/** === SERVICES === **/

.services-section {
  background-color: #f4f0ea;
  padding: 10rem 2rem;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

/* Imagen del título */
.service-title-img {
  max-height: 100%;
  max-width: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* === TÍTULO DE SECCIÓN === */
.services-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  color: #0a0a0a;
  font-family: 'Poppins', sans-serif;
}

.title-image {
  width: 800px;
  max-width: 95vw;
  height: auto;
  z-index: 2;
}

.bar-image {
  position: absolute;
  right: 0;
  width: 40%;
  max-width: 500px;
  height: auto;
  filter: brightness(0) saturate(100%);
  z-index: 1;
  pointer-events: none;
}

.bold-part {
  font-weight: 800;
}

.italic-part {
  font-style: italic;
  font-weight: 300;
  color: #2c2c2c;
}

/* === GRIDS === */
.services-grid,
.secondary-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* === TARJETAS DE SERVICIO === */
.service-card,
.service-card--sm {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  width: 250px;
  height: 400px;
  padding: 2rem 1rem;
  background-size: 120% auto !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Overlay oscuro al pasar el mouse (PC) */
.service-card::after,
.service-card--sm::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(0, 0, 0, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card:hover::after,
.service-card--sm:hover::after {
  opacity: 1;
}

.service-card>*,
.service-card--sm>* {
  position: relative;
  z-index: 2;
}

.service-card:hover,
.service-card--sm:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* === FONDOS === */
.service-card.content-creation {
  background-image: url("../assets/img/services/video.png");
}

.service-card.advertisements {
  background-image: url("../assets/img/services/pc2.png");
}

.service-card.social-media {
  background-image: url("../assets/img/services/camera.png");
}

.service-card.graphic-design {
  background-image: url("../assets/img/services/5[1].png");
}

.service-card.dbs-360 {
  background-image: url("../assets/img/services/6[1].png");
}

.service-card.dbs-ugc-program {
  background-image: url("../assets/img/services/photo.png");
}

.service-card.webside-development {
  background-image: url("../assets/img/services/pc.png");
}

/* === CONTENIDO INTERNO === */
.service-card .service-img,
.service-card--sm .service-img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
  margin-top: auto;
  transition: filter 0.3s ease;
}

.service-heading {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  text-align: center;
}

.service-card:hover .service-heading,
.service-card--sm:hover .service-heading {
  color: #fff;
}

.service-description {
  opacity: 0;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  transition: opacity 0.4s ease;
  text-align: center;
  width: 100%;
}

.schedule-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease, background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: auto;
  display: inline-block;
}

a.schedule-btn {
  text-decoration: none;
  display: inline-block;
}

/* Mostrar en hover (PC) */
.service-card:hover .service-description,
.service-card:hover .schedule-btn,
.service-card--sm:hover .service-description,
.service-card--sm:hover .schedule-btn {
  opacity: 1;
}

.schedule-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

/* === ANIMACIONES ESCALONADAS === */
.secondary-services-grid {
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.secondary-services-grid.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.secondary-services-grid .service-card--sm {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.secondary-services-grid.fade-in .service-card--sm {
  opacity: 1;
  transform: translateY(0);
}

.secondary-services-grid .service-card--sm:nth-child(1) {
  transition-delay: 0.2s;
}

.secondary-services-grid .service-card--sm:nth-child(2) {
  transition-delay: 0.4s;
}

.secondary-services-grid .service-card--sm:nth-child(3) {
  transition-delay: 0.6s;
}

.secondary-services-grid .service-card--sm:nth-child(4) {
  transition-delay: 0.8s;
}

/* === RESPONSIVE === */

/* Tablets horizontales y pantallas medianas (≤ 1024px) */
@media (max-width: 1024px) {
  .services-section {
    padding: 6rem 1.5rem;
  }

  .services-title {
    font-size: 2.2rem;
  }

  .service-card,
  .service-card--sm {
    width: 45%;
    height: 380px;
  }
}

/* Tablets verticales y móviles (≤ 768px) */
@media (max-width: 768px) {
  .services-section {
    padding: 5rem 1.2rem;
  }

  .services-title {
    font-size: 1.9rem;
  }

  .service-card,
  .service-card--sm {
    width: 90%;
    height: 350px;
    background-size: cover !important;
  }

  /* Difuminado suave en móviles */
  .service-card::before,
  .service-card--sm::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2.5px);
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 0;
  }

  /* Textos y botones siempre visibles */
  .service-description,
  .schedule-btn {
    opacity: 1 !important;
  }
}

/* Celulares grandes (≤ 600px) */
@media (max-width: 600px) {
  .services-title {
    font-size: 1.7rem;
  }

  .service-card,
  .service-card--sm {
    width: 100%;
    height: 320px;
  }

  .service-heading {
    font-size: 0.95rem;
  }

  .service-description {
    font-size: 0.85rem;
  }

  .schedule-btn {
    font-size: 0.8rem;
  }
}

/* Celulares pequeños (≤ 400px) */
@media (max-width: 400px) {
  .services-section {
    padding: 4rem 1rem;
  }

  .services-title {
    font-size: 1.5rem;
  }

  .service-card,
  .service-card--sm {
    height: 300px;
    border-radius: 10px;
  }

  .service-card::before,
  .service-card--sm::before {
    backdrop-filter: blur(3.5px);
    background-color: rgba(0, 0, 0, 0.35);
  }

  .service-description {
    font-size: 0.8rem;
  }
}



/* CALL US FOOTER */
.call-footer {
  background: #000;
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.call-btn {
  background: transparent;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border: 2px solid #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.3s ease, color 0.3s;
  cursor: pointer;
}

.call-btn:hover {
  background: #fff;
  color: #000;
}

.call-btn img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}



.plans-section {
  position: relative;
  min-height: 100vh;
  /* 🔥 ocupa toda la pantalla */
  background: url("../assets/img/fondo-camara-sonny.png") center center / cover no-repeat;
  color: #111;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  /* centra verticalmente el contenido */
  justify-content: center;
  /* opcional, centra horizontalmente */
  overflow: hidden;
}

/* Overlay para mejorar contraste */
.plans-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  /* oscurece ligeramente */
  z-index: 0;
}

.plans-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}


.plans-title {
  display: flex;
  justify-content: center;
  /* centra el título */
  align-items: center;
  width: 100%;
  margin: 40px 0;
}

.plans-title-image {
  width: 500px;
  max-width: 90vw;
  height: auto;

  /* fuerza la imagen a negro */
}





.plans-section .description {
  font-size: 1.15rem;
  margin-bottom: 3rem;
  color: #e0e0e0;
  /* gris claro, más oscuro que blanco */
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}


.toggle-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  /* evita que salten de línea */
  gap: 4rem;
  /* espacio entre botones */
  margin: 3rem 0 4rem;
  overflow-x: auto;
  /* opcional: si hay muchos botones, permite scroll horizontal */
}


.tab {
  background: transparent;
  border: 2px solid #fff;
  /* borde blanco */
  color: #fff;
  /* texto blanco */
  padding: 0.8rem 1.8rem;
  /* padding un poco más pequeño */
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 280px;
  /* ancho ligeramente menor */
  min-width: 180px;
  max-width: 280px;
  white-space: nowrap;
  font-size: 1.3rem;
  /* texto un poco más pequeño */
}


.tab.active,
.tab:hover {
  background-color: #fff;
  /* fondo blanco */
  color: #000;
  /* texto negro */
  border-color: #000;
  /* borde negro */
}


.pricing-tabs {
  display: flex;
  justify-content: center;
}

.pricing-grid {
  display: none;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.pricing-grid.active {
  display: flex;
}


/* === 🧩 CARDS DE PLANES - MEJORAS VISUALES === */
.pricing-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  width: 400px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* 🔹 Todo el texto a la izquierda */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  gap: 1rem;
  /* Espaciado interno */
}


/* 🔹 Nombre del plan */
.plan-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  /* 🚫 Nada de espacios extra */
  margin: 0;
  padding: 0;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔹 Lista descriptiva */
.ul-descripcion {
  text-align: left;
  padding: 0 1rem;
  /* 🔹 elimina todo espacio lateral extra */
  margin: 0;
  /* 🚫 sin margen arriba ni abajo */
  font-size: 0.9rem;
  line-height: 1.2;
}

/* 🔹 Elementos individuales */
.ul-descripcion li {
  white-space: nowrap;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

/* 🔹 En caso de que el título esté dentro de un h2/h3/p */
.pricing-card h2,
.pricing-card h3,
.pricing-card p.plan-name {
  margin: 0 !important;
  /* 🚫 fuerza eliminar márgenes por defecto */
  padding: 0 !important;
}



.pricing-card p {
  display: flex;
  align-items: center;
  /* centra verticalmente */
  text-align: justify;
  /* texto justificado */
  height: 100%;
  /* ocupa toda la altura disponible */
  margin: 0;
  /* elimina márgenes por defecto */
}




/* Línea inferior animada */
.pricing-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #fff, #ccc);
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.pricing-card:hover::after {
  transform: scaleX(1);
}





.billing {
  font-size: 1.1rem;
  font-weight: 500;
  color: #f5f5f5;
  margin-bottom: 1.2rem;
}

/* Detalles del plan */
.details {
  flex: 1;
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 1rem;
}

.details ul {
  list-style: none;
  /* 🔹 Sin puntos */
  padding: 0;
  margin: 0;
}

.details li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}


.plans-extra {
  text-align: center;
  margin-top: 2rem;
}

.plans-note {
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  /* 🔹 ahora es negrita */
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.plans-note.visible {
  opacity: 1;
  transform: translateY(0);
}

#business-note {
  font-weight: 700;
  /* negrita completa */
}



/* === GENERAL FONTS & COLORS FOR PLANS SECTION === */
.plans-section {
  color: white;
  font-family: 'Poppins', sans-serif;
}

.plans-section h2,
.plans-section h3,
.plans-section .plan-name {
  font-weight: 700;
  /* Poppins Bold */
  color: white;
}

.plans-section p,
.plans-section li,
.plans-section .duration,
.plans-section .description {
  font-weight: 300;
  /* Poppins Light */
  color: white;
}

/* Opcional: mejora la legibilidad de los textos largos */
.plans-section p,
.plans-section li {
  line-height: 1.6;
}



/* Botón elegante ya definido */
.select-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 25px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s ease;
}

.select-btn:hover {
  background-color: white;
  color: black;
}

.select-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

.select-btn:active {
  transform: translateY(0);
  /* vuelve al lugar al hacer click */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}


#business-plan,
#influencer-plan,
#content-creation-plan {
  font-size: 1.2rem;
}


/* === 🌀 Carrusel para los planes === */
.carousel {
  position: relative;
  width: 107%;

  display: none;
  padding: 0 60px;
  /* deja espacio lateral interno */
}

.carousel.active {
  display: block;
}

/* Contenedor interno desplazable */
.carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-right: 80px;
  /* 🔥 evita que el último card se corte */
  /* Oculta barra en Firefox */
}

/* Para que el último elemento nunca quede cortado */
.carousel-track::after {
  content: "";
  flex: 0 0 2rem;
  /* ✅ crea un espacio invisible al final */
}

.carousel-track::-webkit-scrollbar {
  display: none;
  /* Oculta barra en Chrome/Safari */
}

/* Botones de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: white;
  color: black;
  border-color: white;
}

/* 🔹 Mueve los botones afuera visualmente */
.carousel-btn.prev {
  left: 0;
  /* ahora fuera del carrusel */
}

.carousel-btn.next {
  right: 0px;
  /* ahora fuera del carrusel */
}

/* Cards dentro del carrusel conservan tu estilo */
.carousel .pricing-card {
  flex: 0 0 350px;
}

/* === 📱 RESPONSIVE DESIGN PARA PLANS SECTION === */

/* 🔹 Dispositivos grandes (desktop normales, hasta 1440px) */
@media (max-width: 1440px) {
  .plans-section {
    padding: 60px 40px;
  }

  .plans-title-image {
    width: 420px;
  }

  .pricing-card {
    width: 360px;
  }

  .tab {
    font-size: 1.2rem;
    padding: 0.7rem 1.5rem;
    width: 240px;
  }
}

/* 🔹 Laptops y pantallas medianas (hasta 1200px) */
@media (max-width: 1200px) {
  .plans-title-image {
    width: 380px;
  }

  .pricing-grid {
    gap: 1.5rem;
  }

  .pricing-card {
    width: 320px;
  }

  .carousel .pricing-card {
    flex: 0 0 320px;
  }

  .tab {
    gap: 2rem;
    width: 220px;
  }
}

/* 🔹 Tablets horizontales (hasta 992px) */
@media (max-width: 992px) {
  .plans-section {
    padding: 60px 30px;
  }

  .plans-title-image {
    width: 300px;
  }

  .description {
    font-size: 1rem;
    max-width: 600px;
  }

  .pricing-card {
    width: 280px;
    padding: 1.5rem;
  }

  .toggle-tabs {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .tab {
    font-size: 1.1rem;
    padding: 0.7rem 1.4rem;
    width: 200px;
  }

  .carousel {
    padding: 0 40px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* 🔹 Tablets verticales y móviles grandes (hasta 768px) */
@media (max-width: 768px) {
  .plans-section {
    padding: 50px 20px;
    background-position: center;
  }

  .plans-title {
    margin: 20px 0 30px;
  }

  .plans-title-image {
    width: 250px;
  }

  .description {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 10px;
  }

  .pricing-card {
    width: 260px;
    min-height: 320px;
    padding: 1.2rem;
  }

  .pricing-card p,
  .ul-descripcion li {
    font-size: 0.85rem;
  }

  .tab {
    font-size: 1rem;
    width: 180px;
    padding: 0.6rem 1rem;
  }

  .toggle-tabs {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .carousel {
    padding: 0 25px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* 🔹 Móviles pequeños (hasta 576px) */
@media (max-width: 576px) {
  .plans-section {
    padding: 40px 15px;
  }

  .plans-title-image {
    width: 200px;
  }

  .description {
    font-size: 0.9rem;
  }

  .pricing-card {
    width: 230px;
    padding: 1rem;
    min-height: 300px;
    gap: 0.8rem;
  }

  .plan-name {
    font-size: 1.2rem;
  }

  .ul-descripcion {
    padding: 0 0.5rem;
    font-size: 0.8rem;
  }

  .tab {
    width: 150px;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }

  .carousel {
    padding: 0 20px;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .plans-note {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .select-btn {
    font-size: 0.9rem;
    padding: 8px 18px;
  }
}

/* 🔹 Móviles ultra pequeños (hasta 400px) */
@media (max-width: 400px) {
  .plans-title-image {
    width: 160px;
  }

  .pricing-card {
    width: 200px;
    min-height: 280px;
  }

  .tab {
    width: 130px;
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }

  .select-btn {
    font-size: 0.8rem;
    padding: 7px 15px;
  }

  .plans-note {
    font-size: 0.8rem;
  }
}





/* ============================== */
/* CONSULTATION SECTION (BASE)    */
/* ============================== */
.consultation-section {
  padding: 8rem 2rem 8rem 2rem;
  /* 8rem arriba y abajo, 2rem a los lados */
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
}

.consultation-title-img {
  max-width: 420px;
  /* ajusta el tamaño según tu imagen */
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: fadeInDown 1s ease-out;
  margin-top: 40px;
}


.form-title-img {
  display: block;
  /* convierte la imagen en bloque */
  margin: 0 auto 1rem;
  /* centrado horizontal + espacio debajo */
  max-width: 420px;
  /* tamaño máximo deseado */
  width: 100%;
  /* se adapta al contenedor */
  height: auto;
  object-fit: contain;
  animation: fadeInDown 1s ease-out;
  filter: invert(1) brightness(0.1) contrast(1.2);
}




.consultation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  /* 🔥 ambas columnas al mismo alto */
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Columna izquierda */
.consultation-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  width: 100%;
}

/* TÍTULO Y SUBTÍTULO */
.consultation-header {
  margin-bottom: 2rem;
  text-align: center;
}

.consultation-header h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #dcdcdc;
  line-height: 1.2;
}

.consultation-header .cursive-elegant {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  font-weight: 400;
  color: #f1f1e9;
  margin-bottom: -2.5rem;
}

.consultation-header p {
  font-size: 1.2rem;
  color: #cfcfcf;
  line-height: 1.5;
  margin-top: 1rem;
}

.consultation-header p strong {
  color: #fff;
}

/* FORMULARIO */
.consultation-form {
  background-color: #e6e4e0;
  color: #222;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  align-self: stretch;
  height: 100%;
  /* 🔥 base de referencia de altura */
}

.consultation-form label {
  display: block;
  margin-bottom: 1rem;
  padding-left: 0.8rem;
  /* 🔹 mueve los label a la derecha */
}

.consultation-form label span {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
  padding-left: 0.3rem;
  /* 🔹 ajusta el texto del label un poco más */
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 1rem;
  border-radius: 50px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 1rem;
  background-color: #fff;
  transition: all 0.2s ease;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.2);
}


/* BOTÓN */
.book-button {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transition: background-color .3s ease;
}

.book-button:hover {
  background-color: #222;
}


.media-card {
  background-color: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

.video-wrap {
  width: 100%;
  max-height: 500px;
  /* 👈 controla altura visible */
  border-radius: 12px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  /* 👈 mantiene proporción sin cortes */
}

.section-offer-title {
  display: flex;
  justify-content: center;
  /* centra horizontalmente */
  align-items: center;
  /* centra verticalmente */
  min-height: 220px;
  /* un poco más alto para el nuevo tamaño */
  text-align: center;
}

.section-offer-title h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  /* más fuerte */
  font-size: 3.2rem;
  /* 🔹 mucho más grande (antes era ~1.5–2rem) */
  margin: 0;
  /* negro elegante y legible */
  line-height: 1.05;
  /* 🔹 compacta el interlineado */
  letter-spacing: 1px;
  /* mejora la presencia tipográfica */
  text-transform: uppercase;
  /* opcional, para títulos potentes */
}





/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .consultation-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .media-card,
  .consultation-form {
    height: auto;
  }
}


/* ================================
   CONSULTATION — RESPONSIVE ONLY
   (no se modifica la base)
==================================*/

/* ≤1440: respiración leve */
@media (max-width: 1440px) {
  .consultation-section {
    padding: 3.5rem 2rem;
  }

  .consultation-content {
    gap: 3.5rem;
  }
}

/* ≤1280: compactación moderada */
@media (max-width: 1280px) {
  .consultation-section {
    padding: 3rem 1.75rem;
  }

  .consultation-content {
    max-width: 1100px;
    gap: 3rem;
  }

  .consultation-header h2 {
    font-size: 2.4rem;
  }

  .consultation-header .cursive-elegant {
    font-size: 2.6rem;
    margin-bottom: -2.2rem;
  }
}

/* ≤1080: tipografías y paddings algo menores */
@media (max-width: 1080px) {
  .form-title {
    font-size: 1.9rem;
    margin-bottom: 1.8rem;
  }

  .consultation-header h2 {
    font-size: 2.3rem;
  }

  .consultation-header p {
    font-size: 1.1rem;
  }

  .consultation-form {
    padding: 1.8rem;
    border-radius: 18px;
  }

  .media-card {
    max-width: 640px;
    padding: 1.1rem;
  }
}

/* ≤1024: aún 2 columnas pero con más aire y lectura */
@media (max-width: 1024px) {
  .consultation-section {
    padding: 2.75rem 1.5rem;
  }

  .consultation-content {
    max-width: 1000px;
    gap: 2.5rem;
  }

  .consultation-form {
    gap: 0.9rem;
  }

  .consultation-form input,
  .consultation-form textarea {
    font-size: 0.98rem;
    padding: 0.95rem;
  }

  .book-button {
    padding: 0.85rem;
    font-size: 0.98rem;
  }
}

/* ≤900: pasar a 1 columna, mantener alturas naturales */
@media (max-width: 900px) {
  .consultation-content {
    grid-template-columns: 1fr;
    /* de 2 col → 1 col */
    max-width: 860px;
    gap: 2rem;
  }

  .consultation-left {
    align-items: stretch;
  }

  .consultation-header {
    margin-bottom: 1.5rem;
  }

  .media-card {
    max-width: 100%;
  }
}

/* ≤768: móvil grande / tablet portrait */
@media (max-width: 768px) {
  .consultation-section {
    padding: 2.25rem 1.25rem;
  }

  .form-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .consultation-header h2 {
    font-size: 2.1rem;
  }

  .consultation-header .cursive-elegant {
    font-size: 2.3rem;
    margin-bottom: -2rem;
  }

  .consultation-header p {
    font-size: 1.05rem;
  }

  .consultation-form {
    padding: 1.5rem;
    border-radius: 16px;
    gap: 0.85rem;
  }

  .consultation-form label {
    font-size: 0.88rem;
  }

  .consultation-form input,
  .consultation-form textarea {
    padding: 0.9rem;
    font-size: 0.98rem;
    border-radius: 10px;
  }

  .book-button {
    padding: 0.85rem;
    font-size: 0.98rem;
    border-radius: 22px;
  }

  .media-card {
    padding: 1rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
  }

  .video-wrap {
    border-radius: 14px;
  }

  .video-wrap video {
    border-radius: 14px;
  }
}

/* ≤640: móvil común — reducir densidad y mantener jerarquía */
@media (max-width: 640px) {
  .consultation-section {
    padding: 2rem 1rem;
  }

  .consultation-content {
    gap: 1.5rem;
    max-width: 560px;
  }

  .form-title {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
  }

  .consultation-header h2 {
    font-size: 1.9rem;
  }

  .consultation-header .cursive-elegant {
    font-size: 2rem;
    margin-bottom: -1.6rem;
  }

  .consultation-header p {
    font-size: 1rem;
  }

  .consultation-form {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .consultation-form label {
    font-size: 0.86rem;
  }

  .consultation-form input,
  .consultation-form textarea {
    padding: 0.85rem;
    font-size: 0.96rem;
  }

  .book-button {
    padding: 0.8rem;
    font-size: 0.96rem;
  }

  .media-card {
    padding: 0.9rem;
  }
}

/* ≤560: móvil pequeño — bordes suaves y campos cómodos */
@media (max-width: 560px) {
  .consultation-section {
    padding: 1.75rem 0.875rem;
  }

  .consultation-content {
    gap: 1.25rem;
  }

  .consultation-header h2 {
    font-size: 1.8rem;
  }

  .consultation-form {
    border-radius: 14px;
    padding: 1.1rem;
  }

  .book-button {
    border-radius: 20px;
  }
}

/* ≤480: micro-ajustes y accesibilidad táctil */
@media (max-width: 480px) {
  .form-title {
    font-size: 1.5rem;
  }

  .consultation-header {
    margin-bottom: 1.25rem;
  }

  .consultation-header h2 {
    font-size: 1.65rem;
  }

  .consultation-header .cursive-elegant {
    font-size: 1.8rem;
    margin-bottom: -1.2rem;
  }

  .consultation-header p {
    font-size: 0.98rem;
  }

  .consultation-form label {
    font-size: 0.84rem;
  }

  .consultation-form input,
  .consultation-form textarea {
    padding: 0.8rem;
    font-size: 0.94rem;
  }

  .media-card {
    border-radius: 12px;
  }

  .video-wrap {
    border-radius: 12px;
  }

  .video-wrap video {
    border-radius: 12px;
  }
}

/* ≤400: extremos — mantener legibilidad */
@media (max-width: 400px) {
  .consultation-section {
    padding: 1.5rem 0.75rem;
  }

  .form-title {
    font-size: 1.4rem;
  }

  .consultation-header h2 {
    font-size: 1.55rem;
  }

  .consultation-header .cursive-elegant {
    font-size: 1.7rem;
  }
}

/* Alturas bajas (teclado abierto / apaisado) */
@media (max-height: 720px) and (orientation: landscape) {
  .consultation-section {
    padding: 2rem 1rem;
  }

  .consultation-content {
    gap: 1.25rem;
  }
}

/* Interacciones táctiles */
@media (hover: none) and (pointer: coarse) {
  .book-button:hover {
    background-color: #000;
  }

  /* evita parpadeo en hover simulado */
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .book-button {
    transition: none !important;
  }
}






/** ABOUT SECTION **/


/* Fuente elegante para “Us” */
.cursive-elegant {
  font-family: 'Allura', cursive;
  font-size: 10rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

/* Sección principal */
.about-section {
  width: 100%;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Contenedor en 2 columnas */
.about-container {
  display: flex;
  min-height: 100vh;
}

/* Columna izquierda con imagen */
.about-image {
  flex: 1;
  background-color: #111;
  /* fallback negro */
  background-image: url('/assets/img/image.jpg');
  /* <-- reemplazar */
  background-size: cover;
  background-position: center;
}

/* Columna derecha con contenido */
.about-content {
  flex: 1;
  padding: 4rem 3rem;
  background-color: #fff;
  color: #111;
}

/* Título */
.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* Línea de tiempo */
.timeline {
  border-left: 3px solid #111;
  padding-left: 1.5rem;
  margin-left: 1.5rem;
}

/* Ítem de la línea */
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
  /* Asegura espacio para el punto */
}

/* Puntos de la línea */
.timeline-marker {
  width: 12px;
  height: 12px;
  background-color: #444;
  border-radius: 50%;
  position: absolute;
  left: -30px;
  top: 0rem;
}

/* Contenido de cada punto */
.timeline-content h3 {
  font-size: 1.4rem;
  /* Aumentado desde 1.1rem */
  margin-bottom: 1rem;
  background-color: #fff;
  padding: 1rem 1.5rem;
  /* Más espacio */
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}



.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}


/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .serif {
    font-size: 2.5rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-left,
  .content-right {
    text-align: center;
  }

  .about-container,
  .dbs-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image,
  .dbs-image {
    order: -1;
    width: 100%;
  }

  .about-text,
  .dbs-text {
    width: 100%;
  }

  .pricing-header,
  .pricing-row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.85rem;
  }

  .toggle-tabs {
    flex-direction: column;
    gap: 0.75rem;
  }

  .gallery-container {
    width: 100%;
  }

  .banner .content h1 {
    font-size: 4rem;
  }

  .call-footer {
    flex-direction: column;
    text-align: center;
  }

  .call-btn {
    justify-content: center;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .serif {
    font-size: 2.2rem;
  }

  /* Títulos se reducen en tablets */
  .about-text h2,
  .plans-container h2,
  .services h2 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .about-block h3 {
    font-size: 1.2rem;
  }

  .pricing-header,
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .pricing-row span {
    display: block;
  }

  .select-btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .script {
    font-size: 1.6rem;
  }

  .serif {
    font-size: 2rem;
  }

  /* Aún más pequeño en móviles */
  .about-text h2,
  .plans-container h2,
  .services h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .transparent-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .banner .slider .item.active {
    width: 160px;
    height: 220px;
  }
}




.call-footer {

  padding: 4rem 2rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand .tagline {
  font-size: 0.9rem;
  max-width: 240px;
}

.footer-contact h3,
.footer-links h3,
.footer-newsletter h3,
.footer-social h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.4rem;
}

.footer-links ul li a {
  color: #f5f5dc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ff6600;
}

.footer-newsletter p {
  margin-bottom: 0.5rem;
  max-width: 240px;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-newsletter input[type="email"] {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
}

.footer-newsletter button {
  background: transparent;
  border: 1px solid #f5f5dc;
  color: #f5f5dc;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.footer-newsletter button:hover {
  background: #f5f5dc;
  color: #0d0d0d;
}

.footer-social .social-icons {
  display: flex;
  gap: 0.8rem;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}

.footer-social .social-icons a {
  color: #f5f5dc;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #ff6600;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #f5f5dc;
}

@media (max-width: 768px) {
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-newsletter,
  .footer-social {
    width: 100%;
    max-width: 320px;
  }

  .footer-newsletter form {
    width: 100%;
  }

  .footer-newsletter input[type="email"],
  .footer-newsletter button {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .footer-social .social-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-newsletter p,
  .footer-brand .tagline {
    max-width: none;
  }

  .footer-bottom {
    padding: 1rem 0;
  }
}


/* ====== Separador Oscuro ====== */
.separator-ticker {
  --gap: 2.75rem;
  --speed: 28s;
  --letter-space: 0.22em;
  --size-min: 0.72rem;
  --size-fluid: 2.6vw;
  --size-max: 0.95rem;
  background: #0b0b0b;
  color: #e8e8e8;
}

.separator-ticker .ticker {
  overflow: hidden;
  width: 100%;
}

.separator-ticker .ticker__track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  white-space: nowrap;
  width: max-content;
  padding: 0.9rem 0;
  animation: ticker-move var(--speed) linear infinite;
  will-change: transform;
}

.separator-ticker .ticker__track span {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-space);
  font-size: clamp(var(--size-min), var(--size-fluid), var(--size-max));
  color: inherit;
}

/* ====== Separador Claro (independiente) ====== */
.separator-ticker-light {
  --gap: 2.75rem;
  --speed: 28s;
  --letter-space: 0.22em;
  --size-min: 0.72rem;
  --size-fluid: 2.6vw;
  --size-max: 0.95rem;
  background: #0b0b0b;
  color: #e8e8e8;
}

.separator-ticker-light .ticker {
  overflow: hidden;
  width: 100%;
}

.separator-ticker-light .ticker__track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  white-space: nowrap;
  width: max-content;
  padding: 0.9rem 0;
  animation: ticker-move var(--speed) linear infinite;
  will-change: transform;
}

.separator-ticker-light .ticker__track span {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-space);
  font-size: clamp(var(--size-min), var(--size-fluid), var(--size-max));
  color: inherit;
}

/* ====== Animación (común a ambos) ====== */
@keyframes ticker-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ====== Breakpoints (aplican a ambos) ====== */
@media (min-width: 480px) {

  .separator-ticker,
  .separator-ticker-light {
    --gap: 3.5rem;
    --size-min: 0.78rem;
    --size-fluid: 2vw;
    --size-max: 1.05rem;
    --speed: 30s;
  }

  .separator-ticker .ticker__track,
  .separator-ticker-light .ticker__track {
    padding: 1rem 0;
  }
}

@media (min-width: 768px) {

  .separator-ticker,
  .separator-ticker-light {
    --gap: 5.5rem;
    --letter-space: 0.24em;
    --size-min: 0.82rem;
    --size-fluid: 1.6vw;
    --size-max: 1.15rem;
    --speed: 33s;
  }

  .separator-ticker .ticker__track,
  .separator-ticker-light .ticker__track {
    padding: 1.05rem 0;
  }
}

@media (min-width: 1024px) {

  .separator-ticker,
  .separator-ticker-light {
    --gap: 7.5rem;
    --letter-space: 0.25em;
    --size-min: 0.88rem;
    --size-fluid: 1.2vw;
    --size-max: 1.25rem;
    --speed: 35s;
  }
}

@media (min-width: 1440px) {

  .separator-ticker,
  .separator-ticker-light {
    --gap: 9.5rem;
    --size-min: 0.95rem;
    --size-fluid: 1vw;
    --size-max: 1.3rem;
    --speed: 38s;
  }

  .separator-ticker .ticker__track,
  .separator-ticker-light .ticker__track {
    padding: 1.15rem 0;
  }
}



/* ============================
   FLOATING CONTACT (ÚNICO FAB)
   ============================ */

.floating-contact {
  position: fixed;
  top: 50%;
  right: calc(16px + env(safe-area-inset-right));
  transform: translateY(-50%);
  z-index: 1000;
  display: grid;
  justify-items: end;
  font-family: 'Poppins', sans-serif;
}

/* Botón principal */
.floating-contact-btn {
  background: linear-gradient(180deg, #0a0a0a, #141414);
  color: #fff;
  font-weight: 700;
  /* Poppins Bold */
  font-size: .95rem;
  padding: .8rem 1.2rem;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: background .3s ease, transform .2s ease;
  text-decoration: none;
}

.floating-contact-btn i {
  font-size: 1.2rem;
}

.floating-contact-btn:hover {
  background: #141414;
}

/* Menú de redes */
.social-menu {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.floating-contact-btn:hover+.social-menu,
.social-menu:hover,
.floating-contact:focus-within .social-menu,
.floating-contact.open .social-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.social-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: .8rem;
  z-index: 1001;
  pointer-events: auto;
}

/* Botones de redes */
.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E7E4DF;
  color: #0a0a0a;
  /* 👈 negro fijo */
  font-size: 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
  transition: transform .2s ease, background .2s ease, color .2s ease;
  text-decoration: none !important;
  border: 1px solid #0a0a0a;
  /* 👈 negro */
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  /* Poppins Light */
}

.social-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(180deg, #0a0a0a, #141414);
  color: #fff !important;
}

/* Tooltips */
.social-btn::after {
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  background: #0a0a0a;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  /* Light */
}

.social-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* Textos tooltip */
.social-btn.call::after {
  content: "Schedule a Consultation";
}

.social-btn.whatsapp::after {
  content: "WhatsApp Chat";
}

.social-btn.facebook::after {
  content: "Facebook Page";
}

.social-btn.instagram::after {
  content: "Instagram Profile";
}

.social-btn.email::after {
  content: "Send Email";
}

/* Overrides de tema */
.floating-contact.fc--on-dark .social-btn {
  background: #E7E4DF !important;
  color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}

.floating-contact.fc--on-dark .social-btn:hover {
  background: #0a0a0a !important;
  color: #E7E4DF !important;
}

.floating-contact.fc--on-light .social-btn {
  background: linear-gradient(180deg, #0a0a0a, #141414) !important;
  color: #E7E4DF !important;
  border-color: #0a0a0a !important;
}

.floating-contact.fc--on-light .social-btn:hover {
  background: #E7E4DF !important;
  color: #0a0a0a !important;
}



/* ============================
   RESPONSIVE
   ============================ */

/* Tablet y menores: FAB circular, menú despliega bajo el botón */
@media (max-width: 1024px) {
  .floating-contact {
    right: calc(14px + env(safe-area-inset-right));
  }
}

@media (max-width: 768px) {
  .floating-contact-btn {
    padding: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }

  .floating-contact-btn i {
    font-size: 1.3rem;
  }

  .btn-text {
    display: none;
  }

  .social-menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: .8rem;
    /* despliega hacia abajo */
  }

  .social-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* Móviles compactos */
@media (max-width: 480px) {
  .floating-contact {
    right: calc(10px + env(safe-area-inset-right));
  }

  .floating-contact-btn {
    width: 52px;
    height: 52px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }
}

/* Muy pequeños */
@media (max-width: 360px) {
  .floating-contact {
    right: calc(8px + env(safe-area-inset-right));
  }

  .floating-contact-btn {
    width: 48px;
    height: 48px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    font-size: 1.02rem;
  }
}

/* Accesibilidad: menos animación si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {

  .floating-contact-btn,
  .social-menu,
  .social-btn {
    transition: none !important;
  }
}



/* Ajustes al separador para stats */
.light-divider.with-stats {
  background-color: #CFC7B8;
  border-top: 1px solid #B9AD9A;
  border-bottom: 1px solid #B9AD9A;
  padding: 1.5rem 0.5rem;
  /* REDUCIDO para menos altura */
  text-align: center;
}

.stats-container.stats-in-divider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  /* más adaptable */
  gap: 1rem;
  /* menos espacio */
  max-width: 900px;
  /* un poco más estrecho para visual balance */
  margin: 0 auto;
}

.stat-card.no-bg {
  background: transparent;
  padding: 0.5rem;
  /* menor padding */
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.stat-card.no-bg:hover {
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2rem;
  /* más compacto */
  font-weight: 700;
  color: #141414;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  /* reduce espacio vertical */
}

.stat-label {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: #333;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

/* Responsive fine-tuning */
@media (max-width: 768px) {
  .stats-container.stats-in-divider {
    gap: 0.5rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}

/* =========================
   BASE (fluido con clamp)
   ========================= */
.dynamic-texts {
  color: #fff;
  text-align: center;
  padding: clamp(24px, 6vw, 60px) clamp(16px, 4vw, 20px);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3.2vw, 2.8rem);
  /* antes 2.8rem fijo */
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.text-container {
  display: inline-block;
  position: relative;
  min-height: 1.2em;
  /* se adapta al font-size */
}

.changing-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.section-transition {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E7E4DF;
  /* fondo claro */
  padding: 6rem 0;
}

.transition-content {
  text-align: center;
}

.transition-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: fadeInUp 1.2s ease-out;

  /* 🔹 Convierte la imagen a negro */
  filter: invert(1) brightness(0.1) contrast(1.2);


}

/* === 📱 RESPONSIVE DESIGN PARA SECTION-TRANSITION === */

/* 🔹 Pantallas grandes (hasta 1440px) */
@media (max-width: 1440px) {
  .section-transition {
    padding: 5rem 0;
  }

  .transition-image {
    max-width: 520px;
  }
}

/* 🔹 Laptops y pantallas medianas (hasta 1200px) */
@media (max-width: 1200px) {
  .section-transition {
    padding: 4.5rem 0;
  }

  .transition-image {
    max-width: 480px;
  }
}

/* 🔹 Tablets horizontales (hasta 992px) */
@media (max-width: 992px) {
  .section-transition {
    padding: 4rem 1.5rem;
  }

  .transition-content {
    text-align: center;
  }

  .transition-image {
    max-width: 420px;
  }
}

/* 🔹 Tablets verticales y móviles grandes (hasta 768px) */
@media (max-width: 768px) {
  .section-transition {
    padding: 3rem 1.2rem;
  }

  .transition-image {
    max-width: 340px;
    width: 85%;
  }
}

/* 🔹 Móviles pequeños (hasta 576px) */
@media (max-width: 576px) {
  .section-transition {
    flex-direction: column;
    padding: 2.5rem 1rem;
  }

  .transition-content {
    text-align: center;
  }

  .transition-image {
    max-width: 280px;
    width: 100%;
    animation: fadeInUp 1.2s ease-out;
  }
}

/* 🔹 Móviles muy pequeños (hasta 400px) */
@media (max-width: 400px) {
  .section-transition {
    padding: 2rem 0.8rem;
  }

  .transition-image {
    max-width: 240px;
    width: 100%;
  }
}






/* ===== GALERÍA ===== */





/* Footer “pegado” abajo y centrado */
.gallery-footer {
  align-self: end;
  display: flex;
  justify-content: center;
  padding-top: 16px;
}



.explosion-gallery {
  background-color: #E7E4DF;
  ;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  color: #fff;
  overflow: hidden;

  /* 🔹 Ocupar toda la altura visible */
  min-height: 100vh;
}


.images-side {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5%;
  width: 100%;
  max-width: 1000px;
}

.images-side img {
  width: 200px;
  /* tamaño fijo de la caja */
  height: 200px;
  /* tamaño fijo de la caja */
  border-radius: 8px;
  object-fit: contain;
  /* mantiene proporción, no recorta */
  display: block;
}



/* ===== Botón ===== */
.gallery-footer {
  display: flex;
  justify-content: center;
  width: 100%;
}


/* === BOTÓN GALLERY === */
#gallery-btn {
  background: white;
  color: black;
  text-decoration: none;
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.4s ease;
  opacity: 0;
  /* para animación GSAP */
  transform: translateY(20px);
  margin: 4rem;
  border: none;
  display: inline-block;
  text-align: center;
}

/* Hover elegante */
#gallery-btn:hover {
  background: #0a0a0a;
  color: white;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
}

/* === RESPONSIVE DESIGN === */

/* Tablets horizontales y pantallas medianas (≤ 1024px) */
@media (max-width: 1024px) {
  #gallery-btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    margin: 3rem auto;
  }
}

/* Tablets verticales o pantallas pequeñas (≤ 768px) */
@media (max-width: 768px) {
  #gallery-btn {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    margin: 2.5rem auto;
    display: block;
  }
}

/* Celulares grandes (≤ 600px) */
@media (max-width: 600px) {
  #gallery-btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    margin: 2rem auto;
    border-radius: 35px;
  }
}

/* Celulares pequeños (≤ 400px) */
@media (max-width: 400px) {
  #gallery-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    margin: 1.8rem auto;
    border-radius: 30px;
  }
}

/* Ultra pequeños (≤ 320px) */
@media (max-width: 320px) {
  #gallery-btn {
    padding: 0.6rem 1.3rem;
    font-size: 0.85rem;
    margin: 1.5rem auto;
    border-radius: 25px;
  }
}








/* --- Toast gigante tipo banner --- */
#coming-soon-toast {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 2000;
  background: #111;
  color: #E7E4DF;
  border: 2px solid #2a2a2a;
  border-radius: 18px;

  /* 📐 mucho más grande */
  padding: 1.3rem 1.8rem;
  font: 700 1.25rem/1.5 "Poppins", system-ui, sans-serif;

  box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  max-width: 90vw;
  /* ✅ no se sale en móviles */
}

#coming-soon-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#coming-soon-toast span {
  font-size: 1.35rem;
  /* mensaje aún más grande */
  font-weight: 700;
}

#coming-soon-toast button {
  margin-left: 1.2rem;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 1.6rem;
  /* ❌✕ más grande */
  opacity: .75;
  line-height: 1;
}

#coming-soon-toast button:hover {
  opacity: 1;
}



/* Barra decorativa */
.at-decor-bar {
  position: relative;
  height: 40px;
  /* más gruesa (antes 14px) */
  width: 70%;
  /* sigue ocupando parte del contenedor */
  background: #1a1a1a;
  /* color oscuro */
  border-radius: 999px;
  margin: 40px auto 26px;
  /* separada hacia abajo */

}



/* Círculo blanco al inicio */
.at-decor-bar .at-circle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  /* mismo alto que la barra */
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 4px solid #1a1a1a;
  /* borde igual que la barra */
  box-sizing: border-box;
}



/* Fuente y variables base */
.about-timeline {
  --ink: #111111;
  /* texto/dot activo */
  --muted: #5a5a5a;
  /* línea y dots inactivos */
  --pill: #ECECEC;
  /* píldora tab activa */
  --bubble: #ffffff;
  /* tarjeta */

  /* Escala maestra: tamaño del título y proporción de dots */
  --title-size: clamp(1.35rem, 1.35vw + 1.05rem, 2rem);
  --dot-scale: 0.52;
  --dot-size: calc(var(--title-size) * var(--dot-scale));
  --rail-height: calc(var(--dot-size) + 12px);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 20px;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  position: relative;
  z-index: 0;
}

/* Contenido encima del fondo */
.about-timeline .at-wrap {
  position: relative;
  z-index: 1;
}

/* Sección */
.timeline-section {
  position: relative;
  padding: 10rem 0rem;
  /* background: linear-gradient(to bottom, transparent 0 calc(14px), #f2f2f2 calc(14px), #f2f2f2 100%);*/
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  /* background: #f2f2f2;*/
  z-index: -1;
}

.at-wrap {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* Tabs (títulos) */
.at-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.at-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
  font-size: var(--title-size);
  padding: clamp(12px, 1.2vw, 18px) clamp(16px, 2.2vw, 26px);
  border-radius: 999px;
  cursor: pointer;
  transition: .2s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  /* Bold normal */
}

.at-tab em {
  font-style: italic;
  font-weight: 600;
}

.at-tab.is-active {
  background: white;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .15) inset;

  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  /* Light */
  font-style: italic;
  /* italic light */

}

.at-tab:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* Rail (línea) */
.at-rail {
  position: relative;
  height: var(--rail-height);
  margin-bottom: 28px;
}

.at-rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: var(--muted);
}

/* Dots alineados con títulos (misma grid que las tabs) */
.at-dots {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* igual que .at-tabs */
  justify-items: center;
  /* centra el dot en su columna */
  z-index: 1;
}

.at-dot {
  appearance: none;
  border: 0;
  width: var(--dot-size);
  height: var(--dot-size);
  background: var(--muted);
  border-radius: 50%;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.at-dot.is-active {
  background: var(--ink);
  transform: scale(1.05);
}






/* Tarjeta */
.at-bubble {
  position: relative;
  background: var(--bubble);
  border-radius: 22px;
  padding: 40px 50px;
  box-shadow: 0 14px 22px rgba(0, 0, 0, .15);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  min-height: 300px;
  max-height: 420px;
}

.at-bubble::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -10px;
  height: 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .10);
  filter: blur(6px);
}

.at-lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  /* Light */
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.125rem);
  line-height: 1.5;
  /* más junto que antes */
  color: #222;
}

.at-lead strong {
  font-weight: 700;
}

.at-bubble::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: #b5b5b5;
  border-radius: 50%;
}

/* Ajustes fluidos */
.at-lead {
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.125rem);
  line-height: clamp(1.65, 1.2, 1.8);
}

.at-bubble {
  background: var(--bubble);
  border-radius: 22px;
  padding: 40px 50px;
  box-shadow: 0 14px 22px rgba(0, 0, 0, .15);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  min-height: 300px;
  max-height: 420px;
  transition: background 0.3s ease;
}

/* Tarjeta activa → fondo blanco */
.at-bubble.is-active {
  background: #fff;
}

.at-bubble::before {
  top: clamp(10px, 2vw, 16px);
  right: clamp(10px, 2vw, 16px);
  width: clamp(10px, 1.2vw, 12px);
  height: clamp(10px, 1.2vw, 12px);
}




/* ---------- Breakpoints ---------- */

/* <= 1024px (tablets apaisado y laptops pequeños) */
@media (max-width: 1024px) {
  .at-wrap {
    max-width: 900px;
  }

  .at-tabs {
    gap: 6px;
  }

  .at-bubble {
    max-width: min(92vw, 760px);
  }
}

/* <= 768px (tablets vertical / móviles grandes) */
@media (max-width: 768px) {

  /* Tabs en dos filas (2x2) para que no se encojan demasiado */
  .at-tabs {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
  }

  .at-rail {
    margin-top: 6px;
    margin-bottom: 22px;
  }

  /* Dots más grandes para toque cómodo */
  .at-dot {
    width: 14px;
    height: 14px;
  }

  /* Card más ancho y texto centrado (ya lo tenías) */
  .at-bubble {
    max-width: 92vw;
    padding: 28px 26px;
    text-align: center;
  }
}

/* <= 560px (móviles comunes) */
@media (max-width: 560px) {
  .about-timeline {
    padding: 40px 16px;
  }

  /* Tabs: tipografía y padding más compactos */
  .at-tab {
    font-size: 1rem;
    /* ~16px */
    padding: 10px 14px;
  }

  /* Línea y puntos con más aire */
  .at-rail {
    height: 22px;
  }

  .at-rail::before {
    top: 10px;
  }

  .at-lead {
    font-size: 0.98rem;
    /* ~15.5px */
    line-height: 1.7;
  }

  /* Puntico superior un poco más pequeño */
  .at-bubble::before {
    width: 10px;
    height: 10px;
    top: 12px;
    right: 12px;
  }
}

/* <= 400px (móviles pequeños) */
@media (max-width: 400px) {

  /* Tabs en una columna scrollable horizontal como fallback */
  .at-tabs {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: auto;
    gap: 8px;
    scrollbar-width: none;
  }

  .at-tabs::-webkit-scrollbar {
    display: none;
  }

  /* Dots más separados para evitar toques accidentales */
  .at-dots {
    column-gap: 12px;
  }
}

/* ---------- Accesibilidad / Motion ---------- */
@media (prefers-reduced-motion: reduce) {

  .at-tab,
  .at-dot {
    transition: none !important;
  }
}


.separador-section {
  width: 100%;
  height: 80px;
  background-color: #cdc6b5;
  /* color exacto de la imagen */
}


/* ====== Sección Influencers (ajustes sugeridos) ====== */
.influencers-section {
  position: relative;
  min-height: 520px;
  padding: 40px 0;
  display: grid;
  align-items: center;
  background: #0b0b0b url("../assets/img/fondo-camara-sonny.png") center/cover no-repeat;
  color: #eaeaea;
  overflow: hidden;
}

/* barra superior derecha — mantengo tu tamaño mayor */
.influencers-barra {
  position: absolute;
  right: 16px;
  top: 16px;
  width: min(480px, 60%);
  height: auto;
  z-index: 2;
  opacity: .95;
}

/* contenedor central */
.influencers-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 40px;
  /* un poco menos de separación entre bloques */
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* bloques */
.influencers-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* menos espacio entre título y burbuja */
}

/* superior a la izquierda */
.influencers-top {
  align-items: flex-start;
  text-align: left;
  margin-left: 0;
  padding-left: 10px;
}

/* inferior a la derecha */
.influencers-bottom {
  align-items: flex-end;
  text-align: right;
  margin-right: 0;
  padding-right: 10px;
}

/* títulos como imagen (sin cambios críticos) */
.title-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 700px;
  margin-bottom: -6px;
}

/* base de las burbujas (shared) */
.bubble {
  display: inline-block;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border-radius: 18px;
  padding: 16px 20px;
  /* tamaño cómodo */
  max-width: 740px;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, .25),
    0 10px 10px rgba(0, 0, 0, .15);

  /* Fuente obligatoria: Poppins Light */
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  /* Light */
  font-style: normal;

  line-height: 1.25;
  /* renglones más juntos */

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* párrafo dentro de burbuja: controlar tamaño y line-height exacto */
.bubble p {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.25;
  /* renglones más juntos (antes 1.55) */
  font-weight: 300;
  /* Poppins Light por defecto */
  text-align: left;
  /* por defecto; lo sobreescribimos por bloque */
  font-family: "Poppins", sans-serif;
}

/* negritas dentro de la burbuja mantendrán buen contraste */
.bubble strong {
  font-weight: 700;
}

/* especificar estilo para la burbuja superior (Poppins Light + alineada a la izquierda) */
.influencers-top .bubble {
  text-align: left;
  /* alinear texto de la burbuja superior a la izquierda */
}

.influencers-top .bubble p {
  font-weight: 300;
  /* Poppins Light */
}

/* especificar estilo para la burbuja inferior (Poppins Bold + alineada a la derecha) */
.influencers-bottom .bubble {
  text-align: right;
  /* alinear texto de la burbuja inferior a la derecha */
}

.influencers-bottom .bubble p {
  font-weight: 300;
  /* Poppins Light por defecto */
  line-height: 1.3;
  /* un poquito más respirado */
}



/* Responsivo */
@media (max-width: 900px) {
  .title-img.script {
    max-width: 70%;
  }

  .title-img.caps {
    max-width: 90%;
  }

  .bubble {
    max-width: 95%;
  }
}



/* ===============================
   CHOOSE US (BASE)
================================== */
.chooseus {
  --gap: 40px;
  --padX: 28px;
  --bar-h: 8px;
  --bar-color: #7a7a7a;
  --dark: #232323;
  --card-radius: 22px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #222;
  position: relative;
  height: 100vh;
  z-index: 1;
}

/* Contenedor superior */
.chooseus-top {
  background: #E7E4DF;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}

/* Grid interno: imagen (2fr) | texto (1fr) */
.chooseus-top__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap);
  padding: 0 var(--padX);
  height: 100vh;
  align-items: stretch;
  box-sizing: border-box;
}

/* ========== COLUMNA IZQUIERDA (IMAGEN) ========== */
.chooseus-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.chooseus-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

/* ========== COLUMNA DERECHA (CONTENIDO) ========== */
.chooseus-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 100px;
  margin-top: 40px;
  transform: translateX(-60px);
  box-sizing: border-box;
}

.chooseus-bar {
  position: absolute;
  top: 150px;
  left: -250px;
  width: calc(100vw + 250px);
  height: 4px;
  background: #444;
  border-radius: 999px;
}

/* Texto principal */
.chooseus-lead {
  margin-top: 100px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.45;
  color: #222;
}

.chooseus-lead p {
  margin: 0 0 12px;
  font-weight: 300;
}

/* Títulos */
.chooseus-right h2,
.chooseus-right h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ===============================
   RESPONSIVE
================================== */

/* 💻 Pantallas grandes (≥1200px) */
@media (min-width: 1200px) {
  .chooseus-top__inner {
    grid-template-columns: 2fr 1fr;
    padding: 0 5%;
  }

  .chooseus-right {
    transform: translateX(-80px);
  }

  .chooseus-lead {
    font-size: 1.2rem;
  }
}

/* 🧩 Laptops y tablets horizontales (≤1024px) */
@media (max-width: 1024px) {
  .chooseus-top__inner {
    grid-template-columns: 1.5fr 1fr;
    height: auto;
    padding: 2rem 4%;
  }

  .chooseus-right {
    transform: translateX(-30px);
    padding-top: 60px;
    margin-top: 20px;
  }

  .chooseus-bar {
    top: 120px;
    left: -150px;
    width: calc(100vw + 150px);
  }

  .chooseus-lead {
    margin-top: 60px;
  }
}

/* 📱 Tablets verticales y celulares grandes (≤768px) */
@media (max-width: 768px) {
  .chooseus {
    height: auto;
  }

  .chooseus-top {
    flex-direction: column;
    padding: 2rem 0;
  }

  .chooseus-top__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    height: auto;
  }

  .chooseus-img {
    order: 1;
    width: 100%;
    max-height: 350px;
  }

  .chooseus-img img {
    object-fit: cover;
  }

  .chooseus-right {
    order: 2;
    transform: none;
    padding-top: 20px;
    margin-top: 0;
    text-align: center;
    align-items: center;
  }

  .chooseus-bar {
    display: none;
    /* La barra se oculta en móviles */
  }

  .chooseus-lead {
    margin-top: 20px;
    font-size: 1rem;
  }
}

/* 📱 Celulares medianos (≤600px) */
@media (max-width: 600px) {
  .chooseus-top__inner {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .chooseus-img {
    max-height: 300px;
  }

  .chooseus-right h2 {
    font-size: 1.4rem;
  }

  .chooseus-lead {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* 📱 Celulares pequeños (≤400px) */
@media (max-width: 400px) {
  .chooseus-top__inner {
    padding: 0 1rem;
    gap: 1rem;
  }

  .chooseus-right h2 {
    font-size: 1.2rem;
  }

  .chooseus-lead {
    font-size: 0.9rem;
  }

  .chooseus-img {
    max-height: 250px;
  }
}




.power-growth {
  --gap: 40px;
  --padX: 0;
  --bar-h: 8px;
  --bar-color: #7a7a7a;
  --dark: #232323;
  --card-radius: 22px;

  font-family: Arial, Helvetica, sans-serif;
  color: #222;


  /* 🔹 altura exacta del viewport */
  background-color: var(--dark);

  display: flex;
  flex-direction: column;
  justify-content: center;
  /* 🔹 centra verticalmente */
  align-items: center;

  /* 🔹 eliminar paddings o márgenes que suman altura */
  padding: 0;
  margin: 0;

  /* 🔹 si hay elementos con gap, controla su espacio */
  gap: var(--gap);

  /* 🔹 prevenir overflow si algo sobresale */
  box-sizing: border-box;
  overflow: hidden;

  position: relative;
  bottom: 0;
  height: 100%;
  width: 100%;




}






/* Base: todo en Poppins Light */
.chooseus-bottom,
.chooseus-card,
.card-text p,
.chooseus-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  /* Light */
}

/* Lista: Poppins Bold */
.chooseus-list li {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  /* Bold */
}


.chooseus-bottom {
  background: var(--dark);
  color: #fff;
  width: 100%;
  min-height: 100vh;

  /* 🔹 centrado vertical puro */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* centra verticalmente */
  box-sizing: border-box;
  padding: 80px 0;
  /* puedes dejar tu padding original o ajustarlo */
}

.chooseus-bottom__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  /* centra internamente los elementos */
  width: 100%;
  /* 🔹 conserva toda la anchura */
}



/* --- LISTA + FLECHA DESLIZANTE (columna izquierda) --- */
.chooseus-list-wrap {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: stretch;
  /* que la lista crezca verticalmente */
  justify-content: stretch;
}

.chooseus-list {
  list-style: none;
  margin: 0;
  height: 100%;
  width: 100%;
  padding: 0 24px 0 40px;
  /* espacio para flecha a la derecha */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* reparte items en toda la altura */
  text-align: left;
}

.chooseus-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  /* espacio entre icono y texto */
  font-size: clamp(20px, 2.6vw, 26px);
  /* texto más grande */
  font-weight: 400;
  padding: 22px 24px;
  border-radius: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  outline: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;

}

.chooseus-list li:last-child {
  border-bottom: none;
}

.chooseus-list strong {
  font-weight: 800;
}

/* Hover sutil en oscuro */
.chooseus-list li:hover {
  color: rgba(255, 255, 255, .9);
  transform: translateY(-1px);
}

/* Estado activo (pill blanco + tu color) */
.chooseus-list li[aria-selected="true"] {
  background: #ffffff;
  color: #071932;
  /* TU COLOR */
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  border-bottom-color: transparent;
}

/* Ícono activo */
.chooseus-list li i {
  width: 20px;
  height: 20px;
  color: #fff;
  flex-shrink: 0;
  transition: color .25s ease;
}

.chooseus-list li[aria-selected="true"] i {
  color: #071932;
}

/* Accesibilidad foco */
.chooseus-list li:focus-visible {
  outline: 2px dashed #fff;
  outline-offset: 2px;
}

/* Flecha (→) a la DERECHA */
.chooseus-arrow {
  position: absolute;
  right: -22px;
  /* ubica la flecha a la derecha de la lista */
  width: 0;
  height: 0;
  border-left: 16px solid #ffffff;
  /* punta blanca */
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateY(-50%);
  top: 0;
  /* posición controlada por JS */
  transition: top .35s cubic-bezier(.2, .8, .2, 1);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .25));
}

.chooseus-card {
  background: #fff;
  color: #111;
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  min-height: 520px;
  margin: 0 auto;
  padding: 100px 40px 50px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  /* ✅ clave */
}



/* Barra superior */
.card-bar {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 48px;
  background: #fff;
  border: 2px solid #e9e9e9;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  /* ✅ encima del ::before */
}

.card-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fafafa, #f6f6f6);
  opacity: .8;
  z-index: 0;
  /* ✅ detrás de todo */
}

/* Dot con tu color */
.card-bar .dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: black;
  /* TU COLOR */
  border-radius: 50%;
  transition: left .45s cubic-bezier(.2, .8, .2, 1), transform .25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
  z-index: 3;
  /* ✅ siempre visible */
}

.card-bar .dot.is-pulse {
  animation: pulse .6s ease;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}



.chooseus-card h4 {
  margin: 0 0 16px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
}

.card-text p {
  margin: 0 0 14px;
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.65;
}

/* Fade/slide del texto */
.card-text.is-out {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}

.card-text.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s ease, transform .35s ease;
}






/* ========== RESPONSIVE POWER-GROWTH ========== */

/* === Escritorios grandes (≥1200px) === */
@media (min-width: 1200px) {
  .chooseus-bottom__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 0 80px;
  }

  .chooseus-list li {
    font-size: 22px;
    padding: 22px 24px;
  }

  .chooseus-card {
    max-width: 480px;
    min-height: 540px;
    padding: 100px 50px 60px;
  }
}

/* === Tablets horizontales (992px–1199px) === */
@media (min-width: 992px) and (max-width: 1199px) {
  .chooseus-bottom__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 60px;
  }

  .chooseus-list li {
    font-size: 20px;
    padding: 20px 22px;
  }

  .chooseus-card {
    max-width: 420px;
    min-height: 500px;
    padding: 80px 40px 50px;
  }
}

/* === Tablets verticales (768px–991px) === */
@media (min-width: 768px) and (max-width: 991px) {
  .chooseus-bottom__inner {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 40px;
  }

  .chooseus-list {
    padding: 0 16px 0 30px;
  }

  .chooseus-list li {
    font-size: 18px;
    padding: 18px 20px;
  }

  .chooseus-card {
    max-width: 380px;
    min-height: 460px;
    padding: 70px 30px 40px;
  }

  .card-bar {
    height: 44px;
  }
}

/* === Móviles grandes (480px–767px) === */
@media (min-width: 480px) and (max-width: 767px) {
  .chooseus-bottom__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .chooseus-list {
    padding: 0 12px 0 20px;
  }

  .chooseus-list li {
    font-size: 17px;
    padding: 16px 18px;
  }

  .chooseus-card {
    max-width: 340px;
    min-height: 420px;
    padding: 60px 24px 36px;
  }

  .chooseus-card h4 {
    font-size: 20px;
  }

  .card-text p {
    font-size: 15px;
  }

  .card-bar {
    height: 40px;
  }

  .chooseus-arrow {
    display: none;
  }

}

/* === Móviles pequeños (≤479px) === */
@media (max-width: 479px) {
  .chooseus-bottom {
    padding: 60px 0;
  }

  .chooseus-bottom__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 16px;
  }

  .chooseus-list {
    padding: 0 10px 0 16px;
  }

  .chooseus-list li {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 12px;
  }

  .chooseus-card {
    max-width: 300px;
    min-height: 380px;
    padding: 50px 20px 30px;
  }

  .chooseus-card h4 {
    font-size: 18px;
  }

  .card-text p {
    font-size: 14px;
  }

  .card-bar {
    height: 36px;
    border-radius: 18px;
  }

  .card-bar .dot {
    width: 16px;
    height: 16px;
  }

  .chooseus-arrow {
    display: none;
  }
}






/* ===== SECTION READY (responsive, chica fija abajo-izq) ===== */
.section-ready {
  /* Paleta y base */
  --bg: #E7E4DF;
  --content-max: 1280px;

  /* Tamaño de la chica (fluido) */
  --girl-w: clamp(300px, 45vw, 640px);

  /* Empuje del contenido hacia la derecha (multiplicador ajustable por breakpoint) */
  --push-mult: 0.65;

  background: var(--bg);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

.ready-wrap {
  --push: calc(var(--girl-w) * var(--push-mult) + min(4vw, 28px));
  width: 100%;
  max-width: var(--content-max);
  margin: 20px auto 0 auto;
  /* << mucho menos bajado */
  padding: clamp(64px, 10vh, 120px) min(6vw, 48px) 28px var(--push);
  display: grid;
  gap: 28px;
  align-content: center;
}




/* Chica fija abajo-izquierda siempre */
.ready-left {
  position: absolute;
  inset: auto auto 0 0;
  /* bottom:0; left:0 */
  width: var(--girl-w);
  pointer-events: none;
  z-index: 3;
}

.ready-girl {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .12));
  display: block;
}

/* Columna derecha (texto/cta) */
.ready-content {
  --bubble-extra: clamp(80px, 8vw, 200px);
  display: grid;
  gap: clamp(16px, 3vw, 28px);
  align-content: start;
  z-index: 2;
}

/* Título (imagen) */
/* Título (imagen) */
.ready-title {
  width: clamp(600px, 70vw, 1100px);
  height: auto;
  display: block;
  position: relative;
  top: -100px;

  /* 🔹 MUCHO más a la izquierda */
  left: clamp(-220px, -14vw, -100px);
}

/* Burbuja: más ancha hacia la izquierda sin mover el borde derecho */
.ready-bubble {
  background: #fff;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw + .8rem, 1.25rem);
  line-height: 1.6;
  border-radius: 50px;
  padding-inline: clamp(16px, 2vw, 24px) max(20px, env(safe-area-inset-right));
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);

  width: calc(150% + var(--bubble-extra));
  margin-left: calc(-1 * var(--bubble-extra));
  margin-right: 0;
  max-width: none;

  position: relative;
  transform: translateY(clamp(-120px, -10vh, -60px));
}

.text-ready-bubble {
  margin-left: 20px;
}

.ready-bubble strong,
.ready-cta strong {
  font-weight: 600;
}

/* CTA negro */
.ready-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;

  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, .7vw + .9rem, 1.1rem);
  line-height: 1.5;

  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, #0a0a0a, #141414);

  border-radius: 50px;
  padding: 22px clamp(36px, 4.5vw, 64px);

  width: 120%;
  margin-left: clamp(-400px, -28vw, -520px);
  margin-top: clamp(-20px, -2vh, 10px);

  transition: all .35s ease;
  transform: translateY(0);
}



/* Icono siempre blanco */
.ready-cta-icon {
  color: #fff;
  font-size: 1.2em;
}



/* Pequeña animación solo al icono */
.ready-cta:hover .ready-cta-icon {
  transform: rotate(-10deg) scale(1.1);
}

/* ===============================
   RESPONSIVE — SOLO MEDIA QUERIES
   (no se modifica la base)
==================================*/

/* 1180↓: leve compactación del layout */
@media (max-width: 1180px) {
  .ready-wrap {
    gap: 24px;
  }

  .ready-title {
    top: -76px;
  }

  .ready-bubble {
    transform: translateY(-80px);
  }
}

/* 1080↓: reduce empuje y sombras */
@media (max-width: 1080px) {
  .section-ready {
    --push-mult: 0.50;
  }

  .ready-wrap {
    padding-top: 64px;
  }

  .ready-title {
    top: -72px;
  }

  .ready-bubble {
    transform: translateY(-76px);
  }

  .ready-cta {
    padding-block: 20px;
  }
}

/* 1024↓: tablet landscape – bajar empuje, controlar desplazamientos */
@media (max-width: 1024px) {
  .section-ready {
    --girl-w: clamp(260px, 44vw, 480px);
    --push-mult: 0.46;
  }

  .ready-title {
    top: -68px;
    left: clamp(-60px, -5vw, -36px);
    width: clamp(520px, 66vw, 920px);
  }

  .ready-bubble {
    --bubble-extra: clamp(44px, 5vw, 120px);
    left: 120px;
    /* menos corrida que en 1280 */
    transform: translateY(-72px);
  }

  .ready-cta {
    width: 108%;
    margin-left: clamp(-180px, -12vw, -240px);
  }
}

/* 900↓: tablet portrait – priorizar legibilidad y evitar overflow */
@media (max-width: 900px) {
  .section-ready {
    --girl-w: clamp(240px, 48vw, 460px);
    --push-mult: 0.36;
  }

  .ready-wrap {
    padding: 56px min(5vw, 40px) 24px calc(var(--girl-w)*var(--push-mult) + min(4vw, 24px));
    gap: 22px;
  }

  .ready-title {
    top: -58px;
    left: clamp(-36px, -4vw, -20px);
    width: clamp(480px, 72vw, 860px);
  }

  .ready-bubble {
    --bubble-extra: clamp(40px, 5vw, 110px);
    left: 72px;
    /* aún algo a la dcha., pero menos */
    transform: translateY(-64px);
  }

  .ready-cta {
    width: 104%;
    margin-left: clamp(-120px, -9vw, -160px);
    padding: 20px clamp(28px, 4vw, 52px);
  }
}

/* 820↓: ajustes finos para iPad/Android medianos */
@media (max-width: 820px) {
  .section-ready {
    --push-mult: 0.30;
  }

  .ready-title {
    top: -52px;
  }

  .ready-bubble {
    transform: translateY(-56px);
  }
}

/* 768↓: móvil grande – centrar más el contenido, limitar desplazamientos */
@media (max-width: 768px) {
  .section-ready {
    --girl-w: clamp(220px, 52vw, 420px);
    --push-mult: 0.24;
  }

  .ready-wrap {
    padding: 52px min(5vw, 36px) 24px calc(var(--girl-w)*var(--push-mult) + min(4vw, 20px));
    gap: 20px;
  }

  .ready-title {
    top: -46px;
    left: clamp(-28px, -3.6vw, -16px);
    width: clamp(440px, 78vw, 800px);
  }

  .ready-bubble {
    --bubble-extra: clamp(36px, 5vw, 100px);
    left: 40px;
    /* casi alineada al contenido */
    transform: translateY(-48px);
  }

  .ready-cta {
    width: 100%;
    margin-left: 0;
    /* evita “salirse” en móviles */
    padding: 18px clamp(24px, 4vw, 44px);
  }
}

/* 640↓: móvil común – reducir empuje y estabilizar overlays */
@media (max-width: 640px) {
  .section-ready {
    --push-mult: 0.18;
  }

  .ready-wrap {
    padding-top: 48px;
  }

  .ready-title {
    top: -38px;
    left: clamp(-16px, -2.8vw, -8px);
    width: clamp(380px, 82vw, 740px);
  }

  .ready-bubble {
    --bubble-extra: clamp(28px, 4.6vw, 84px);
    left: 16px;
    /* ya sin corrida fuerte */
    width: min(130%, 960px);
    transform: translateY(-40px);
  }

  .ready-cta {
    padding: 16px clamp(20px, 4vw, 40px);
  }
}

/* 560↓: móvil pequeño – empuje mínimo; chica más chica para no tapar */
@media (max-width: 560px) {
  .section-ready {
    --girl-w: clamp(200px, 50vw, 380px);
    --push-mult: 0.10;
    /* casi sin empuje */
  }

  .ready-wrap {
    padding: 44px min(6vw, 28px) 20px min(6vw, 28px);
    /* lateral uniforme */
  }

  .ready-title {
    top: -28px;
    left: 0;
    width: clamp(320px, 86vw, 680px);
  }

  .ready-bubble {
    --bubble-extra: clamp(20px, 5vw, 64px);
    left: 0;
    /* sin desplazamiento lateral */
    width: min(120%, 860px);
    transform: translateY(-28px);
  }

  .ready-cta {
    width: 100%;
    margin-left: 0;
    margin-top: 4px;
  }
}

/* 480↓: micro-ajustes de densidad y focus */
@media (max-width: 480px) {
  .ready-wrap {
    gap: 18px;
  }

  .ready-title {
    top: -22px;
  }

  .ready-bubble {
    transform: translateY(-22px);
  }

  .ready-cta {
    padding: 16px clamp(18px, 5vw, 32px);
  }
}

/* 400↓: extremos — asegurar que nada se corte */
@media (max-width: 400px) {
  .section-ready {
    --girl-w: clamp(180px, 48vw, 340px);
  }

  .ready-title {
    top: -18px;
  }

  .ready-bubble {
    --bubble-extra: clamp(16px, 5vw, 48px);
    width: min(115%, 760px);
    transform: translateY(-18px);
  }
}

/* 360↓: muy pequeño — redondeos suaves */
@media (max-width: 360px) {
  .ready-title {
    top: -14px;
  }

  .ready-bubble {
    border-radius: 16px;
  }
}

/* Alturas bajas (apaisado / teclado abierto) — evita solapes verticales */
@media (max-height: 720px) and (orientation: landscape) {
  .ready-title {
    top: -20px;
  }

  .ready-bubble {
    transform: translateY(-18px);
  }

  .ready-cta {
    margin-top: 0;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .section-ready {
    min-height: 100svh;
  }

  .ready-wrap {
    padding-top: 40px;
  }

  .ready-bubble {
    transform: translateY(-12px);
  }
}

/* Safe areas (iOS notch) */
@media (max-width: 768px) {
  .ready-wrap {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }

  .ready-bubble {
    padding-inline: clamp(16px, 2vw, 24px) max(20px, env(safe-area-inset-right));
  }
}

/* Interacciones táctiles: sin micro-saltos */
@media (hover: none) and (pointer: coarse) {
  .ready-cta:hover .ready-cta-icon {
    transform: none;
  }
}

/* Accesibilidad: reduce-motion */
@media (prefers-reduced-motion: reduce) {

  .ready-cta,
  .ready-cta-icon,
  .card-text.is-in,
  .card-text.is-out {
    transition: none !important;
    animation: none !important;
  }
}


/* === Contenedor === */
#translator-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* === Botón principal === */
#open-translate {
  background: transparent;
  border: none;
  font-size: 26px;
  color: black;
  cursor: pointer;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#open-translate:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* === Caja del traductor === */
#translate-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  padding: 10px 14px;
  margin-top: 10px;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Estilo del select de idioma === */
.goog-te-combo {
  background: #fff !important;
  border: 1px solid #000 !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
  color: #000 !important;
  font-weight: 500 !important;
  font-family: "Poppins", sans-serif !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

.goog-te-combo:hover {
  background: #000 !important;
  color: #fff !important;
  transition: all 0.25s ease;
}

/* === Ocultar elementos innecesarios === */
iframe.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-logo-link,
.goog-te-banner {
  display: none !important;
}

body {
  top: 0 !important;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap');

.floating-btn {
  position: fixed;
  bottom: 70px;
  /* un poco más arriba */
  right: 25px;
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
}

.floating-btn:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

/* 🔹 Responsive design */
@media (max-width: 768px) {
  .floating-btn {
    bottom: 60px;
    right: 15px;
    font-size: 14px;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .floating-btn {
    bottom: 55px;
    right: 10px;
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* Opcional: animación suave para destacar */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.floating-btn {
  animation: pulse 2.5s infinite;
}

.swal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 300; /* Light */
}

.swal-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.swal-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}