/* Fuente CJK (chino). Si no hay internet, cae a las fuentes del sistema (PingFang/YaHei/STHeiti). */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');
:root {
  --azul: #0b3d66;
  --azul2: #14689c;
  --gris: #f4f6f8;
  --linea: #d9e0e6;
  --ok: #1c8a4a;
  --warn: #b06a00;
  --err: #b3261e;
  --texto: #1c2733;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  color: var(--texto); background: var(--gris);
}
header {
  background: linear-gradient(100deg, var(--azul), var(--azul2));
  color: #fff; padding: 18px 24px;
}
header h1 { margin: 0; font-size: 20px; }
header p { margin: 4px 0 0; opacity: .85; font-size: 13px; }
main { max-width: 1100px; margin: 0 auto; padding: 20px; }
section.card {
  background: #fff; border: 1px solid var(--linea); border-radius: 10px;
  padding: 18px; margin-bottom: 18px;
}
section.card > h2 { margin: 0 0 12px; font-size: 16px; color: var(--azul); }
.muted { color: #5b6b78; font-size: 13px; }

.dropzone {
  border: 2px dashed var(--azul2); border-radius: 10px; padding: 22px; text-align: center;
  background: #f7fbfe; cursor: pointer; color: var(--azul2);
}
.dropzone.drag { background: #e7f3fb; }
.filelist { list-style: none; padding: 0; margin: 10px 0 0; font-size: 13px; }
.filelist li { padding: 4px 8px; background: var(--gris); border-radius: 6px; margin-bottom: 4px; }
textarea { width: 100%; min-height: 80px; padding: 8px; border: 1px solid var(--linea); border-radius: 8px; font-family: inherit; resize: vertical; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.field { display: flex; flex-direction: column; font-size: 13px; }
.field label { font-weight: 600; margin-bottom: 4px; color: #3a4a57; }
.field input, .field select { padding: 7px 8px; border: 1px solid var(--linea); border-radius: 7px; font-size: 14px; }
.checks { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; font-size: 13px; }
.checks label { display: flex; align-items: center; gap: 6px; }

button {
  background: var(--azul2); color: #fff; border: 0; border-radius: 8px;
  padding: 10px 18px; font-size: 14px; font-weight: 600; cursor: pointer;
}
button.secondary { background: #fff; color: var(--azul2); border: 1px solid var(--azul2); }
button:disabled { opacity: .55; cursor: not-allowed; }
.btnrow { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

.tabs { display: flex; gap: 6px; border-bottom: 2px solid var(--linea); margin-bottom: 14px; }
.tab { padding: 9px 16px; cursor: pointer; border: 0; background: none; color: #5b6b78; font-weight: 600; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.tab.active { color: var(--azul); border-bottom-color: var(--azul); }
.tabpane { display: none; }
.tabpane.active { display: block; }

table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin: 8px 0 16px; }
th, td { padding: 8px 10px; border-bottom: 1px solid var(--linea); text-align: left; }
td.num, th.num { text-align: right; white-space: nowrap; }
thead th { background: var(--azul); color: #fff; }
tbody tr:nth-child(even) { background: #fafcfe; }
h3 { color: var(--azul); font-size: 14px; margin: 18px 0 6px; }

.badge { font-size: 11px; padding: 2px 8px; border-radius: 20px; font-weight: 700; }
.badge.ok { background: #e3f4ea; color: var(--ok); }
.badge.warn { background: #fcefdc; color: var(--warn); }
.badge.err { background: #fbe4e2; color: var(--err); }

.banner { padding: 10px 14px; border-radius: 8px; margin-bottom: 12px; font-size: 13.5px; }
.banner.info { background: #e7f3fb; color: var(--azul); }
.banner.err { background: #fbe4e2; color: var(--err); }
.banner.warn { background: #fcefdc; color: var(--warn); }

.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid #fff; border-top-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.hide { display: none; }
.note { font-size: 12px; color: var(--warn); margin-top: 4px; }

/* ───────── Navegación ───────── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  background: #07294a; color: #fff; padding: 10px 24px;
}
.nav .brand { color: #fff; font-weight: 800; font-size: 17px; text-decoration: none; letter-spacing: .5px; }
.navlinks { display: flex; align-items: center; }
.navlinks a {
  color: #cfe0ee; text-decoration: none; margin-left: 18px; font-size: 14px; font-weight: 600;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.navlinks a:hover { color: #fff; }
.navlinks a.active { color: #fff; border-bottom-color: #14689c; }
.navtoggle { display: none; background: none; border: 0; color: #fff; font-size: 22px; cursor: pointer; }

.nav-fixed {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7,41,74,.85); backdrop-filter: blur(8px); transition: background .25s, box-shadow .25s;
}
.nav-fixed.scrolled { background: #07294a; box-shadow: 0 4px 18px rgba(0,0,0,.18); }
.nav-wa {
  background: #25D366; color: #fff !important; border-radius: 20px; padding: 7px 16px !important;
  margin-left: 18px; border-bottom: 0 !important;
}
.nav-wa:hover { background: #1ebe5a; }
.landing-body { padding-top: 56px; }

/* Botón flotante WhatsApp */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 120;
  background: #25D366; color: #fff; text-decoration: none; font-weight: 700; font-size: 14px;
  padding: 12px 18px; border-radius: 30px; box-shadow: 0 6px 20px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 8px;
}
.wa-float::before { content: "💬"; font-size: 18px; }
.wa-float:hover { background: #1ebe5a; }

/* ───────── Hero ───────── */
.hero {
  background: linear-gradient(125deg, #062038 0%, #0b3d66 45%, #14689c 100%);
  color: #fff; padding: 92px 24px 78px; text-align: center;
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.hero h1 { font-size: 40px; margin: 0 0 16px; line-height: 1.15; font-weight: 800; letter-spacing: -.5px; }
.hero-sub { font-size: 18px; opacity: .92; margin: 0 0 28px; line-height: 1.55; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.trustline { font-size: 13.5px; opacity: .82; letter-spacing: .3px; }

.btn-cta {
  background: #fff; color: #07294a; text-decoration: none; font-weight: 700;
  padding: 14px 30px; border-radius: 30px; font-size: 15.5px; display: inline-block;
  transition: transform .12s, box-shadow .2s; box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.2); }
.btn-cta.ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.8); box-shadow: none; }
.btn-cta.ghost:hover { background: rgba(255,255,255,.12); }
.btn-cta.solid { background: #25D366; color: #fff; }
.btn-cta.solid:hover { background: #1ebe5a; }

/* ───────── Estructura de secciones ───────── */
.wrap { max-width: 1080px; margin: 0 auto; padding: 58px 22px; }
.wrap.narrow { max-width: 820px; }
.band { background: #fff; border-top: 1px solid var(--linea); border-bottom: 1px solid var(--linea); }
.band .wrap { padding-top: 58px; padding-bottom: 58px; }
.band.accent { background: linear-gradient(125deg, #0b3d66, #14689c); border: 0; }
.sec-title { text-align: center; color: var(--azul); font-size: 27px; margin: 0 0 12px; font-weight: 800; line-height: 1.2; }
.sec-title.light { color: #fff; }
.lead { font-size: 17px; line-height: 1.65; color: #44515d; text-align: center; max-width: 760px; margin: 0 auto 18px; }
.lead.light { color: #eaf2f9; }
.center { text-align: center; }

/* Listas con check */
.checklist { list-style: none; padding: 0; max-width: 720px; margin: 22px auto 0; }
.checklist li { position: relative; padding: 9px 0 9px 30px; font-size: 15.5px; border-bottom: 1px solid #eef2f5; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.checklist.two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; margin-top: 30px; }
.cards.four { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.lcard {
  background: #fff; border: 1px solid var(--linea); border-radius: 14px; padding: 24px;
  transition: transform .14s, box-shadow .2s;
}
.band .lcard { background: #fafcfe; }
.lcard:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(11,61,102,.12); }
.lcard .ic { font-size: 32px; }
.lcard h3 { color: var(--azul); margin: 12px 0 8px; font-size: 17.5px; }
.lcard p { margin: 0; font-size: 14.5px; color: #4a5b68; line-height: 1.55; }

/* Pasos */
.steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 22px; margin-top: 30px; }
.steps.six { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.step { text-align: center; padding: 8px; }
.step .num {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  background: var(--azul2); color: #fff; border-radius: 50%; font-weight: 800; font-size: 19px; margin-bottom: 12px;
}
.step h4 { margin: 6px 0; color: var(--azul); font-size: 15.5px; }
.step p { margin: 0; font-size: 13.5px; color: #4a5b68; }

/* Chips de tipos de carga */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.chips span {
  background: #eef4f9; color: var(--azul); border: 1px solid #d6e3ee; border-radius: 24px;
  padding: 9px 18px; font-size: 14px; font-weight: 600;
}

/* Formulario de lead */
.leadform { background: #fff; border-radius: 14px; padding: 26px; margin-top: 24px; box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.leadform .field label { color: #3a4a57; }
.formhelp { font-size: 13px; color: #5b6b78; text-align: center; margin: 12px 0 0; }
.leadform .btnrow { justify-content: center; }
.ok-banner { background: #e3f4ea; color: #146b39; padding: 12px 16px; border-radius: 8px; margin-top: 12px; font-size: 14px; }
.ok-banner a { color: #0f8a4a; }

/* FAQ */
.faq { max-width: 760px; margin: 26px auto 0; }
.faq-item { border-bottom: 1px solid var(--linea); }
.faq-q {
  width: 100%; text-align: left; background: none; color: var(--azul); font-weight: 700; font-size: 16px;
  padding: 16px 30px 16px 0; cursor: pointer; position: relative; border-radius: 0;
}
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 14px; font-size: 22px; color: var(--azul2); }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s; color: #4a5b68; font-size: 14.5px; line-height: 1.6; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 0 16px; }

/* Cierre */
.cta-final { background: linear-gradient(125deg, #14689c, #07294a); color: #fff; text-align: center; }
.cta-final .wrap { padding: 64px 22px; }
.cta-final h2 { margin: 0 0 10px; font-size: 30px; font-weight: 800; }
.cta-final p { margin: 0 0 26px; opacity: .92; font-size: 17px; }

/* Footer */
.foot { text-align: center; padding: 28px 22px; color: #cdd9e2; font-size: 13px; background: #07294a; }
.foot-sub { font-size: 12px; opacity: .7; margin-top: 6px; }
.foot a { color: #9ec7e6; }

/* Sugerencia de cotización */
.suggest { background: #eef6fc; border: 1px solid #cfe3f2; border-left: 5px solid var(--azul2); border-radius: 10px; padding: 16px 18px; margin-bottom: 16px; }
.suggest-h { font-weight: 800; color: var(--azul); font-size: 16px; margin-bottom: 8px; }
.suggest p { margin: 6px 0; font-size: 14.5px; }
.suggest .kv td { font-size: 13.5px; }
.suggest .kv td.k { width: 320px; }
.suggest-pend { background: #fcefdc; border-radius: 8px; padding: 8px 12px; color: #8a5a00; }

/* Solicitudes (leads) */
.leadbox { border: 1px solid var(--linea); border-radius: 10px; padding: 16px 18px; margin-bottom: 14px; background: #fafcfe; }
.leadhead { font-size: 15px; margin-bottom: 8px; }
.kv { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.kv td { padding: 5px 8px; border-bottom: 1px solid #eef2f5; vertical-align: top; }
.kv td.k { width: 150px; color: #5b6b78; font-weight: 600; }
.leadactions { margin-top: 10px; font-size: 13.5px; }
.leadactions a { color: var(--azul2); font-weight: 600; }

/* Stats */
.stats { background: #07294a; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; padding: 38px 22px 14px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.snum { font-size: 34px; font-weight: 800; color: #6cc4ff; line-height: 1; }
.slabel { font-size: 13.5px; opacity: .85; }
.editnote { font-size: 11.5px; opacity: .8; margin-top: 4px; }
.stats .editnote { color: #aecbe2; padding-bottom: 14px; }

/* Comparativa */
.comp { margin-top: 26px; overflow-x: auto; }
.comptable { width: 100%; border-collapse: collapse; font-size: 14.5px; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 20px rgba(11,61,102,.08); }
.comptable th, .comptable td { padding: 13px 16px; border-bottom: 1px solid var(--linea); text-align: left; }
.comptable thead th { background: var(--azul); color: #fff; font-size: 14px; }
.comptable th.good, .comptable td.good { background: #f0faf3; }
.comptable th.bad, .comptable td.bad { color: #8a5a00; }
.comptable td.good { color: #146b39; font-weight: 600; }
.comptable td.good::before { content: "✓ "; color: var(--ok); }
.comptable td.bad::before { content: "✕ "; color: #c0392b; }
.comptable tbody td:first-child { font-weight: 600; color: var(--texto); }

/* Testimonios */
.cards.three { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.tcard { background: #fff; border: 1px solid var(--linea); border-radius: 14px; padding: 24px; }
.tcard .stars { color: #f5a623; font-size: 17px; letter-spacing: 2px; margin-bottom: 10px; }
.tcard p { font-size: 15px; color: #38454f; line-height: 1.6; font-style: italic; margin: 0 0 14px; }
.tname { font-weight: 700; color: var(--azul); font-size: 14px; }

/* Contacto */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 24px 0 10px; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none;
  background: #fff; border: 1px solid var(--linea); border-radius: 12px; padding: 20px; color: var(--azul);
  transition: transform .12s, box-shadow .2s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(11,61,102,.12); }
.contact-card .ci { font-size: 26px; }
.contact-card span:last-child { color: #4a5b68; font-size: 14px; }

/* Footer extendido */
.foot-brand { font-weight: 700; color: #fff; }
.foot-contact { margin: 8px 0; font-size: 13.5px; }
.foot-contact a { color: #9ec7e6; }

/* Barra CTA móvil */
.mobilebar { display: none; }
.mb-cta, .mb-wa { flex: 1; text-align: center; padding: 14px; font-weight: 700; text-decoration: none; font-size: 15px; }
.mb-cta { background: var(--azul2); color: #fff; }
.mb-wa { background: #25D366; color: #fff; }

/* Responsivo */
@media (max-width: 760px) {
  .hero h1 { font-size: 30px; }
  .checklist.two { grid-template-columns: 1fr; }
  .navtoggle { display: block; }
  .navlinks {
    display: none; position: absolute; top: 52px; left: 0; right: 0; flex-direction: column;
    background: #07294a; padding: 12px 24px; align-items: flex-start;
  }
  .navlinks.open { display: flex; }
  .navlinks a { margin: 8px 0; }
  .nav-wa { margin: 8px 0; }
  .snum { font-size: 28px; }
  .wa-float { bottom: 64px; right: 12px; padding: 10px 14px; }
  .mobilebar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 110; box-shadow: 0 -3px 14px rgba(0,0,0,.18); }
  body.landing-body { padding-bottom: 52px; }
}

/* ───────── Panel admin: login, logo y badges ───────── */
.banner.ok { background: #e3f3e9; color: var(--ok); }

.nav .brand { display: inline-flex; align-items: center; gap: 9px; }
.navlogo { height: 26px; width: 26px; border-radius: 6px; object-fit: cover; background: #fff; }

.loginwrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px;
  background: linear-gradient(135deg, #07294a, #14689c);
}
.logincard {
  background: #fff; width: 100%; max-width: 360px; border-radius: 14px; padding: 28px 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.logincard h1 { font-size: 20px; color: var(--azul); margin: 4px 0 2px; text-align: center; }
.logincard .field { margin-top: 12px; }
.loginlogo { display: block; width: 84px; height: 84px; margin: 0 auto 6px; border-radius: 16px; object-fit: cover; }

/* Insignias de estado y prioridad */
.badges { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0; align-items: center; }
.badge { font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.est-Nuevo { background: #e7f3fb; color: #14689c; }
.est-Contactado { background: #ede7fb; color: #5b3fc4; }
.est-Cotizado { background: #fcefdc; color: var(--warn); }
.est-Negociacion { background: #fdf3cf; color: #8a6d00; }
.est-Ganado { background: #e3f3e9; color: var(--ok); }
.est-Perdido { background: #fbe4e2; color: var(--err); }
.pri-Baja { background: #eef1f4; color: #5b6b78; }
.pri-Media { background: #e7f3fb; color: #14689c; }
.pri-Alta { background: #fcefdc; color: var(--warn); }
.pri-Urgente { background: #fbe4e2; color: var(--err); }

.leadctrls { display: flex; gap: 14px; flex-wrap: wrap; margin: 10px 0; }
.leadctrls .field { min-width: 160px; }
.leadbox { border: 1px solid var(--linea); border-radius: 10px; padding: 14px; margin-bottom: 14px; background: #fff; }
.leadhead { margin-bottom: 6px; }
.leadbox.flash { outline: 2px solid var(--ok); transition: outline-color .8s; }

/* ───────── Cotizador: botones de opción + total final ───────── */
.optbtns { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
.optbtn {
  background: #fff; border: 2px solid var(--linea); border-radius: 12px; padding: 12px 14px;
  cursor: pointer; text-align: left; display: flex; flex-direction: column; gap: 4px; transition: all .15s;
  color: var(--texto);
}
.optbtn:hover { border-color: var(--azul2); box-shadow: 0 4px 14px rgba(20,104,156,.14); }
.optbtn.active { border-color: var(--azul2); background: #eef6fc; box-shadow: 0 4px 16px rgba(20,104,156,.2); }
.optbtn.off { opacity: .55; }
.optbtn-name { font-weight: 700; font-size: 13.5px; color: var(--azul); }
.optbtn-amt { font-size: 17px; font-weight: 800; color: var(--texto); }
.optbtn-tag { font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 20px; align-self: flex-start; text-transform: capitalize; }
.optbtn-tag.ok { background: #e3f3e9; color: var(--ok); }
.optbtn-tag.warn { background: #fcefdc; color: var(--warn); }
.optbtn-tag.err { background: #fbe4e2; color: var(--err); }

.total-final-box {
  margin-top: 14px; display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(115deg, #0a2a4e, #1b6fb3 85%, #1fc0c8); color: #fff;
  border-radius: 14px; padding: 14px 22px; box-shadow: 0 10px 26px rgba(15,61,110,.25);
}
.total-final-box span { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.total-final-box span small { display: block; font-size: 10px; font-weight: 500; opacity: .85; letter-spacing: .3px; text-transform: none; margin-top: 3px; }
.total-final-box b { font-size: 27px; font-weight: 800; letter-spacing: .5px; }

/* Selector de idioma */
.langsel {
  margin-left: 18px; background: #0d3a63; color: #fff; border: 1px solid #2a5a86;
  border-radius: 7px; padding: 5px 8px; font-size: 13px; font-weight: 600; cursor: pointer;
}
.langsel option { color: #1c2733; background: #fff; }

/* Pasos de la pestaña cliente */
.step-h { margin: 18px 0 4px; color: var(--azul); }
.step-h:first-child { margin-top: 0; }
.step-p { margin: 0 0 10px; }

/* Badge INTERNO */
.pill-int {
  display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .5px;
  background: #fbe4e2; color: var(--err); padding: 1px 7px; border-radius: 20px; vertical-align: middle;
}

/* Botones de % de ganancia */
.marginrow { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.marginbtns { display: flex; gap: 6px; flex-wrap: wrap; }
.mbtn {
  background: #fff; color: var(--azul2); border: 1.5px solid var(--linea); border-radius: 8px;
  padding: 7px 12px; font-size: 13px; font-weight: 700; cursor: pointer;
}
.mbtn:hover { border-color: var(--azul2); }
.mbtn.active { background: var(--azul2); color: #fff; border-color: var(--azul2); }

/* Lecturas internas (costo, ganancia, precio) */
.readouts { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; margin-top: 14px; }
.readout {
  background: var(--gris); border: 1px solid var(--linea); border-radius: 10px; padding: 10px 14px;
  display: flex; flex-direction: column; gap: 3px;
}
.readout .ro-k { font-size: 12px; color: #5b6b78; font-weight: 600; }
.readout .ro-v { font-size: 18px; font-weight: 800; color: var(--texto); }

/* Bloques de costo (producto / logística) */
.costblock { border: 1px solid var(--linea); border-radius: 10px; padding: 12px 14px; margin-top: 12px; background: #fcfdfe; }
.cb-title { font-weight: 700; color: var(--azul); font-size: 13.5px; margin-bottom: 8px; }
.ro-input { background: #eef6fc; font-weight: 800; color: var(--azul); }
