/* -------- RESET -------- */
* {
  margin: 0;
  padding: 0;
  width: 100%;
}


/* -------- ANIMACIONES TEXTO  -------- */
* {
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}
.section-container {
  overflow: hidden; /* corta el espacio que genera la animación */
}

section {
  width: 100vw;          /* ocupa todo el ancho de la ventana */
  max-width: 100%;        /* evita limitar por default */
  padding-left: 5vw;      /* márgenes laterales agradables */
  padding-right: 5vw;
  box-sizing: border-box; /* para que padding no aumente ancho */
}

section {
  scroll-margin-top: 100px; /* para que no tape el navbar */
}
.section {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.section.visible {
  opacity: 1;
}










/* -------- GLOBAL -------- */
body {
  font-family: 'Poppins', sans-serif;
  
  color: #222;
  letter-spacing: 0.2px;
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4, h5 {
  font-weight: 400;
  
  letter-spacing: -0.02em;
}





/* Evita scroll horizontal en toda la página */
html, body {
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Aplica box-sizing globalmente */
*, *::before, *::after {
  box-sizing: inherit;
}





/* ================= Scroll Reveal ================= */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= Scroll Suave ================= */
html {
  scroll-behavior: smooth;
}





/* ================= NAVBAR ================= */
header.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  z-index: 1001;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Ocultar/mostrar al hacer scroll */
header.site-header.hide {
  transform: translate(-50%, -120%);
  opacity: 0;
}
header.site-header.show {
  transform: translateX(-50%);
  opacity: 1;
}

/* Contenedor principal */
.navbar-container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  max-width: 1400px;
  margin: 8px auto;
}

/* Logo */
.navbar-logo img.logo {
  height: 40px;
  width: auto;
  display: block;
  cursor: pointer;
  flex-shrink: 0;
}

/* Links de navegación */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

/* Botones de formulario */
.nav-links button.open-form-btn,
.nav-links button.open-form-btn:hover,
.nav-links button.open-form-btn::after {
  all: unset;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  color: #333;
  text-decoration: none !important;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

/* Botones y Contact Us igualados */
.nav-links button.open-form-btn,
.nav-links a.contact-us-btn {
  all: unset;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  color: #333;
  text-decoration: none !important;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s ease;
  white-space: nowrap; /* para que ocupe solo un renglón */
}
.nav-links button.open-form-btn:hover,
.nav-links a.contact-us-btn:hover {
  color: #c29227; /* dorado hover */
}

.nav-links button.open-form-btn:hover {
  color: #c29227; /* dorado hover */
}

.nav-links button.open-form-btn::after,
.nav-links button.open-form-btn::before {
  content: none !important;
}

/* Botón Contact Us */
.contact-us-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 6px 12px;
  border-radius: 8px;
  background-color: #c29227; /* dorado */
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-us-btn:hover {
  background-color: #a0701f; /* dorado más oscuro al pasar mouse */
  color: #fff;
}

/* ================= FORMULARIO POPUP ================= */
.form-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  background-color: #fff;
  color: #212121;
  padding: 30px;
  border-radius: 12px;
  z-index: 99999 !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.form-popup[aria-hidden="false"] {
  display: block;
}

.form-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #212121;
  text-decoration: none; /* quitar subrayado */
}

/* Overlay detrás */
.form-overlay {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.4);
  z-index: 99998;
}

/* ================= BOTÓN HAMBURGUESA ================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
}

/* ================= RESPONSIVE ================= */

/* 🔹 Tablets (≤ 992px) */
@media (max-width: 992px) {
  .navbar-container {
    padding: 8px 15px;
  }

  .nav-links button.open-form-btn,
  .contact-us-btn {
    font-size: 1rem;
  }
}

/* 🔹 Móviles (≤ 768px) */
@media (max-width: 768px) {
  header.site-header {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
  }

  .menu-toggle {
    display: block; /* muestra hamburguesa */
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 10px;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links button.open-form-btn,
  .contact-us-btn {
    font-size: 1rem;
  }
}







/* Body sin padding */
body {
  padding-top: 0;
}









/* ================= HERO UNIFICADO ================= */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background: #001133;
  font-family: 'Poppins', sans-serif;
}

/* Fondo animado VANTA */
#vanta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Navbar flotante */
.hero-navbar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.hero-navbar .logo {
  font-weight: 700;
  font-size: 1.5rem;
}

.hero-navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.hero-navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.hero-navbar .nav-links a:hover {
  color: #00bfff;
}

/* Contenedor principal hero */
.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Texto principal hero */
.hero-main-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-size: 3.3rem;
  font-weight: 100;
  line-height: 1.2;
  max-width: 600px;
  color: #fff;
}

/* Animación de cada línea del hero */
.hero-main-text span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s forwards;
}

.hero-main-text span:nth-child(1) { animation-delay: 0.2s; }
.hero-main-text span:nth-child(2) { animation-delay: 0.6s; }
.hero-main-text span:nth-child(3) { animation-delay: 1s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtexto hero */
.hero-subtext {
  position: absolute;
  bottom: 40px;
  right: 5%;
  max-width: 500px;
  font-size: 1.1rem;
  color: #dbe9ff;
  text-align: left;
  line-height: 1.6;
  font-weight: 300;
}

/* ================= HERO RESPONSIVE ================= */
/* ================= HERO RESPONSIVE FIEl ================= */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .hero-main-text {
    font-size: 2.5rem;
    max-width: 600px; /* igual que original */
    left: 5%;          /* misma distancia del borde que original */
    top: 50%;
    transform: translateY(-50%);
  }

  .hero-subtext {
    font-size: 1rem;
    max-width: 500px;  /* igual que original */
    right: 5%;         /* mismo margen que original */
    bottom: 40px;
    text-align: left;  /* mantiene alineación original */
  }
}

