/* ============================================================
   Booh! Food v3 - Estilos principales
   Autor: Daniel Bueno Gil
   ============================================================ */

   /* === FUENTES E ICONOS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.0.0/fonts/remixicon.css');


/* ---------- VARIABLES ---------- */
:root {
  --booh-blue: #00afd8;
  --booh-dark: #0e1a23;
  --booh-light: #f7f9fb;
  --booh-gray: #6b7a89;
  --booh-radius: 14px;
  --transition: all 0.3s ease;
  --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ---------- RESETEO ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--booh-dark);
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================
   CABECERA
   ============================================================ */

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5e9ec;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  max-width: 1400px;
  margin: auto;
}

.navbar img.logo {
  height: 40px;
  transition: var(--transition);
}

.navbar img.logo:hover {
  transform: scale(1.05);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar ul li a {
  color: var(--booh-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.navbar ul li a:hover {
  color: var(--booh-blue);
}

/* ---------- BOTÓN HAMBURGUESA ---------- */
.menu-toggle {
  
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--booh-dark);
  border-radius: 3px;
}

/* ============================================================
   HERO DINÁMICO
   ============================================================ */

.hero {
  margin-top: 90px; /* compensación del header fijo */
  height: 320px;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
}

/* ============================================================
   SECCIONES
   ============================================================ */

.section {
  padding: 100px 6%;
  max-width: 1400px;
  margin: auto;
}

.section h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--booh-dark);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: var(--booh-radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--booh-dark);
}

.card-content p {
  color: var(--booh-gray);
  font-size: 0.95rem;
}

/* ============================================================
   CTA
   ============================================================ */

.cta {
  background-color: var(--booh-blue);
  color: #fff;
  text-align: center;
  padding: 80px 6%;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta a.btn {
  background: #fff;
  color: var(--booh-blue);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: var(--booh-radius);
  font-weight: 600;
  transition: var(--transition);
}

.cta a.btn:hover {
  background: var(--booh-dark);
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--booh-dark);
  color: #fff;
  padding: 50px 6%;
  text-align: center;
}

footer p {
  font-size: 0.9rem;
  color: #ccc;
}

/* ============================================================
   ANIMACIONES
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 6%;
    width: 220px;
    border-radius: var(--booh-radius);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  .navbar ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    height: 70vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* ======== FIX VISUAL: HEADER + HERO ======== */

/* Asegura altura del header */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* fuerza una altura reconocible */
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e9ec;
}

/* Corrige el desplazamiento del hero */
.hero {
  margin-top: 80px; /* mismo valor que el header */
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Capa de oscurecimiento */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: auto;
}

/* Ajustes responsive */
@media (max-width: 960px) {
  #main-header {
    height: 70px;
  }

  .hero {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* ===== ICONOS / PARTNERS ===== */
.cards .card img {
  height: 230px;
  object-fit: cover;
  width: 100%;
  border-bottom: 1px solid #eee;
}

.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.partners-logos img {
  height: 40px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.partners-logos img:hover {
  opacity: 1;
}

/* ===== BOTONES ===== */
.btn-hero, .btn {
  display: inline-block;
  background: var(--booh-blue);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--booh-radius);
  margin-top: 20px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-hero:hover, .btn:hover {
  background: var(--booh-dark);
}
/* ===== HERO CLARO ===== */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  margin-top: 90px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.10); /* menos oscuro */
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}

/* ===== BOTONES ===== */
.btn-hero, .btn, .btn-small {
  display: inline-block;
  background: var(--booh-blue);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--booh-radius);
  margin-top: 18px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-hero:hover, .btn:hover, .btn-small:hover {
  background: var(--booh-dark);
}

/* ===== TARJETAS CIUDADES ===== */
.cards .card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}
.card-content {
  padding: 22px;
  text-align: left;
}
.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.card-content p {
  color: var(--booh-gray);
  font-size: 0.95rem;
  line-height: 1.4;
}
.card-content p strong {
  color: var(--booh-dark);
}
.cards .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== FIX HERO TEXT VISIBILITY =====
/* ===== HERO PRINCIPAL ===== */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  margin-top: 90px; /* para no quedar tapado por el header */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-home.jpg') center center / cover no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45));
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3; /* siempre por encima de la imagen y el overlay */
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.hero-inner h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
}

.hero-inner p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.btn-hero {
  display: inline-block;
  background-color: #00afd8;
  color: #fff;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-hero:hover {
  background-color: #0089a9;
}

