/* ===========================================
   0. VARIABLES BOOH FINANCE
=========================================== */

:root {
  --booh-blue: #00AFD8;
  --accent: #28E1FF;
  --bg: #05080E;
  --bg-soft: #0B1018;
  --text: #E6F1FA;
  --text-muted: #8AA0B4;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --transition: 0.25s ease;
}

/* ===========================================
   1. RESET
=========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===========================================
   2. TIPOGRAFÍA
=========================================== */
h1, h2, h3, h4 {
  font-weight: 700;
}

h1 {
  background: linear-gradient(90deg, #00AFD8, #28E1FF);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-content h1 {
  background: none !important;
  color: #fff !important;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================================
   3. BOTONES
=========================================== */
.btn-primary {
  background: var(--booh-blue);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  color: #fff;
  display: inline-block;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-login {
  background: var(--booh-blue);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 600;
  transition: .25s;
}

.btn-login:hover {
  background: var(--accent);
}

/* ===========================================
   4. HEADER — DESKTOP + MOBILE
=========================================== */

header {
  background: linear-gradient(145deg, #0A0F1A, #0F1827);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.navbar .logo {
  height: 95px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  font-weight: 500;
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

/* ===========================================
   MOBILE NAVBAR — SLIDE DOWN 80%
=========================================== */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  display: block;
  margin: 6px 0;
  transition: .3s;
}

@media(max-width: 900px) {

  .menu-toggle {
    display: block;
    z-index: 10001;
  }

  .nav-links {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 80vh;
    background: rgba(0, 20, 35, 0.92);
    backdrop-filter: blur(8px);
    flex-direction: column;
    padding: 40px 25px;
    gap: 22px;
    transition: top .35s ease;
    z-index: 10000;
    display: flex;
  }

  .nav-links.open {
    top: 0;
  }

  body.no-scroll {
    overflow: hidden;
  }

  .navbar .logo {
    height: 60px;
  }
}


/* ===========================================
   5. HERO — HOME
=========================================== */

.hero {
  position: relative;
  width: 100%;
  height: 650px; /* igual que IA Pricing */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  /* azul revisado */
  filter: brightness(0.80) saturate(1.20) hue-rotate(-10deg);
  opacity: 0.95;

  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
      180deg,
      rgba(0, 55, 95, 0.45) 0%,
      rgba(0, 45, 80, 0.55) 50%,
      rgba(0, 35, 65, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  max-width: 750px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* MOBILE HOME HERO */
@media(max-width: 768px) {
  .hero {
    height: 580px;
  }

  .hero-img {
    height: 115%;
    object-position: center top;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }
}


/* =====================================
   CÓMO FUNCIONA
   ===================================== */

/* =====================================
   SECCIÓN: CÓMO FUNCIONA
   ===================================== */

/* =====================================
   SECCIÓN: CÓMO FUNCIONA (NÚMEROS)
   ===================================== */

#how {
  padding-top: 70px;
  padding-bottom: 70px;
}

#how h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 45px;
}

/* GRID */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  padding-left: 20px;
  padding-right: 20px;
}

/* CARD CON TRANSPARENCIA */
.step-card {
  background: rgba(0, 175, 216, 0.12);
  border: 1px solid rgba(0, 175, 216, 0.22);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* HOVER */
.step-card:hover {
  background: rgba(0, 175, 216, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 175, 216, 0.25);
}

/* NÚMERO */
.step-number {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  border: 2px solid rgba(0, 175, 216, 0.8);
  color: #00AFD8;
  font-size: 1.7rem;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1; /* evita desalineado vertical */
  text-align: center;

  backdrop-filter: blur(6px);
}


/* TITULO */
.step-card h3 {
  color: var(--booh-blue);
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* TEXTO */
.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* RESPONSIVE */
@media(max-width: 1000px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 700px) {
  .steps {
    grid-template-columns: 1fr;
  }
}






/* =====================================
   VENTAJAS
   ===================================== */

/* ======================================
   VENTAJAS ESTILO FINTECH PREMIUM
   ====================================== */

/* ======================================
   VENTAJAS — CARDS GLASS AZULES FINTECH
   ====================================== */

#benefits {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

#benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 45px;
}

/* GRID */
.benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding-left: 20px;
  padding-right: 20px;
}

/* CARD GLASS-BLUE (TRANSPARENTE) */
.benefit-card {
  background: rgba(0, 175, 216, 0.38);          /* azul booh con transparencia */
  border: 1px solid rgba(0, 175, 216, 0.25);     /* borde suave */
  backdrop-filter: blur(14px);                   /* efecto glass premium */
  border-radius: 18px;
  padding: 35px 25px;
  color: #fff;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* HOVER */
.benefit-card:hover {
  background: rgba(0, 175, 216, 0.58);          /* un poco más visible */
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 175, 216, 0.35);
}

/* ICONOS BLANCOS */
.benefit-icon-white {
  margin-bottom: 15px;
  opacity: 0.95;
  transition: opacity .25s ease;
}

.benefit-card:hover .benefit-icon-white {
  opacity: 1;
}

/* TITULOS */
.benefit-card h3 {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

/* TEXTO */
.benefit-card p {
  margin: 0;
  color: #e8faff;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .benefits-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .benefits-cards {
    grid-template-columns: 1fr;
  }
}



/* =====================================
   IA PRICING SECTION
   ===================================== */

/* ======================================
   IA PRICING — FINTECH GLASS DESIGN
   ====================================== */

#ai {
  padding-top: 80px;
  padding-bottom: 80px;
}

#ai h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

/* GRID PRINCIPAL */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

/* TEXTO */
.ai-info .intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.ai-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 35px;
}

.ai-list li {
  margin-bottom: 12px;
  color: #e6f7ff;
  font-size: 0.98rem;
  padding-left: 20px;
  position: relative;
}

.ai-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.3rem;
  top: -3px;
}