/* Móviles (≤ 768px) */
@media (max-width: 768px) {
  .hero-main-text {
    font-size: 2rem;
    max-width: 600px;
    left: 5%; /* mismo margen izquierdo que original */
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
  }

  .hero-subtext {
    font-size: 0.95rem;
    max-width: 500px;
    right: 5%;  /* mantiene margen derecho */
    bottom: 30px;
    text-align: left; /* igual que original */
  }
}

/* Muy pequeños (≤ 480px) */
@media (max-width: 480px) {
  .hero-main-text {
    font-size: 1.6rem;
    max-width: 90%;   /* se ajusta al ancho de pantalla */
    left: 5%;
  }

  .hero-subtext {
    font-size: 0.85rem;
    max-width: 85%;
    right: 5%;
    bottom: 20px;
  }
}







.future-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background-color: #fff;
  position: relative;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  border: none; /* antes tenía línea negra */
  padding-right: 0 !important;
  
  margin-top: 10px;
  padding-top: 3px;
padding-bottom: 30px;

margin-bottom: 30px;

  
  
  width: 100vw;
  margin-left: calc(50% - 50vw); /* rompe el centrado del padre */
  
}

/* Bloque de texto principal (izquierda) */
.future-text {
  max-width: 700px;
  text-align: left;
  padding: 100px 0 140px 0; 
}

.future-eyebrow {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.future-text h2 {
  font-size: 2.8rem;       /* igual que .success-title */
  font-weight: 100;      /* igual que .success-title */
  color: #111;           /* igual que .success-title */
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
}


.future-problem {
  font-size: 1.1rem;
  font-weight: 300;
  color: #000;
  line-height: 1.6;
  max-width: 680px;
  text-align: justify;
}

/* Bloques de datos (abajo a la derecha) */
.future-data {
  display: flex;
  justify-content: flex-end;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: auto;
  align-self: flex-end;
margin-bottom: 10%;
 
  margin-right: calc(50% - 50vw);
  padding-right: 8%;
  box-sizing: border-box;
  margin-top: 1px !important;
}
.future-data .data-card h4{
  font-size: 1.2rem !important;
}



.data-card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: left;
  color: #c29227;
  margin-bottom: 15px;

  display: flex;
  flex-direction: column;
}


.data-card h4 {
  font-size: rem;       /* achicamos un poco la fuente */
  font-weight: 500;
  color: #c29227;
  margin-bottom: 5px;
  line-height: 1.3;
  max-width: 100%;
  word-break: break-word;
  text-align: justify;
  text-align: left;
}



.data-card .value {
  font-size: 1rem;      /* más compacto */
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
  line-height: 1.25;
  
}

.data-card .detail {
  font-size: 0.2rem;   /* un poco más pequeño */
  color: #000;
  line-height: 1.4;     /* reduce altura de línea */

}

.icon {
  font-size: 30px !important;    /* un poco más pequeño */
  margin-bottom: 8px;
}


/* Pequeño delay entre íconos para aparición escalonada */
.data-card:nth-child(2) .icon {
  animation-delay: 0.3s;
}
.data-card:nth-child(3) .icon {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Efecto hover sutil */
.data-card:hover .icon {
  transform: scale(1.08);
  opacity: 1;
  transition: transform 0.4s ease;
}
/* ================= FUTURE SECTION RESPONSIVE ================= */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .future-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .future-text {
    padding: 60px 20px 80px 20px;
    max-width: 80%;
  }

  .future-eyebrow {
    font-size: 0.9rem;
  }

  .future-text h2 {
    font-size: 2rem;
  }

  .future-problem {
    font-size: 1rem;
    max-width: 100%;
  }

  .future-data {
    justify-content: flex-start;
    gap: 30px;
    padding-right: 5%;
    margin-right: 0;
    margin-bottom: 10%;
    width: 100%;
  }

  .data-card {
    max-width: 250px;
  }

  .data-card h4 {
    font-size: 0.95rem;
  }

  .data-card .value {
    font-size: 0.95rem;
  }

  .data-card .detail {
    font-size: 0.9rem;
  }

  .data-card .icon {
    font-size: 1.7rem;
  }
}

/* Móviles (≤ 768px) */
@media (max-width: 768px) {
  .future-section {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .future-text {
    padding: 40px 15px 60px 15px;
    max-width: 90%;
  }

  .future-eyebrow {
    font-size: 0.85rem;
  }

  .future-text h2 {
    font-size: 1.7rem;
  }

  .future-problem {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .future-data {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-right: 15px;
    margin-right: 0;
    margin-bottom: 5%;
  }

  .data-card {
    max-width: 100%;
  }

  .data-card h4 {
    font-size: 0.9rem;
  }

  .data-card .value {
    font-size: 0.9rem;
  }

  .data-card .detail {
    font-size: 0.85rem;
  }

  .data-card .icon {
    font-size: 1.5rem;
  }
}

/* Muy pequeños (≤ 480px) */
@media (max-width: 480px) {
  .future-text {
    padding: 30px 10px 40px 10px;
    max-width: 95%;
  }

  .future-eyebrow {
    font-size: 0.8rem;
  }

  .future-text h2 {
    font-size: 1.5rem;
  }

  .future-problem {
    font-size: 0.85rem;
  }

  .future-data {
    gap: 15px;
  }

  .data-card h4 {
    font-size: 0.85rem;
  }

  .data-card .value {
    font-size: 0.85rem;
  }

  .data-card .detail {
    font-size: 0.8rem;
  }

  .data-card .icon {
    font-size: 1.4rem;
  }
}










/* === BLOQUE EVOLUTION (ajustado) === */
.evolution-section {
  display: flex;
  gap: 80px;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
 

  width: 100vw; 
  max-width: 100%;
  margin-left: calc(50% - 50vw); /* fuerza al borde izquierdo */

  padding: 0px 4%; /* antes 120px, reducimos para acercar al bloque de arriba */
  box-sizing: border-box;


    position: relative; /* necesario para que el título use el top */
  padding-top: 100px; /* crea espacio arriba después de elevar el título */
}

.evolution-section .title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;      /* igual que .success-title */
  font-weight: 100;     /* igual que .success-title */
  color: #111;          /* igual que .success-title */
  text-align: center;   /* o left según diseño */
  margin: 0;
  padding: 0;
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
}





/* === LADO IZQUIERDO (texto) === */
.evolution-left {
  flex: 1 1 55%;
  min-width: 400px;
  max-width: 800px; /* más espacio para texto */
  padding-left: 40px;
  text-align: left;
  margin-top: 0;
}

.title{
  text-align: left;
  margin-top: 0;
}

/* === LADO DERECHO (cuadro animado) === */
.evolution-right {
  flex: 1 1 45%;
  min-width: 400px;
  height: 600px;
  position: relative;
 
}

/* === CONTENEDOR DEL EFECTO VANTA === */
.vanta-container {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

/* === TEXTO SOBRE LA ANIMACIÓN VANTA === */
.vanta-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
   font-family: 'Poppins', sans-serif;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  max-width: 90%;
  pointer-events: none; /* para que no interfiera con clicks */
  color: white;

  
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);



}