@media (max-width: 960px) {
  .hero {
    height: 75vh;
    margin-top: 70px;
  }
  .hero-inner h1 {
    font-size: 2.3rem;
  }
  .hero-inner p {
    font-size: 1rem;
  }
}

@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  background: url('../img/hero-home.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  padding-top: 60px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn-hero {
  background: #00afd8;
  padding: 14px 36px;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
}

/* ICON GRIDS */
.icon-grid, .icon-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}
.icon-grid i, .icon-steps i {
  font-size: 2.2rem;
  color: #00afd8;
  margin-bottom: 10px;
}
.icon-grid p, .icon-steps h4 {
  margin: 0;
  font-weight: 500;
}

/* SECCIONES */
.section {
  padding: 90px 20px;
  text-align: center;
}
.section.light { background: #f8f9fa; }
.section.dark {
  background: #002934;
  color: #fff;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  
}
.section .highlight {
  font-size: 1.3rem;
  font-weight: 600;
  color: #00afd8;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.cards .card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
	padding: 20px;
}
.cards .card:hover {
  transform: translateY(-5px);
}
.cards .card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cards .card-content {
  padding: 20px;
}
.cards .card h3 {
  color: #00afd8;
  margin-bottom: 10px;
}

/* CTA */
.cta {
  text-align: center;
  background: #00afd8;
  color: #fff;
  padding: 80px 20px;
}
.cta .btn {
  display: inline-block;
  background: #fff;
  color: #00afd8;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* ICONS */
.icon {
  font-size: 3rem;
  color: #00afd8;
  margin-bottom: 10px;
}





/* CTA */
.cta {
  text-align: center;
  background: #00afd8;
  color: #fff;
  padding: 80px 20px;
}
.cta .btn {
  display: inline-block;
  background: #fff;
  color: #00afd8;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.cta .btn:hover {
  background: #e0f6fa;
}

/* SMALLPRINT */
.smallprint {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  margin-top: 15px;
}

/* Quita el espacio entre el header y el hero */
header {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Hero sin separación superior */
.hero {
  margin-top: 0;
  padding-top: 0;
}

/* Ajuste interno del contenido del hero */
.hero-inner {
  padding-top: 0;
  margin-top: 0;
}







/* Menú principal (desktop) */
#booh-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  transition: right 0.35s ease;
}

#booh-nav .menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

#booh-nav .menu li a {
  color: #0F172A;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

#booh-nav .menu li a:hover {
  color: #00AFD8;
}

/* Estilos móviles */
@media (max-width: 992px) {
 

 

  /* Bloquea scroll cuando el menú está abierto */
  .no-scroll {
    overflow: hidden;
  }
}


@media (max-width: 992px) {
  #booh-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    box-shadow: -5px 0 18px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    z-index: 9998;
  }

  #booh-nav.is-open {
    right: 0;
  }

  .no-scroll {
    overflow: hidden;
  }
}

/* ============================
   MENÚ MÓVIL — CORREGIDO
============================ */



/* Icono hamburguesa */


/* Estado activo (aspa) */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Versión desktop */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
  .nav {
    display: block;
    position: static;
    height: auto;
    background: transparent;
    transform: none;
    padding: 0;
  }
  .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
  }
  .menu li {
    margin: 0;
  }
  .menu a {
    color: #0F172A;
  }
}


/* ====== MENÚ MÓVIL — FIX DEFINITIVO ====== */

/* Panel deslizante */
#booh-nav{
  position: fixed;
  top: 64px;              /* ajusta a la altura real del header */
  right: -100%;
  width: 78%;
  max-width: 420px;
  height: calc(100vh - 64px);
  background: #ffffff;
  box-shadow: -6px 0 24px rgba(0,0,0,.18);
  z-index: 9999;
  overflow-y: auto;
  transition: right .35s ease;
  padding: 24px 18px;
}

/* Estado abierto */
#booh-nav.open{ right: 0; }

/* LISTA del menú (forzado para evitar herencias antiguas) */
#booh-nav .menu{
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#booh-nav .menu li{
  display: block !important;
  margin: 10px 0 !important;
}

#booh-nav .menu a{
  display: block !important;
  padding: 12px 10px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0F172A !important;
  text-decoration: none !important;
  border-radius: 8px !important;
}

#booh-nav .menu a:hover{
  background: #f2fbfe !important;
  color: #00AFD8 !important;
}