/* CARD DE PRECIO */
.ai-price-card {
  background: rgba(0, 175, 216, 0.12);
  border: 1px solid rgba(0, 175, 216, 0.22);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px 25px;
  text-align: left;
  margin-top: 20px;
}

.ai-price-card h3 {
  font-size: 1.4rem;
  color: var(--booh-blue);
  margin-bottom: 20px;
}

.price-now {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.price-after {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* IMAGEN DEL DASHBOARD */
.ai-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 175, 216, 0.25);
  background: rgba(255,255,255,0.03);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
  .ai-image {
    order: -1;
  }
}

/* IMAGEN CON GLOW AZUL – ESTILO A (Revolut Style) */
.ai-image img {
  width: 100%;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.03);

  box-shadow: 
    0 0 30px rgba(0, 175, 216, 0.35);  /* glow azul */
}

/* =====================================
   IA SCORING SECTION
   ===================================== */

/* ======================================
   IA SCORING — FINTECH GLASS DESIGN
   ====================================== */

#scoring {
  padding-top: 80px;
  padding-bottom: 80px;
}

#scoring h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.score-card h3 {
  font-size: 1.4rem;
  color: var(--booh-blue);
  margin-bottom: 25px; /* antes era menos */
}

/* GRID */
.scoring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

/* IMAGEN */
.scoring-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,175,216,0.35);
  background: rgba(255,255,255,0.03);
}

/* Reducir imagen en desktop */
@media(min-width: 1024px) {
  .scoring-image img {
    width: 80%;       /* antes 100% */
    margin: 0 auto;   /* la centra automáticamente */
    display: block;
  }
}

/* TEXTO */
.scoring-info .intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* LISTA */
.score-list {
  margin-bottom: 35px;
  padding-left: 0;
  list-style: none;
}

.score-list li {
  margin-bottom: 12px;
  color: #e6f7ff;
  font-size: 0.98rem;
  padding-left: 20px;
  position: relative;
}