.vanta-text.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05); /* ligera animación al aparecer */
}


/* === TEXTOS DE LA COLUMNA IZQUIERDA === */
.evolution-left .headline,
.evolution-left .title,
.evolution-left .subtitle {
  margin-left: 0;
  margin-right: auto;
}

/* === BOTONES === */
.tab-buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* From Uiverse.io by portseif */ 
/* === BOTONES === */
.tab-buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* From Uiverse.io by portseif */ 
button {
  align-items: center;
  background-color: transparent;
  color: #000; /* texto negro */
  cursor: pointer;
  display: flex;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem; /* agrandado */
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  outline: 0;
  border: 0;
  padding: 1.25rem 1rem; /* un poco más alto */
  position: relative; /* importante para ::before */
  letter-spacing: 0.4px; /* opcional para mejor lectura */
}

button:before {
  background-color: #000; /* línea negra */
  content: "";
  display: block;
  height: 2px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.42s cubic-bezier(.25,.8,.25,1);
}

button:hover:before {
  width: 10rem; /* línea más larga para que acompañe el tamaño */
}


/* === TEXTOS DEBAJO DE LOS BOTONES === */
.tab-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;                   /* Tamaño del texto */
  color: #000;                     /* Color del texto */
  line-height: 1.5;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  margin-top: 0;
}

.tab-text.active {
  max-height: 500px; /* Ajusta según el largo del contenido */
  opacity: 1;
  margin-top: 10px;
}












/* === ANIMACION CUBES  === */
/* Contenedor de cubos */
#cube-animation {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  perspective: 1000px;
  border-radius: 12px;
  overflow: hidden;
  background-color: darkcyan;  
}

/* Cada cubo */
.cube {
  position: absolute;
  transform-style: preserve-3d;
  animation: rotation 2s infinite linear;
}

/* Caras de cada cubo */
.cube div {
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid #fff; /* bordes blancos */
      /* caras negras */
}

/* Posición 3D de cada cara */
.cube .front  { transform: rotateY(0deg) translateZ(50%); }
.cube .back   { transform: rotateY(180deg) translateZ(50%); }
.cube .right  { transform: rotateY(90deg) translateZ(50%); }
.cube .left   { transform: rotateY(-90deg) translateZ(50%); }
.cube .top    { transform: rotateX(90deg) translateZ(50%); }
.cube .bottom { transform: rotateX(-90deg) translateZ(50%); }

/* Animación de rotación */
@keyframes rotation {
  0%   { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(-90deg) rotateY(90deg); }
}
.evolution-right {
  position: relative;
  height: 500px; /* ajusta según necesites */
  width: 100%;
}






#magnet-lines-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* para que no interfiera con clicks */
  z-index: 0; /* debajo de tu texto */
  overflow: hidden;
}
.lines-container {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  pointer-events: none; /* para que no interfiera con botones */
  z-index: 1;
}



#lines-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Para que quede detrás de otros elementos */
}
.evolution-right {
  position: relative;
  height: 500px; /* o lo que necesites */
}


#new-animation-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: none;
  overflow: hidden;
  background: black;
}

#starCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

#new-animation-container .container,
#hiddenSection {
  position: relative;
  z-index: 2;
  color: white;
}