/* Botón hamburguesa (por si alguna regla lo oculta) */
#booh-toggle{
  display:flex; flex-direction:column; justify-content:space-between;
  width:30px; height:22px; background:transparent; border:0; cursor:pointer;
  position:relative; z-index:10000;
}
#booh-toggle span{height:3px; width:100%; background:#00AFD8; border-radius:2px; transition:all .3s;}
#booh-toggle.active span:nth-child(1){transform:translateY(9px) rotate(45deg)}
#booh-toggle.active span:nth-child(2){opacity:0}
#booh-toggle.active span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}

/* Cuerpo sin scroll cuando el menú está abierto */
.no-scroll{ overflow:hidden; }

/* Escritorio: menú normal */
@media (min-width:1024px){
  #booh-nav{ position:static; right:auto; width:auto; height:auto; box-shadow:none; padding:0; overflow:visible; }
  #booh-nav.open{ right:auto; }
  #booh-toggle{ display:none; }
  #booh-nav .menu{ display:flex !important; gap:2rem; }
  #booh-nav .menu li{ margin:0 !important; }
  #booh-nav .menu a{ padding:0 !important; font-size:16px !important; font-weight:600 !important; background:transparent !important; }
}



/* ===== FIX BOTÓN MENÚ MÓVIL ===== */