.score-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.3rem;
  top: -3px;
}

/* TARJETA GLASS */
.score-card {
  background: rgba(0, 175, 216, 0.12);
  border: 1px solid rgba(0, 175, 216, 0.22);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px 25px;
  margin-top: 20px;
}

/* FILAS SCORE */
.score-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: center;
}

/* TAGS */
.score-tag {
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 90px;
  text-align: center;
  color: #fff;
}

.score-tag.high {
  background: rgba(0, 255, 180, 0.3);
}
.score-tag.mid {
  background: rgba(255, 180, 0, 0.3);
}
.score-tag.low {
  background: rgba(255, 80, 80, 0.3);
}

/* VALORES */
.score-values p {
  margin: 0;
  color: #e8faff;
  font-size: 0.85rem;
  line-height: 1.45;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .scoring-grid {
    grid-template-columns: 1fr;
  }
  .scoring-image {
    order: -1;
  }
}


/* ===========================================
   6. HERO — IA PRICING (premium)
=========================================== */

.pricing-hero-premium {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    rgba(5, 8, 14, 0.95) 0%,
    rgba(5, 8, 14, 1) 40%,
    rgba(0, 23, 40, 1) 100%
  );
}

.hero-img-premium {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter: brightness(0.75) saturate(1.2) contrast(1.05);
  opacity: 0.90;

  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 18, 35, 0.12) 0%,
    rgba(0, 18, 35, 0.22) 40%,
    rgba(0, 18, 35, 0.32) 100%
  );
}

.hero-content-premium {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  padding: 20px;
}

.hero-content-premium h1 {
  font-size: 52px;
  font-weight: 900;
  color: white;
}

.hero-content-premium p {
  font-size: 20px;
  opacity: .85;
}

.cta-hero {
  display: inline-block;
  background: var(--booh-blue);
  padding: 14px 32px;
  color: #000;
  font-weight: 700;
  margin-top: 25px;
  border-radius: 12px;
}

.cta {
  display: inline-block;
  background: var(--booh-blue);
  padding: 14px 32px;
  color: #ffffff;
  font-weight: 700;
  margin-top: 25px;
  border-radius: 12px;
}

/* MOBILE — IA PRICING */
@media(max-width: 768px) {
  .pricing-hero-premium {
    height: 540px;
    padding-top: 40px;
  }

  .hero-img-premium {
    object-position: center top;
    height: 115%;
  }

  .hero-content-premium h1 {
    font-size: 34px;
  }

  .hero-content-premium p {
    font-size: 16px;
  }

  .cta-hero {
    font-size: 15px;
    padding: 12px 26px;
  }
}

/* ===========================================
   7. HERO — IA SCORING (mismo estilo azul)
=========================================== */

/* ============================================================
   IA SCORING — HERO PREMIUM AZUL FINTECH
============================================================ */
.scoring-hero,
.hero { /* compatibilidad con tu HTML actual */
    position: relative;
    width: 100%;
    min-height: 68vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
    background: #05080E;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* aspecto azul fintech real */
    filter: brightness(0.82) saturate(1.25) hue-rotate(-8deg);
    opacity: 0.60;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(
        180deg,
        rgba(0, 70, 130, 0.40) 0%,
        rgba(0, 55, 110, 0.50) 45%,
        rgba(0, 40, 75, 0.72) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 30px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 26px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* móvil */
@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-img {
        opacity: 0.68;
        filter: brightness(0.9) saturate(1.2);
    }
}


/* ============================================================
   CÓMO FUNCIONA — TARJETAS GLASS AZULADAS
============================================================ */

#como-funciona .section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 45px;
}

#como-funciona .grid {
    gap: 30px;
}

/* card */
.step {
    background: rgba(0, 175, 216, 0.12);
    border: 1px solid rgba(0, 175, 216, 0.22);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: 0.3s ease;
}