/* ================= RESPONSIVE ================= */
/* TABLET */
@media (max-width: 1024px) {
  .evolution-section {
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
    padding-left: 4%;
    padding-right: 4%;
  }

  .evolution-left {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  .evolution-section h2.title {
    font-size: 1.6rem !important;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .headline, .subtitle {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .tab-buttons button {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
    margin-bottom: 6px;
  }

  .tab-text {
    font-size: 0.85rem;
    line-height: 1.2;
    margin-top: 6px;
  }
}

/* MÓVIL */
@media (max-width: 768px) {
  .evolution-section {
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .evolution-left {
    padding: 0 10px;
  }

  .evolution-section h2.title {
    font-size: 1.5rem !important;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .headline, .subtitle {
    font-size: 0.85rem;
    line-height: 1.15;
    margin-bottom: 6px;
  }

  .tab-buttons button {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
    margin-bottom: 4px;
  }

  .tab-text {
    font-size: 0.65rem;
    line-height: 1.1;
    margin-top: 4px;
  }
}










/* BLOQUE READY TO LAUNCH */
.ready-launch {
  text-align: center;
  margin: 60px 0 40px 0; /* separación superior e inferior */
}

.ready-launch .ready-text {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem; /* tamaño en línea con otros títulos */
  font-weight: 100;   /* antes estaba 00, ahora consistente */
  color: #000;
  line-height: 1.3;
}


.ready-launch .highlight-gold {
  color: #c29227; /* dorado destacado */
}

/* === BOTÓN READY TO LAUNCH === */
/* === BOTÓN READY TO LAUNCH AJUSTADO === */
.ready-launch-btn {
  display: inline-block;
  width: fit-content; /* ocupa solo el ancho del texto */
  margin: 30px auto 0 auto; /* centrado */
  padding: 0.75rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #c29227; /* dorado */
  border: 2px solid #c29227; /* borde dorado */
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap; /* evita que el texto se rompa */
  transition: all 0.3s ease;
}

.ready-launch-btn:hover {
  background-color: #c29227;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
}

/* ===== READY TO LAUNCH RESPONSIVE AJUSTADO ===== */
@media (max-width: 1024px) {
  .ready-launch {
    margin: 15px 0 20px 0; /* menos espacio arriba */
  }
  .ready-launch .ready-text {
    font-size: 1.7rem;
  }
  .ready-launch-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .ready-launch {
    margin: 10px 0 15px 0; /* aún menos espacio arriba */
  }
  .ready-launch .ready-text {
    font-size: 1.5rem;
  }
  .ready-launch-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}





















/* -------- FLYWHEEL - CSS ORIGINAL (CON ADICIONES DE CTA/ICONO) -------- */


/* ================= TIPOGRAFÍA UNIFORME ================= */

/* Títulos grandes */
h1,
.success-title,
.ready-launch .ready-text,
.evolution-section .title,
.flywheel-section h1,
.future-text h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;   /* mismo peso */
  font-size: 3rem;    /* tamaño uniforme */
  line-height: 1.3;
}

/* Subtítulos / encabezados secundarios */
h2,
h3,
.flywheel-text h3,
.evolution-left .headline,
.data-card h4,
.future-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;   /* mismo peso */
  font-size: 1.8rem;  /* tamaño uniforme */
  line-height: 1.4;
}

/* Textos descriptivos / párrafos importantes */
.flywheel-summary,
.principal,
.future-problem,
.data-card .value,
.data-card .detail,
.flywheel-text-derecha,
.evolution-left .subtitle,
.tab-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;   /* mismo peso */
  font-size: 1.1rem;  /* tamaño uniforme */
  line-height: 1.5;
}

.flywheel-section .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start; /* alinea arriba */
  justify-content: space-between;
 
}


.flywheel-section h1{
  font-size: 3.0rem;
}


.flywheel-area { 
  display: flex; 
  align-items: center; /* centra verticalmente el bloque */
  justify-content: space-between; 
  gap: 40px; 
  flex-wrap: wrap; 
  font-family: 'Poppins', sans-serif;
}

.flywheel-area.reverse { 
  flex-direction: row-reverse; /* invierte texto e imagen */
}

.flywheel-text {
  flex: 1 1 45%; /* ancho flexible para texto */
  display: flex;              
  flex-direction: column;     
  justify-content: center;    
  align-items: flex-start;    /* alinea texto al inicio de su contenedor */
  text-align: left;
  padding: 0;
  margin: 0;

  padding-left: 40px;  /* probá 8px, 10px o 12px */
  padding-right: 10px;
}

.flywheel-text h3 { 
  font-size: 1.8rem;
  margin-bottom: 15px; 
} 

.flywheel-text p { 
  font-size: 1.2rem; 
  line-height: 1.5;
  color: #111;
  text-align: justify;
  text-align-last: left;
  max-width: 600px;
} 

.flywheel-image { 
  flex: 1 1 45%; 
  display: flex; 
  justify-content: center; 
  align-items: center; /* centra verticalmente la imagen */
  min-width: 280px; 
} 

.flywheel-image img { 
  max-width: 90%; 
  height: auto; 
  border-radius: 12px; 
  box-shadow: none;
} 


.flywheel-summary { 
  margin-bottom: 40px;
  margin-top: 40px; 
  font-size: 1.1rem; 
  color: #000; 
  max-width: 830px; 
  margin-left: auto; 
  margin-right: auto; 
 
  justify-content: center;
  
}
.principal {
color: #c29227; 

}
.flywheel-text-derecha{
   font-size: 1.2rem; 
  line-height: 1.5;
  color: #111;
  text-align: justify;
  text-align-last: left;
  max-width: 600px;
}


/* -------- FLYWHEEL - RESPONSIVE MÓVIL/TABLET (TÍTULO Y MÁRGENES) -------- */

/* Tabletas y móviles */
@media (max-width: 1024px) {
  .flywheel-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .flywheel-section h1 {
    font-size: 2rem; /* reduce el título principal */
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
  }

  .flywheel-area {
    flex-direction: column;
    gap: 35px;
  }

  .flywheel-area.reverse {
    flex-direction: column;
  }

  .flywheel-text,
  .flywheel-text-derecha {
    flex: 1 1 100%;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    text-align: left;
  }

  .flywheel-text h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .flywheel-text p,
  .flywheel-text-derecha {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .flywheel-image {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .flywheel-image img {
    max-width: 90%;
    height: auto;
    display: block;
  }

  .flywheel-summary {
    font-size: 1rem;
    margin: 20px auto 30px auto;
    text-align: justify;
    max-width: 600px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Móviles más pequeños */
@media (max-width: 768px) {
  .flywheel-section h1 {
    font-size: 1.6rem; /* título aún más pequeño */
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .flywheel-text h3 {
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 18px;
  }

  .flywheel-text p,
  .flywheel-text-derecha,
  .flywheel-summary {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .flywheel-image img {
    max-width: 85%;
  }
}










/* ================= Success Section ================= */
.success-section {
  padding: 60px 60px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.success-title {
  font-size: 3rem;
  font-weight: 100;
  margin-bottom: 20px;
  color: #111;
}

.success-section .success-headline {
  font-size: 1.1rem;
  font-weight: 300;
  color: #000;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* ================= Swiper ================= */
.success-swiper {
  max-width: 1200px;
  width: 90%;
  height: 500px;       /* antes 400px, ahora más alto */
  margin: 0 auto;
  overflow: hidden; 
}

.swiper-slide {
  flex: 0 0 100%;
  height: 100%;        /* la altura sigue la del contenedor */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* mantiene proporción y ocupa todo */
  display: block;
}

.card-overlay {
  position: absolute;
  inset: 0;
  font-family: 'Poppins', sans-serif;
  z-index: 10;
  color: #000;
  display: inline-block;
}

.card-overlay .client-type,
.card-overlay .quote {
  color: white;
  z-index: 20;
 display: inline-block; /* hace que el fondo se ajuste solo al texto */
  background-color: rgba(0,0,0,0.4); /* fondo semitransparente */
  padding: 5px  10px ;
  border-radius: 5px;
  
}



/* Tipo de cliente arriba izquierda */
.client-type {
  position: absolute;
  top: 20px;
  left: 20px;
  font-weight: 500;
  font-size: 19px;
  text-align: left;
  display: inline-block !important;  /* Solo ocupa lo que mide el texto */
  width: auto !important;     
  /* 👇 ESTO ES LO IMPORTANTE */

  background-color: rgba(0,0,0,0.4);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

/* Quote abajo derecha */
.quote {
  position: absolute;
  bottom: 20px;
  right: 20px;
  max-width: 750px;
  font-size: 16px;
  font-weight: 00;
  line-height: 1.4;
  text-align: left;
  color: #000;
}




/* =================== RESPONSIVE =================== */

/* TABLET */
@media (max-width: 1024px) {
  .success-section {
    padding: 30px 40px 50px !important;
  }

  .success-title {
    font-size: 1.8rem;
    margin-bottom: 22px !important;
  }

  .success-section .success-headline {
    font-size: 0.9rem;
    max-width: 650px;
    margin-bottom: 35px;
  }

  .success-swiper {
    width: 95%;
    height: 380px;
  }

  .client-type {
    font-size: 15px;
    top: 15px;
    left: 15px;
  }

  .quote {
    font-size: 14px;
    bottom: 15px;
    right: 15px;
    max-width: 90%;
  }
}

/* MÓVIL */
@media (max-width: 768px) {
  .success-section {
    padding: 20px 20px 35px !important;
  }

  .success-title {
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
    line-height: 1.25;
  }

  .success-section .success-headline {
    font-size: 0.75rem;
    line-height: 1.35;
    margin: 0 auto 25px;
    max-width: 90%;
  }

  .success-swiper {
    width: 100%;
    height: 280px;
  }

  .client-type {
    font-size: 12px;
    top: 10px;
    left: 10px;
  }

  .quote {
    font-size: 11px;
    bottom: 10px;
    right: 10px;
    max-width: 90%;
  }
}






/* ================= FAQ SECTION ================= */
.faq-section {
    display: flex;
    width: 94%;          
    max-width: 1600px;   
    margin: 0 auto;
    gap: 150px;           
    padding: 160px 20px 180px;
    font-family: 'Poppins', sans-serif; /* tipografía uniforme */
    box-sizing: border-box;
}

/* Columna izquierda (Título + subtítulo) */
.faq-left {
    flex: 8;              
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.faq-left h2 {
    font-size: 3rem;       /* igual que success-title */
    font-weight: 100;      /* igual que success-title */
    margin-bottom: 18px;
    line-height: 1.1;
    margin-left: 20px;
    text-align: left;
}

.faq-tagline {
    font-size: 1.1rem;     /* igual que success-headline */
    font-weight: 300;      /* igual que success-headline */
    margin-bottom: 25px;
    margin-left: 30px;
}

/* Columna derecha (Preguntas) */
.faq-right {
    flex: 4;             
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #dee2e6;
    transform: translateY(40px);
    font-family: 'Poppins', sans-serif;
}

/* FAQ Items */
.faq-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.faq-item summary {
    font-weight: 500;         /* igual que otros títulos de bloques */
    font-size: 1.1rem;        /* un poco más grande para uniformidad */
    cursor: pointer;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 1rem;           /* igual que subtítulos principales */
    font-weight: 300;          /* uniforme con otros subtítulos */
    line-height: 1.6;
    color: #444;
    font-family: 'Poppins', sans-serif;
}

.faq-item[open] .faq-content {
    max-height: 500px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* ================= RESPONSIVE ================= */

/* TABLETS */
@media (max-width: 1024px) {
  .faq-section {
    flex-direction: column;
    padding: 120px 40px 100px;
    gap: 80px;
  }

  .faq-left {
    text-align: center;
  }

  .faq-left h2 {
    font-size: 2rem;
  }

  .faq-tagline {
    font-size: 1rem;
  }

  .faq-right {
    transform: translateY(0);
  }
}

/* MÓVILES */
@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
    padding: 100px 20px 80px;
    gap: 50px;
  }

  .faq-left {
    text-align: center;
  }

  .faq-left h2 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .faq-tagline {
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .faq-item summary {
    font-size: 1rem;
  }

  .faq-content {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}














.partners-section {
  width: 100%;
  background: #fff;
  padding: 120px 60px;
  text-align: center;
  position: relative;
}

.partners-title {
  font-family: 'Poppins', sans-serif;
   font-size: 3rem;       /* igual que success-title */
    font-weight: 100;      /* igual que success-title */
  color: #111;
  margin-bottom: 80px;
  letter-spacing: 0.5px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-radius: 20px;
  width: 240px;
  height: 160px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.partner-card img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
/* ================= PARTNERS SECTION RESPONSIVE ================= */


/* TABLETS */
@media (max-width: 1024px) {
  .partners-section {
    padding: 130px 40px 100px; /* sigue con espacio arriba */
  }

  .partners-title {
    font-size: 2.6rem; /* sigue destacado */
    margin-bottom: 60px;
  }

  .partners-grid {
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .partner-card {
    width: 200px;
    height: 130px;
  }

  .partner-card img {
    max-width: 120px;
    max-height: 70px;
  }
}

/* MÓVILES */
@media (max-width: 768px) {
  .partners-section {
    padding: 100px 25px 80px; /* más espacio arriba */
  }

  .partners-title {
    font-size: 2rem; /* más grande que antes */
    margin-bottom: 50px;
    line-height: 1.3;
  }

  .partners-grid {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card {
    width: 160px;
    height: 110px;
  }

  .partner-card img {
    max-width: 100px;
    max-height: 60px;
  }
}

/* EXTRA PEQUEÑOS (celulares muy chicos) */
@media (max-width: 480px) {
  .partners-section {
    padding: 90px 20px 60px;
  }

  .partners-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .partner-card {
    width: 100%;
    height: 100px;
  }

  .partner-card img {
    max-width: 90px;
  }
}





















.startups-title {
  margin-bottom: 200px;
  font-size: 3rem;
  font-weight: 100;
}

.startups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  align-items: start; /* 👈 importante: evita saltos verticales */
  justify-items: center;
  max-width: 1200px;
  margin: 20px auto 0 auto;
}

.startup-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fafafa;
  border-radius: 20px;
  width: 240px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
  min-height: 280px;
  position: relative; /* 👈 evita que el translate afecte el flujo del grid */
  overflow: hidden;   /* 👈 evita que al subir la imagen se "desplace" visualmente */
}

.startup-card img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.7s ease;
  margin-bottom: 12px;
  margin-top: 0;
  display: block;
}

/* 🔥 Arreglo: un solo hover, movimiento más suave */
.startup-card:hover img {
  transform: translateY(-20px) scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}

/* Texto oculto por defecto */
.startup-name {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-align: center;
  line-height: 1.3;
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

/* Mostrar el texto al hacer hover sobre la tarjeta */
.startup-card:hover .startup-name {
  opacity: 1;
}



/* Forzar altura y alineación uniforme de imágenes */
.startup-img-box {
  height: 90px; /* 👈 todas las imágenes quedan con el mismo alto visible */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden; /* evita saltos si alguna sube o baja al hover */
}

/* Las imágenes mantienen el mismo tamaño relativo */
.startup-img-box img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.7s ease;
  display: block;
}

/* Hover global, igual para todas */
.startup-card:hover .startup-img-box img {
  transform: translateY(-20px) scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}

/* Texto igual */
.startup-card:hover .startup-name {
  opacity: 1;
}

/* (Opcional) por si querés personalizar en el futuro */
.startup-card-1 img,
.startup-card-2 img,
.startup-card-3 img {
  /* mismas reglas, pero te queda listo por si una imagen requiere ajuste fino */
}



/* ================= Startups Section Responsive ================= */

/* Tablets */
@media (max-width: 1024px) {
  .startups-section {
    padding: 100px 40px;
  }

  .startups-title {
    font-size: 2.2rem;
    margin-bottom: 60px;
  }

  .startups-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
  }

  .startup-card {
    width: 100%;
    max-width: 220px;
    min-height: 260px;
    padding: 14px;
  }

  .startup-card img {
    max-width: 120px;
    max-height: 70px;
    margin-bottom: 10px;
  }

  .startup-name {
    font-size: 0.9rem;
  }
}

/* Móviles */
@media (max-width: 768px) {
  .startups-section {
    padding: 60px 20px;
  }

  .startups-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .startups-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .startup-card {
    width: 100%;
    min-height: auto;
    padding: 12px;
  }

  .startup-card img {
    max-width: 100px;
    max-height: 60px;
    margin-bottom: 8px;
  }

  .startup-name {
    font-size: 0.85rem;
    line-height: 1.3;
    opacity: 1;
    margin-top: 10px;
  }

  .startup-card:hover img {
    transform: none;
  }
}










.success-section {
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  color: #111;
  box-sizing: border-box;
}

/* Contenedor interno centrado */
.expertise-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  max-width: 1200px; /* ancho controlado para que quede simétrico */
  margin: 0 auto; /* centrado horizontal */
}

/* BLOQUE SUPERIOR */
.expertise-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.expertise-header h2 {
  font-size: 3rem;       /* igual que success-title */
  font-weight: 100;      /* igual que success-title */
  margin-bottom: 15px;
}

.expertise-header h3 {
  font-size: 1.rem;
  margin-bottom: 20px;
  color: #000;
}

.core-value {
  font-size: 1.6rem;
  color: #c29227;
  margin-top: 10px;
  line-height: 2;
}

.core-value span {
  margin: 0 6px;
  font-size: 1.9rem;
  line-height: 2;
}

.core-value .sep {
  color: #c29227;
  font-weight: 700;
  font-size: 1.9rem;
}

/* IZQUIERDA: TEXTO */
.expertise-left {
  flex: 1 1 50%;
  text-align: justify;
  padding: 1px 15px;
 
}
.expertise-left h3{
  font-size: 1.7rem;
  margin-bottom: 40px;
  color: #000;
}

.expertise-headline {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000;
}

.highlight {
  color: #c29227;
  font-weight: 700;
}

/* DERECHA: IMAGEN */
.expertise-right {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.expertise-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 10px 10px 10px rgba(0.1, 0.1, 0.1, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 30px 15px;
  margin-top: 50px;
}

.expertise-right img:hover {
  transform: scale(1.02);
  box-shadow: 12px 12px 20px rgba(0.1, 0.1, 0.1, 0.15);
}

/* === RESPONSIVE === */

/* TABLETS */
@media (max-width: 1024px) {
  .success-section {
    padding: 70px 0;
  }

  .expertise-body {
    gap: 40px;
    max-width: 95%;
  }

  .expertise-header h2 {
    font-size: 2.5rem;
  }

  .expertise-header h3 {
    font-size: 1.4rem;
  }
}

/* MÓVILES GRANDES */
@media (max-width: 767px) {
  .success-section {
    padding: 60px 0;
  }

  .expertise-body {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    max-width: 90%;
  }

  .expertise-left,
  .expertise-right {
    padding: 0;
  }

  .expertise-headline {
    font-size: 1rem;
    line-height: 1.7;
  }

  .expertise-right img {
    max-width: 90%;
    margin-top: 20px;
  }
}

/* MÓVILES PEQUEÑOS */
@media (max-width: 479px) {
  .success-section {
    padding: 50px 0;
  }

  .expertise-header h2 {
    font-size: 1.9rem;
  }

  .expertise-header h3 {
    font-size: 1.1rem;
  }

  .core-value {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .expertise-body {
    flex-direction: column;
    gap: 30px;
    max-width: 92%;
  }

  .expertise-headline {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .expertise-right img {
    max-width: 100%;
    border-radius: 15px;
  }
}






.site-footer {
  background: #000;
  color: #fff;
  padding: 60px;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  position: relative;
}

/* Contenedor principal */
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Oficinas desktop */
.footer-offices {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1.1rem;
}

.footer-offices span {
  position: relative;
  padding-left: 15px;
}

.footer-offices span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 600;
}

.footer-offices .highlight-country {
  font-weight: 700;
  color: #c29227;
}

/* Oficinas carrusel móvil */
.footer-offices-carousel {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
}

.carousel-track span {
  display: inline-block;
  color: #fff;
  font-weight: 500;
}

.carousel-track span.mexico {
  font-weight: 700;
  color: #c29227;
}

@keyframes scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Logo + contacto */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Logo más grande en desktop */
.footer-logo img {
  width: 390px;   /* antes 150px */
  height: auto;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a {
  color: #c29227;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Redes sociales */
.footer-mid {
  text-align: center;
}

.social-link {
  display: inline-block;
  color: #fff;
  margin: 0 8px;
  transition: transform 0.3s, color 0.3s;
  width: auto;
}

.social-link:hover {
  transform: scale(1.25);
  color: #00aaff;
}

/* Copyright */
.footer-bottom {
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}

/* RESPONSIVE */
/* ================== FOOTER RESPONSIVE ================== */

/* TABLETS */
@media (max-width: 1024px) {
  .footer-offices { 
    font-size: 1rem;      /* ligeramente más pequeño */
    gap: 15px;
  }

  .footer-logo img {
    width: 300px;         /* logo más pequeño que desktop */
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-contact {
    text-align: center;
    font-size: 0.9rem;
  }

  .social-link {
    margin: 0 6px;
  }
}

/* MÓVILES GRANDES */
@media (max-width: 768px) {
  .footer-offices { display: none; }
  .footer-offices-carousel { display: block; }

  .carousel-track span {
    font-size: 0.95rem; /* un poquito más pequeño */
    gap: 25px;
  }

  .footer-logo img {
    width: 250px;
  }

  .footer-contact {
    font-size: 0.85rem;
    gap: 5px;
  }

  .social-link {
    margin: 0 5px;
  }
}

/* MÓVILES PEQUEÑOS */
@media (max-width: 480px) {
  .footer-offices-carousel {
    gap: 20px;
  }

  .carousel-track span {
    font-size: 0.8rem;
  }

  .footer-logo img {
    width: 180px;
  }

  .footer-contact {
    font-size: 0.8rem;
    gap: 4px;
  }

  .social-link {
    margin: 0 4px;
    transform: scale(1);
  }
}







/* Botón de cerrar popup */
/* 🔹 Botón de cierre del popup — sin subrayado ni borde */
.form-popup .close-btn,
.form-popup .close-btn:link,
.form-popup .close-btn:visited,
.form-popup .close-btn:hover,
.form-popup .close-btn:focus,
.form-popup .close-btn:active {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none !important;
  border: none !important;
  color: #000 !important;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* 🔹 Hover dorado */
.form-popup .close-btn:hover {
  color: #c29227 !important;
  transform: scale(1.15);
}

/* 🔹 Si el botón es un enlace (<a>), elimina decoraciones del navegador */
.form-popup .close-btn::-moz-focus-inner {
  border: 0;
}
.close-btn {
  all: unset;          /* elimina estilos por defecto del botón */
  cursor: pointer;     
  font-size: 1.5rem;
  color: #212121;
  background: transparent;
  border: none;
  text-decoration: none; /* por si acaso */
  line-height: 1;         /* ajusta la altura */
}




























.alkimius-tagline {
  text-align: center;
  margin-top: 10px; /* antes 40px — lo sube */
  margin-bottom: 60px;
}

.tagline-top {
  font-size: 1.6rem;
  font-weight: 500;
  color: #4a4a4a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px; /* achica el espacio con el texto de abajo */
}

.tagline-bottom {
  font-size: 1.1rem;
  font-weight: 400;
  color: #6b7280;
  margin-top: 5px; /* lo acerca al de arriba */
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}







/* Bloque base con el difuminado negro */
.info-block {
  background: linear-gradient(to bottom, #ffffff 0%, #000000 15%, #000000 100%);
  color: #fff;
  padding: 180px 20px 100px;
  min-height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 800px;
}

/* Caja principal con el difuminado oscuro */
.info-block .text-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: rgba(0, 0, 0, 0.75);
  padding: 50px 60px;
  border-radius: 14px;
  max-width: 950px;
  width: 100%;
  text-align: left;
  z-index: 2;
  animation: fadeIn 1.2s ease-out;
}

/* --- NUEVO: versión invisible del bloque --- */
.info-block.transparent .text-box {
  background: transparent;       /* sin fondo negro */
  box-shadow: none;              /* sin sombra */
  border: none;                  /* sin borde */
  padding: 40px 60px;            /* mantiene alineación */
}

/* Línea blanca al costado */
.side-line {
  width: 4px;
  height: 0;
  background: #fff;
  animation: growLine 1.5s ease-out forwards;
}

/* Textos */
.text-content h2 {
  font-weight: 500;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.text-content h3 {
  font-weight: 500;
  font-size: 1.2rem;
  margin-top: 20px;
}

.text-content p {
  color: #ccc;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
}

/* Animaciones */
@keyframes growLine {
  from { height: 0; }
  to { height: 220px; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}








/* CONTENEDOR: centra todo */
.cover-text {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;   /* centra horizontalmente los elementos hijos */
  justify-content: center;
  gap: 0.5rem;           /* espacio entre logo y subtítulo (ajusta) */
  padding: 2rem 16px;    /* espacio arriba/abajo e interno */
  text-align: center;    /* centra texto en caso de que haya */
}

/* Asegura que las imágenes se comporten como bloques y se centren */
.cover-text img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

/* Tamaño y separación específicos */
.cover-logo img {
   margin-left: 80px;
  max-width: 700px;   /* cambia este valor hasta lograr el tamaño deseado */
  margin-bottom: 0.2rem;
  float: none !important; /* evita que flote por reglas viejas */
}

.cover-subtitle-img img {
  max-width: 320px;   /* tamaño de la frase */
  margin-top: 0.1rem;
  margin-bottom: 0.8rem;
}

/* Imagen grande de abajo que cubre el ancho */
.cover-background {
  width: 100%;
}
.cover-background img {
  width: 100%;
  max-width: 1200px;   /* opcional: limita demasiado ancho en pantallas gigantes */
  height: auto;
  display: block;
  margin: 1rem auto 0;  /* separación superior y centrado */
  border-radius: 8px;   /* opcional */
}

/* Media queries para móviles */
@media (max-width: 768px) {
  .cover-logo img { max-width: 300px; }
  .cover-subtitle-img img { max-width: 260px; }
  .cover-text { padding: 1.2rem 10px; gap: 0.35rem; }
}

















/* -------- HERO -------- */
.hero {
  padding: 80px 50px;
  margin-top: -40px; /* une un poco con la portada */
  background: #f8f9fa;
  text-align: center;
}


.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 50px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
  margin-bottom: 50px;
}


.point {
  max-width: 300px;
  text-align: center;
}

.point .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background: black;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #333;
}








/* --- ADICIONES PARA ICONO Y CTA --- */

/* Estilo para el ícono dentro del título */
.industry-icon {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;/* Tamaño ligeramente menor que el título */
    margin-right: 10px;
    vertical-align: middle;
}

/* Ajuste para el h3 para mejor alineación vertical del ícono */
.flywheel-text h3 {
    display: flex;
    align-items: center;
}

/* Estilo para el contenedor del CTA */
.cta-area {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    /* Usa el color de fondo de la sección para el borde superior */
    border-top: 3px solid #e9ecef; 
}

/* Estilo del botón CTA */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff; /* Un azul profesional */
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px; 
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}










/* -------- ABOUT -------- */
.about-alkimius {
  position: relative;
  height: 80vh; /* Ocupa toda la pantalla */
  background: url('img/camiones.webp');
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Alinea contenido a la izquierda */
  overflow: hidden;
}

.about-alkimius .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* burbuja semi-transparente */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* mantiene alineado a la izquierda */
  padding: 40px;
}

.about-text {
  background: rgba(0, 0, 0, 0.65);
  padding: 35px 45px;
  border-radius: 18px;
  max-width: 550px;
  color: #fff;
  z-index: 2;
  text-align: left;
  line-height: 1.6;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  animation: floatText 6s ease-in-out infinite;
}

.about-text h2 {
  font-size: 1.9rem; /* antes 2.5rem */
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.about-text p {
  font-size: 1rem; /* más chico y más legible */
  margin-bottom: 0;
  font-weight: 300;
  color: #e6e6e6;
}


/* Animación suave para que la burbuja se mueva ligeramente */
@keyframes floatText {
  0% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0px); }
}





.division-sections {
  padding: 80px 10%;
  background: #f8f9fa;
  text-align: center;
}

.division-sections h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.division-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch; /* Hace que todas las tarjetas tengan la misma altura */
}

.division-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 350px;
  display: flex; /* Flex para alinear contenido verticalmente */
  flex-direction: column;
}

.division-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.division-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  flex-grow: 1; /* Ocupa espacio extra para igualar alturas */
}

.division-card ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
  flex-grow: 1; /* Igual que párrafos para alinear */
}

.division-card .btn {
  display: inline-block;
  margin-top: auto; /* Mantiene los botones alineados al final */
  padding: 10px 20px;
  background: #111;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.division-card .btn:hover {
  background: #333;
}






/* -------- SECTIONS -------- */
section {
  padding: 80px 50px;
}

h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.3rem;
  text-transform: uppercase;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #222;
}

.card p {
  font-size: 1rem;
  color: #666;
}

/* -------- FORM -------- */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.contact input, .contact textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  padding: 15px;
  background: #00aaff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.contact button:hover {
  background: #0088cc;
}



























 .offices {
  text-align: center;
  margin: 10px auto;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  max-width: 800px; /* opcional, para que no se vea tan largo en pantallas grandes */
}


.site-footer {
  background: #000; /* fondo negro sólido */
  color: #fff !important; /* texto blanco forzado */
  padding: 100px 60px;
  text-align: center;
  position: relative;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  color: #fff !important;
}

.footer-top,
.footer-mid,
.footer-bottom,
.core-values,
.offices,
.copyright {
  color: #fff !important;
}

.core-values strong {
  font-weight: 600;
  margin-right: 10px;
  color: #fff !important;
}

.core-values span {
  margin: 0 5px;
  opacity: 1;
  color: #fff !important;
}

.offices {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-size: 1rem;
}

.icon-loc path {
  fill: #fff;
}

.footer-mid {
  margin-top: 20px;
}

.social-link {
  display: inline-block;
  color: #fff !important;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  color: #00aaff !important;
  transform: scale(1.2);
}

.footer-bottom {
  font-size: 0.9rem;
  color: #fff !important;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
