.header {
  position: relative;
  z-index: 1000;
  background: #fff; /* o transparente si prefieres */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

/* Contenedor del logo */
.header .logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

/* Botón hamburguesa */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  width: 30px;
  z-index: 10000;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #00AFD8;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Efecto aspa cuando se activa */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Solo visible en móvil */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}


/* ========== HAMBURGUESA - FIX FINAL ========== */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  width: 30px;
  z-index: 10000;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #00AFD8; /* Azul Booh! */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animación al abrir */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Ocultar botón en escritorio */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* =============================
   BOOH! SUBSCRIPTION PAGE
   ============================= */

/* HERO */
.hero-subscription {
  position: relative;
  width: 100%;
  height: 65vh;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('../img/hero-subscription.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-subscription h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subscription p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* INTRO */
.intro {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.intro h2 {
  color: #0F172A;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.intro p {
  color: #444;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* BENEFITS */
.benefits {
  background: #F7FAFC;
  padding: 4rem 2rem;
}

.benefits .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  text-align: center;
}

.benefit {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.benefit:hover {
  transform: translateY(-6px);
}

.benefit i {
  font-size: 2.2rem;
  color: #00AFD8;
  margin-bottom: 1rem;
}

.benefit h3 {
  color: #0F172A;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.benefit p {
  color: #444;
  line-height: 1.5;
}

/* REVOLUT BLOCK */
.revolut-block {
  background: #fff;
  padding: 6rem 2rem;
}

.revolut-block .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .revolut-block .container {
    flex-direction: row;
  }
}

.revolut-text {
  flex: 1;
  max-width: 600px;
}

.revolut-text h2 {
  font-size: 2rem;
  color: #0F172A;
  margin-bottom: 1rem;
}

.revolut-text ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.revolut-text ul li::before {
  content: "✓";
  color: #00AFD8;
  margin-right: 8px;
}

.revolut-text ul li {
  margin: 0.5rem 0;
  color: #444;
}

.revolut-img {
  flex: 1;
  text-align: center;
}

.revolut-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* STEPS */
.steps {
  background: #F7FAFC;
  padding: 5rem 2rem;
  text-align: center;
}

.steps .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.step {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.step-num {
  background: #00AFD8;
  color: #fff;
  font-weight: bold;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* CTA FINAL */
.cta {
  background: #00AFD8;
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background: #fff;
  color: #00AFD8;
  font-weight: 700;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta .btn-primary:hover {
  background: #e6f9ff;
}

/* GLOBAL ADAPTACIONES */
@media (max-width: 768px) {
  .hero-subscription {
    height: 50vh;
  }

  .hero-subscription h1 {
    font-size: 2rem;
  }
}

/* ==============================
   BOOH! SERVICIOS - v2
   ============================== */

/* CONTENEDOR GENERAL */
.services {
  background: #ffffff;
  padding: 6rem 2.5rem;
  text-align: center;
}

.services h1,
.services h2 {
  color: #0F172A;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
}

.services p {
  color: #4B5563;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 3rem;
}

/* GRID PRINCIPAL */
.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

/* TARJETA DE SERVICIO */
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 2.8rem 2.2rem;
  transition: all 0.3s ease;
  border-top: 5px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  border-top: 5px solid #00AFD8;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.service-card i {
  font-size: 2.6rem;
  color: #00AFD8;
  margin-bottom: 1.3rem;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #0F172A;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 0 0.5rem;
}

/* BLOQUE DE VENTAJAS */
.advantages {
  background: #F7FAFC;
  padding: 6rem 2.5rem;
  text-align: center;
}

.advantages h2 {
  font-size: 2.1rem;
  color: #0F172A;
  margin-bottom: 2.5rem;
}

.advantages .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.advantage {
  background: #fff;
  border-radius: 18px;
  padding: 2.6rem 2rem;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.advantage:hover {
  transform: translateY(-5px);
}

.advantage i {
  color: #00AFD8;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.advantage h3 {
  color: #0F172A;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.advantage p {
  color: #4B5563;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 0.3rem;
}

/* BLOQUE CTA */
.services-cta {
  background: linear-gradient(90deg, #00AFD8, #009AC2);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.services-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.services-cta p {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-cta a {
  background: #fff;
  color: #00AFD8;
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
}

.services-cta a:hover {
  background: #E6F9FF;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services {
    padding: 4rem 1.5rem;
  }

  .service-card {
    padding: 2.2rem 1.6rem;
  }

  .advantages {
    padding: 4rem 1.5rem;
  }

  .services-cta {
    padding: 4rem 1.5rem;
  }

  .services h1 {
    font-size: 1.8rem;
  }
}

/* ==============================
   BOOH! TARIFAS - RESPONSIVE
   ============================== */

.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 3rem auto;
  max-width: 1100px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  padding: 1.5rem;
}

/* Tabla escritorio */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  color: #0F172A;
}

thead {
  background: #00AFD8;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

thead th {
  padding: 1rem 0.8rem;
  text-align: center;
  font-weight: 700;
}

tbody tr {
  border-bottom: 1px solid #E5E7EB;
  transition: background-color 0.25s ease;
}

tbody tr:nth-child(even) {
  background-color: #F9FAFB;
}

tbody tr:hover {
  background-color: #E6F9FF;
}

td {
  padding: 1rem 0.8rem;
  text-align: center;
}

td:first-child {
  font-weight: 600;
  text-align: left;
}

.highlight {
  font-weight: 700;
  color: #00AFD8;
}

/* === ETIQUETAS === */
.badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
.badge.blue { background: #00AFD8; }
.badge.gray { background: #94A3B8; }
.badge.green { background: #16A34A; }
.badge.red { background: #DC2626; }

/* =============================
   VERSIÓN MÓVIL - TARJETAS
   ============================= */
@media (max-width: 768px) {
  .table-container {
    padding: 1rem;
    background: transparent;
    box-shadow: none;
  }

  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead {
    display: none;
  }

  tbody tr {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
  }

  tbody td {
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    font-size: 0.95rem;
  }

  tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #0F172A;
    text-transform: capitalize;
  }

  tbody td:first-child {
    font-size: 1.1rem;
    color: #00AFD8;
    font-weight: 700;
    text-align: left;
    display: block;
    padding-bottom: 0.6rem;
  }

  tbody td:first-child::before {
    content: none;
  }
}

/* ==== Tarifas v2 ==== */

.hero-tarifas {
  background: linear-gradient(135deg, #00afd8, #007fa3);
  color: white;
  text-align: center;
  padding: 5rem 1rem 3rem;
}

.selector-ciudades {
  text-align: center;
  margin: 2rem 0;
}
.selector-ciudades .city-btn {
  background: #f0f4f8;
  border: 2px solid #00afd8;
  color: #0f172a;
  padding: 0.6rem 1.4rem;
  margin: 0.4rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.selector-ciudades .city-btn:hover {
  background: #00afd8;
  color: white;
}
.selector-ciudades .city-btn.active {
  background: #00afd8;
  color: white;
}

.tabla-tarifas {
  overflow-x: auto;
  padding: 1rem;
}
.tabla-tarifas table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.tabla-tarifas th {
  background: #00afd8;
  color: white;
  padding: 1rem;
  font-weight: 600;
}
.tabla-tarifas td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}
@media (max-width: 768px) {
  .tabla-tarifas table, .tabla-tarifas thead, .tabla-tarifas tbody, .tabla-tarifas th, .tabla-tarifas td, .tabla-tarifas tr {
    display: block;
  }
  .tabla-tarifas tr {
    margin-bottom: 1.2rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  }
  .tabla-tarifas td {
    padding: 0.8rem 1rem;
    text-align: right;
    position: relative;
  }
  .tabla-tarifas td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    color: #555;
    font-weight: 600;
    text-transform: capitalize;
  }
}

/* ===== FIX BOTONES CIUDADES ===== */
.city-selector,
.section#selector,
.selector-ciudades {
  position: relative;
  z-index: 10;
}

.city-btn {
  background: #f1f5f9 !important;   /* gris claro visible */
  color: #0f172a !important;        /* texto oscuro */
  border: 2px solid #00afd8 !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.3rem;
  margin: 0.4rem;
  display: inline-block;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  opacity: 1 !important;
  visibility: visible !important;
}

.city-btn:hover,
.city-btn.active {
  background: #00afd8 !important;
  color: #fff !important;
  border-color: #00afd8 !important;
}

/* Si el tema usa AOS o animaciones ocultando */
[data-aos],
[data-aos="fade-up"] {
  opacity: 1 !important;
  transform: none !important;
}

section, .about-stats div, .hero-img {    opacity: 1}

/* =====================================================
   HERO SECTIONS — CABECERAS DE PÁGINAS
   ===================================================== */

.hero-sections {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background-color: #0f172a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Capa oscura para mejorar el contraste del texto */
.hero-sections::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* Contenido centrado */
.hero-sections .hero-content {
  position: relative;
  z-index: 1;
  padding: 1rem 1.5rem;
  max-width: 900px;
}

.hero-sections h1 {
  font-size: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  line-height: 1.2;
	color:white
}

.hero-sections p {
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Línea decorativa Booh! */
.hero-sections .hero-divider {
  width: 80px;
  height: 4px;
  background: #00afd8;
  margin: 1rem auto;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-sections {
    height: 45vh;
    min-height: 260px;
  }

  .hero-sections h1 {
    font-size: 1.9rem;
  }

  .hero-sections p {
    font-size: 1rem;
  }
}

/* =====================================================
   LOCALIZACIONES — SECCIONES Y TARJETAS DE CIUDAD
   ===================================================== */

.localizaciones {
  background: #fff;
  color: #0f172a;
  padding: 4rem 1.5rem 6rem;
  text-align: center;
}

.localizaciones h1,
.localizaciones h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.localizaciones .subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

/* GRID PRINCIPAL */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* TARJETA DE CIUDAD */
.city-card {
   background: #fff;
  border-radius: var(--booh-radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.city-card:hover {
  transform: translateY(-6px);
}

.city-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* =====================================================
   INVERSORES — SECCIÓN CORPORATIVA / INVESTOR PAGE
   ===================================================== */

/* ===== HERO PRINCIPAL ===== */
.inversores-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: #0f172a;
  background-size: cover;
  background-position: center;
}

.inversores-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.inversores-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 1rem;
}

.inversores-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.inversores-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.inversores-hero .hero-divider {
  width: 80px;
  height: 4px;
  background: #00afd8;
  margin: 1.2rem auto;
  border-radius: 4px;
}

/* ===== BLOQUE VALOR ===== */
.inversores-intro {
  background: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
  color: #0f172a;
}

.inversores-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.inversores-intro p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===== MÉTRICAS / CIFRAS CLAVE ===== */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.metric-box {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem 1rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.metric-value {
  font-size: 2.4rem;
  font-weight: 800;
  color: #00afd8;
  margin-bottom: 0.3rem;
}

.metric-label {
  font-size: 1rem;
  color: #64748b;
}

/* ===== BLOQUES DE VENTAJA ===== */
.inversores-benefits {
  background: #f1f5f9;
  padding: 4rem 1.5rem;
  text-align: center;
}

.inversores-benefits h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #0f172a;
  font-weight: 800;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-item {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.4rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-6px);
}

.benefit-item i {
  font-size: 2rem;
  color: #00afd8;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.benefit-item p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== CTA FINAL ===== */
.inversores-cta {
  text-align: center;
  background: linear-gradient(135deg, #00afd8, #007fa3);
  color: #fff;
  padding: 4rem 1.5rem;
}

.inversores-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.inversores-cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.inversores-cta .btn-primary {
  background: #fff;
  color: #00afd8;
  padding: 0.8rem 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.inversores-cta .btn-primary:hover {
  background: #0f172a;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .inversores-hero h1 { font-size: 2rem; }
  .inversores-intro h2,
  .inversores-benefits h2,
  .inversores-cta h2 { font-size: 1.7rem; }
  .metric-value { font-size: 2rem; }
}

/* =====================================================
   CIFRAS CLAVE — NUEVA VERSIÓN PREMIUM
   ===================================================== */

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.metric-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.2rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.metric-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00afd8, #007fa3);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.metric-box:hover::before {
  opacity: 0.08;
}

.metric-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

/* Icono superior */
.metric-box i {
  font-size: 2.5rem;
  color: #00afd8;
  margin-bottom: 1.2rem;
  transition: color 0.3s ease;
  z-index: 1;
  position: relative;
}

.metric-box:hover i {
  color: #007fa3;
}

/* Valor principal */
.metric-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.3rem;
  z-index: 1;
  position: relative;
  line-height: 1.1;
}

/* Etiqueta */
.metric-label {
  font-size: 1rem;
  color: #64748b;
  z-index: 1;
  position: relative;
}

/* Efecto de animación al cargar */
.metric-box {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.metric-box:nth-child(1) { animation-delay: 0.1s; }
.metric-box:nth-child(2) { animation-delay: 0.25s; }
.metric-box:nth-child(3) { animation-delay: 0.4s; }
.metric-box:nth-child(4) { animation-delay: 0.55s; }

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

/* Responsive */
@media (max-width: 768px) {
  .metric-box {
    padding: 1.8rem 1rem;
  }

  .metric-value {
    font-size: 2rem;
  }

  .metric-box i {
    font-size: 2rem;
  }
}

/* =====================================================
   PLAN DE EXPANSIÓN — SECCIÓN ESTRATÉGICA
   ===================================================== */

.plan-expansion {
  background: #f8fafc;
  color: #0f172a;
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.plan-expansion h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.plan-expansion .subtitle {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* ===== TIMELINE (EJE HORIZONTAL) ===== */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 2rem 0 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00afd8 0%, #007fa3 100%);
  transform: translateY(-50%);
  z-index: 0;
}

/* ===== HITOS ===== */
.timeline-item {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  padding: 1.8rem 1.2rem;
  width: 220px;
  min-height: 200px;
  text-align: left;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 0px;
  border-radius: 50%;
  background: #00afd8;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.timeline-year {
  font-size: 1.4rem;
  font-weight: 800;
  color: #00afd8;
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

/* ===== ANIMACIÓN DE ENTRADA ===== */
.timeline-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.25s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }
.timeline-item:nth-child(4) { animation-delay: 0.55s; }
.timeline-item:nth-child(5) { animation-delay: 0.7s; }

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

/* ===== CTA FINAL ===== */
.plan-cta {
  margin-top: 4rem;
  text-align: center;
}

.plan-cta p {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.plan-cta .btn-primary {
  background: #00afd8;
  color: #fff;
  padding: 0.9rem 2rem;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-cta .btn-primary:hover {
  background: #0f172a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline::before {
    width: 3px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .timeline-item {
    width: 90%;
    text-align: center;
    margin-bottom: 2rem;
  }

  .timeline-item::before {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =====================================================
   CONTACTO — FORMULARIO Y DISEÑO
   ===================================================== */

.contact-section {
  background: #fff;
  padding: 4rem 1.5rem 5rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.contact-section .subtitle {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.8px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  color: #0f172a;
  background: #f9fafb;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00afd8;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,175,216,0.1);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-footer {
  text-align: center;
  margin-top: 2rem;
}

.btn-primary {
  background: #00afd8;
  color: #fff;
  padding: 0.9rem 2rem;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0f172a;
}

.privacy {
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* INFORMACIÓN FINAL */
.contact-info {
  background: #f1f5f9;
  padding: 3rem 1.5rem;
  text-align: center;
}

.contact-info h3 {
  font-size: 1.6rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-info a {
  color: #00afd8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #0f172a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 1.7rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary {
    width: 100%;
  }
}

/* ===== Ajustes de espaciado para secciones (Tarifas y similares) ===== */
.section,
.table-section {
  padding-top: 20px;     /* antes probablemente tenías 6rem o más */
  padding-bottom: 20px;  /* reducido el margen inferior */
  margin-bottom: 30px;   /* menos separación con la siguiente */
}

/* Subtítulos o textos dentro de las secciones */
.section h1,
.section h2,
.table-section h1,
.table-section h2 {
  margin-bottom: 1rem;   /* más compactos */
}

.section p,
.table-section p {
  margin-bottom: 1.5rem;
}

/* Opcional: mejora el look en móvil */
@media (max-width: 768px) {
  .section,
  .table-section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
}


.notranslate * {
  translate: no !important;
}