.step:hover {
    background: rgba(0, 175, 216, 0.20);
    transform: translateY(-6px);
}

/* número */
.step-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid rgba(0, 175, 216, 0.9);
    color: var(--booh-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 1.4rem;
    font-weight: 700;
}


/* ============================================================
   FORMULARIO — GLASS FORM FINTECH
============================================================ */

.section-alt {
    background: #0B1018;
}

.form-grid {
    display: grid;
    gap: 25px;
}

.form-field label {
    font-weight: 600;
    color: #E6F1FA;
    margin-bottom: 6px;
    display: block;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 14px;
    background: #05080E;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
}

.hint {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-actions {
    margin-top: 20px;
    text-align: center;
}


/* ============================================================
   RESULTADO — GAUGE + INFO CARD
============================================================ */

.gauge {
    text-align: center;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.badge {
    background: rgba(255,255,255,0.12);
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* gauge wrapper */
.gauge-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.gauge-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.legend {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.legend li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.dot-low { background: #20D489; }
.dot-mid { background: #F6C344; }
.dot-high { background: #FF6B6B; }

/* tarjeta de condiciones */
.kv div {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.k {
    color: var(--text-muted);
}

.v {
    font-weight: 700;
    color: #fff;
}

.note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}






/* ==================================================
   8. GENERAL SECTIONS
================================================== */

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-soft);
}

/* ===========================================
   9. IA PRICING – RESUMEN 3 CARDS
=========================================== */

.pricing-summary {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pricing-summary .box {
  background: #0B1018;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.20);
}

.pricing-summary h3 {
  color: #28E1FF;
  font-size: 20px;
  margin-bottom: 10px;
}

.pricing-summary strong {
  font-size: 34px;
  font-weight: 900;
}

/* MOBILE */
@media (max-width: 880px) {
  .pricing-summary {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   10. IA PRICING – SIMULADOR PREMIUM
=========================================== */

.simulator-premium {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.simulator-box {
  background: #0B1018;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.sim-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.sim-grid-new label {
  font-weight: 600;
  color: #E6F1FA;
}

.sim-grid-new select,
.sim-grid-new input {
  width: 100%;
  padding: 12px;
  background: #05080E;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
}

.btn-sim {
  background: #00AFD8;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 17px;
  color: #000;
  font-weight: 600;
  margin-top: 25px;
  border: none;
  cursor: pointer;
  transition: .25s;
}

.btn-sim:hover {
  background: #28E1FF;
}

/* BARRAS */
.chart-premium .row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.chart-premium .bar {
  flex: 1;
  height: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.chart-premium .fill {
  height: 100%;
  background: #28E1FF;
  width: 0%;
  transition: width .6s ease;
}

.explain-ai {
  background: #0C121D;
  padding: 25px;
  border-radius: 16px;
  margin-top: 30px;
  color: #E6F1FA;
  line-height: 1.6;
  display: none;
}

/* MOBILE */
@media(max-width: 900px){
  .sim-grid-new {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   11. IA SCORING – RESULTADOS + GAUGE
=========================================== */

.gauge {
  text-align: center;
}

.gauge-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 10px auto 20px auto;
}

#gaugeCanvas {
  width: 100%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,175,216,0.3));
}

.gauge-label {
  text-align: center;
  font-weight: 900;
  font-size: 1.5rem;
  margin-top: 10px;
}

/* BADGE */
.badge {
  display: inline-block;
  background: #1a2635;
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  margin-left: 12px;
}

/* LIMITES */
.kv {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.kv div {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}

.k {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.v {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

/* ===========================================
   12. FOOTER PREMIUM
=========================================== */

.site-footer {
  background: linear-gradient(145deg, #0A0F1A, #0F1827);
  padding: 70px 0 20px;
  color: #E6F1FA;
}

.site-footerdashboard {
  background: linear-gradient(145deg, #0A0F1A, #0F1827);
  padding: 10px 0 20px;
  color: #E6F1FA;
}

.footer-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 60px;
  padding: 0 20px;
}




.footer-col h4 {
  font-size: 18px;
  color: var(--booh-blue);
  margin-bottom: 12px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #E6F1FA;
  opacity: 0.75;
  transition: 0.2s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: #28E1FF;
  padding-left: 4px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
  margin-top: -30px;
}

.footer-bottom {
  text-align: center;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0.65;
  font-size: 14px;
}

/* TABLET – 2 columnas */
@media(max-width: 980px){
  .footer-container {
    grid-template-columns: repeat(2,1fr);
  }
}

/* MÓVIL – 1 columna */
@media(max-width: 780px){
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-col,
  .footer-col-logo {
    margin: 0 auto;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }
}



/* ==================================================
   13. SIMULADOR PAGINA PHP
================================================== */

/* =========================================================
   HERO SIMULADOR
=========================================================*/
.hero-simu {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #05080E;
}

.hero-simu .hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(1.2);
}

.hero-simu .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(0, 55, 95, 0.45) 0%,
      rgba(0, 45, 80, 0.55) 50%,
      rgba(0, 35, 65, 0.70) 100%
  );

}







.hero-simu .hero-content {
  position: relative;
  max-width: 850px;
  text-align: center;
  padding: 0 20px;
  z-index: 5;
}

.hero-simu h1 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
}

.hero-simu p {
  font-size: 1.2rem;
  color: #cdefff;
  margin-bottom: 25px;
}

.hero-simu .btn-primary {
  background: #00AFD8;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.2s;
}

.hero-simu .btn-primary:hover {
  background: #1dd2ff;
}


/* =========================================================
   SIMULADOR PAGE WRAPPER
=========================================================*/
.simulator-page {
  padding: 50px 0 70px;
  background: #05080E;
}

#simulator {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.simu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

@media (max-width: 900px) {
  .simu {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   FORMULARIO
=========================================================*/
.simu-form {
  background: #0B1018;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0,0,0,0.25);
  border: 1px solid #101826;
}

.field {
  margin-bottom: 25px;
}

.field label {
  display: block;
  color: #E6F1FA;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #1b2a3b;
  background: #081017;
  color: #E6F1FA;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: #00AFD8;
  box-shadow: 0 0 0 2px rgba(0,175,216,0.25);
}

.readonly {
  background: #101b27 !important;
  color: #8AA0B4 !important;
}

.hint {
  font-size: 0.8rem;
  color: #7fa5c0;
  margin-top: 5px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 700px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.simu-form .cta {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  background: #00AFD8;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 1.05rem;
  transition: 0.2s;
}

.simu-form .cta:hover {
  background: #1dd2ff;
}


/* =========================================================
   RESULTADOS
=========================================================*/
.simu-result {
  background: #0B1018;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #101826;
  box-shadow: 0 0 25px rgba(0,0,0,0.25);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 25px;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.cards .card {
  background: #081017;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #15212f;
}

.cards .card h4 {
  color: #8AA0B4;
  font-size: 0.95rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.cards .card p {
  color: #E6F1FA;
  font-size: 1.3rem;
  font-weight: 700;
}


/* =========================================================
   TABLA DE AMORTIZACIÓN
=========================================================*/
.schedule table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #081017;
  border-radius: 10px;
  overflow: hidden;
}

.schedule th {
  background: #0f1822;
  padding: 12px;
  font-weight: 700;
  color: #cfeaff;
  font-size: 0.9rem;
  border-bottom: 1px solid #172533;
}

.schedule td {
  padding: 12px;
  border-bottom: 1px solid #15212f;
  color: #d8eaf7;
}

.schedule tr:last-child td {
  border-bottom: 0;
}


/* =========================================================
   MOBILE SPACING
=========================================================*/
@media (max-width: 500px) {
  .simulator-page {
    padding: 35px 0 60px;
  }
  
  .hero-simu h1 {
    font-size: 2rem;
  }

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