/* ============================================================
   Business Cash and Capital — Sistema de diseño
   Inspirado en Carnet Plus (redondeado, overlays, forms tipo
   píldora) con marca propia: navy + amarillo, Montserrat.
   ============================================================ */

/* ---------- Fuente self-hosted ---------- */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Italic-VariableFont_wght.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
    /* Marca Business Cash */
    --bcc-navy: #0e2a5e;        /* azul marino principal */
    --bcc-navy-2: #143a7d;      /* navy más claro para degradados */
    --bcc-navy-deep: #08193a;   /* navy profundo / fondos oscuros */
    --bcc-yellow: #f5c518;      /* amarillo CTA */
    --bcc-yellow-2: #ffd84d;    /* amarillo claro */
    --bcc-ink: #0b1b34;         /* texto sobre claro */
    --bcc-body: #2b3banum;      /* (placeholder, ver abajo) */
    --bcc-text: #243450;        /* texto cuerpo */
    --bcc-muted: #6b7691;       /* texto atenuado */
    --bcc-line: #e1e7f2;        /* bordes suaves */
    --bcc-bg: #ffffff;
    --bcc-bg-soft: #f3f6fc;     /* fondo de sección suave */
    --bcc-bg-blue: #eaf0ff;     /* fondo de card */

    /* Radios */
    --bcc-r-sm: 10px;
    --bcc-r-md: 18px;
    --bcc-r-lg: 26px;
    --bcc-r-xl: 34px;
    --bcc-r-pill: 999px;
    --bcc-r-section: 48px;

    /* Sombras */
    --bcc-shadow-sm: 0 2px 10px rgba(14, 42, 94, 0.08);
    --bcc-shadow-md: 0 10px 30px rgba(14, 42, 94, 0.12);
    --bcc-shadow-lg: 0 24px 60px rgba(8, 25, 58, 0.16);
    --bcc-shadow-yellow: 0 10px 26px rgba(245, 197, 24, 0.4);

    /* Degradados */
    --bcc-grad-navy: linear-gradient(135deg, #143a7d 0%, #0e2a5e 55%, #08193a 100%);
    --bcc-grad-yellow: linear-gradient(90deg, #ffd84d 0%, #f5c518 100%);
    --bcc-grad-soft: linear-gradient(180deg, #ffffff 0%, #eef3fc 100%);

    /* Layout */
    --bcc-container: 1200px;
    --bcc-gap: 24px;

    --bcc-font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
/* corrección del placeholder de arriba */
:root { --bcc-body: #243450; }

/* ---------- Reset suave ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--bcc-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--bcc-text);
    background: var(--bcc-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bcc-navy); text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { opacity: .82; }

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 {
    font-family: var(--bcc-font);
    color: var(--bcc-ink);
    line-height: 1.18;
    margin: 0 0 .6em;
    font-weight: 800;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 700; }
p { margin: 0 0 1rem; }
.bcc-kicker {
    display: inline-block;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bcc-navy);
}
.bcc-text-yellow { color: var(--bcc-yellow); }
.bcc-text-navy { color: var(--bcc-navy); }

/* ---------- Layout ---------- */
.bcc-container {
    width: 100%;
    max-width: var(--bcc-container);
    margin: 0 auto;
    padding: 0 24px;
}
.bcc-section {
    position: relative;
    padding: clamp(56px, 8vw, 104px) 0;
}
.bcc-section--soft { background: var(--bcc-bg-soft); }
.bcc-section--navy {
    background: var(--bcc-grad-navy);
    color: #dbe6ff;
}
.bcc-section--navy h1, .bcc-section--navy h2, .bcc-section--navy h3 { color: #fff; }
.bcc-section--rounded { border-radius: 0 0 var(--bcc-r-section) var(--bcc-r-section); }
.bcc-center { text-align: center; }
.bcc-grid { display: grid; gap: var(--bcc-gap); }

/* ---------- Botones ---------- */
.bcc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55em;
    height: 52px;
    padding: 0 2rem;
    border: 0;
    border-radius: var(--bcc-r-pill);
    font-family: var(--bcc-font);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    text-align: center;
}
.bcc-btn--primary {
    background: var(--bcc-grad-yellow);
    color: var(--bcc-ink);
    box-shadow: var(--bcc-shadow-yellow);
}
.bcc-btn--primary:hover { transform: translateY(-2px); opacity: 1; }
.bcc-btn--navy {
    background: var(--bcc-navy);
    color: #fff;
    box-shadow: var(--bcc-shadow-md);
}
.bcc-btn--navy:hover { transform: translateY(-2px); background: var(--bcc-navy-2); opacity: 1; }
.bcc-btn--ghost {
    background: transparent;
    color: var(--bcc-navy);
    border: 2px solid var(--bcc-navy);
}
.bcc-btn--ghost:hover { background: var(--bcc-navy); color: #fff; opacity: 1; }
.bcc-btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.7); }
.bcc-btn--ghost-light:hover { background: #fff; color: var(--bcc-navy); border-color: #fff; }
.bcc-btn--lg { height: 60px; padding: 0 2.6rem; font-size: 1.05rem; }
.bcc-btn--block { width: 100%; }

/* ---------- Cards ---------- */
.bcc-card {
    background: var(--bcc-bg);
    border: 1px solid var(--bcc-line);
    border-radius: var(--bcc-r-xl);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.bcc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bcc-shadow-md);
    border-color: rgba(14, 42, 94, 0.25);
}
.bcc-card__media { aspect-ratio: 16 / 11; overflow: hidden; }
.bcc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.bcc-card__body { padding: 22px 26px 28px; }
.bcc-card__body h3 { color: var(--bcc-navy); margin-bottom: .35em; }

/* Cards de entradas del blog: imagen más baja, título claro y
   un aviso "Ir al blog" al pasar el cursor para que se note clickeable. */
.bcc-card--post .bcc-card__media {
    aspect-ratio: 16 / 9;
    position: relative;
    display: block;
    background: var(--bcc-bg-soft);
}
.bcc-card--post .bcc-card__body h3 { font-size: 1.18rem; line-height: 1.3; }
.bcc-card--post .bcc-card__body h3 a { color: inherit; text-decoration: none; }
.bcc-card--post:hover .bcc-card__body h3 a { color: var(--bcc-navy); text-decoration: underline; }
.bcc-card__hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4em;
    background: rgba(14, 42, 94, .72);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .01em;
    opacity: 0;
    transition: opacity .28s ease;
}
.bcc-card--post:hover .bcc-card__hint,
.bcc-card--post:focus-within .bcc-card__hint { opacity: 1; }

/* ---------- Formularios (WPForms reskin tipo píldora) ---------- */
.bcc-formwrap {
    background: #fff;
    border-radius: clamp(24px, 3vw, 38px);
    padding: clamp(28px, 4vw, 52px);
    box-shadow: var(--bcc-shadow-lg);
    max-width: 1040px;
    margin: 0 auto;
}

/* utilidades responsivas de grilla */
.bcc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.bcc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.bcc-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
    .bcc-cols-3, .bcc-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .bcc-cols-2, .bcc-cols-3, .bcc-cols-4 { grid-template-columns: 1fr; }
}

/* Variante "centrada": misma grilla de 3, pero la última fila incompleta
   (p. ej. 5 tarjetas = 3 + 2) queda CENTRADA en vez de pegada a la izquierda. */
.bcc-grid--center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.bcc-grid--center > * {
    flex: 0 1 calc((100% - 2 * var(--bcc-gap)) / 3);
    max-width: calc((100% - 2 * var(--bcc-gap)) / 3);
}
@media (max-width: 980px) {
    .bcc-grid--center > * {
        flex-basis: calc((100% - var(--bcc-gap)) / 2);
        max-width: calc((100% - var(--bcc-gap)) / 2);
    }
}
@media (max-width: 640px) {
    .bcc-grid--center > * { flex-basis: 100%; max-width: 100%; }
}

/* ---------- Accesibilidad ---------- */
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}
.skip-link:focus {
    position: fixed; top: 12px; left: 12px; z-index: 100000;
    background: #fff; color: var(--bcc-navy); padding: 10px 16px;
    border-radius: 8px; box-shadow: var(--bcc-shadow-md);
}
body.bcc-no-scroll { overflow: hidden; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.bcc-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow .25s ease, background .25s ease;
}
.bcc-header.is-scrolled { box-shadow: var(--bcc-shadow-sm); background: #fff; }
.bcc-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; min-height: 84px;
}
.bcc-header__logo img { height: 74px; width: auto; }
.bcc-header__inner { min-height: 96px; }
.bcc-nav { display: flex; align-items: center; gap: 22px; }
.bcc-nav__list {
    display: flex; align-items: center; gap: 4px;
    list-style: none; margin: 0; padding: 0;
}
.bcc-nav__list a {
    display: inline-block; padding: 8px 14px; border-radius: var(--bcc-r-pill);
    font-weight: 600; font-size: 1.06rem; color: var(--bcc-navy);
}
.bcc-nav__social { display: flex; align-items: center; gap: 8px; }
.bcc-nav__social a {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bcc-bg-blue); color: var(--bcc-navy);
}
.bcc-nav__social a:hover { background: var(--bcc-navy); color: #fff; opacity: 1; }

/* --- Selector de idioma flotante (sobre el botón de WhatsApp) --- */
.bcc-langfloat { position: fixed; right: 22px; bottom: 92px; z-index: 91; }
.bcc-langfloat__toggle {
    width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
    background: #fff; box-shadow: var(--bcc-shadow-md); padding: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.55rem; line-height: 1; transition: transform .2s ease;
}
.bcc-langfloat__toggle:hover { transform: scale(1.06); }
.bcc-langfloat__menu {
    position: absolute; right: 0; bottom: 62px;
    background: #fff; border-radius: var(--bcc-r-md);
    box-shadow: var(--bcc-shadow-lg); padding: 6px;
    display: flex; flex-direction: column; gap: 2px; min-width: 160px;
}
.bcc-langfloat__menu[hidden] { display: none; }
.bcc-langfloat__menu button {
    display: flex; align-items: center; gap: 10px;
    border: 0; background: transparent; cursor: pointer; text-align: left;
    font-family: var(--bcc-font); font-weight: 600; font-size: .92rem;
    color: var(--bcc-navy); padding: 10px 12px; border-radius: 10px;
}
.bcc-langfloat__menu button:hover { background: var(--bcc-bg-blue); }
.bcc-langfloat__menu button.is-active { background: var(--bcc-navy); color: #fff; }
.bcc-langfloat__flag { font-size: 1.15rem; line-height: 1; }

/* Ocultar el widget/banner por defecto de GTranslate (usamos el toggle propio) */
.gtranslate_wrapper, .gt_float_switcher, #gt_float_wrapper,
.gt_switcher_wrapper, .goog-te-gadget, .goog-te-banner-frame,
.skiptranslate { display: none !important; }
body { top: 0 !important; }
.bcc-nav__list a:hover { background: var(--bcc-bg-blue); opacity: 1; }
.bcc-nav__list .current-menu-item a { color: var(--bcc-navy); font-weight: 700; }

.bcc-burger {
    display: none; width: 48px; height: 48px; border: 0; cursor: pointer;
    background: var(--bcc-navy); border-radius: 12px;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.bcc-burger span { width: 22px; height: 2.5px; background: #fff; border-radius: 2px; transition: .25s; }

@media (max-width: 900px) {
    .bcc-burger { display: flex; }
    .bcc-nav {
        position: fixed; inset: 84px 0 auto 0;
        flex-direction: column; align-items: stretch; gap: 8px;
        background: #fff; padding: 20px 24px 28px;
        box-shadow: var(--bcc-shadow-lg);
        transform: translateY(-130%); transition: transform .3s ease;
    }
    .bcc-nav.is-open { transform: translateY(0); }
    .bcc-nav__list { flex-direction: column; align-items: stretch; }
    .bcc-nav__list a { padding: 12px 10px; }
    .bcc-nav__cta { text-align: center; }
}

/* ============================================================
   HERO (Inicio) — imagen de fondo + overlay azulado
   ============================================================ */
.bcc-hero {
    position: relative;
    padding: clamp(80px, 12vw, 150px) 0;
    background-image: var(--bcc-hero-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    isolation: isolate;
}
.bcc-hero::before {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(120deg, rgba(13,40,94,.72) 0%, rgba(20,66,140,.6) 55%, rgba(28,86,170,.5) 100%);
}
.bcc-hero::after {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(ellipse at 70% 25%, rgba(90,150,255,.3), transparent 60%);
}
.bcc-hero__inner { max-width: 760px; }
.bcc-hero__text h1 { color: #fff; }
.bcc-hero__lead { font-size: 1.2rem; color: #d4e0ff; max-width: 50ch; }
.bcc-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
@media (max-width: 860px) {
    .bcc-hero { text-align: center; }
    .bcc-hero__inner { margin-inline: auto; }
    .bcc-hero__lead { margin-inline: auto; }
    .bcc-hero__actions { justify-content: center; }
}

/* ---------- Mini-hero "Somos la mejor opción" (card) ---------- */
.bcc-minihero {
    display: grid; grid-template-columns: .9fr 1.1fr;
    align-items: center; gap: clamp(24px, 4vw, 48px);
    background: #fff;
    border-radius: var(--bcc-r-xl);
    box-shadow: var(--bcc-shadow-md);
    overflow: hidden;
    padding: clamp(20px, 3vw, 40px);
}
.bcc-minihero__media img { width: 100%; border-radius: var(--bcc-r-lg); }
.bcc-minihero__text h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); }
@media (max-width: 760px) {
    .bcc-minihero { grid-template-columns: 1fr; text-align: center; }
}

/* ---------- Video YouTube (facade) ---------- */
.bcc-video {
    position: relative;
    max-width: 900px;
    margin: 0 auto clamp(28px, 4vw, 44px);
    aspect-ratio: 16 / 9;
    border-radius: var(--bcc-r-lg);
    overflow: hidden;
    cursor: pointer;
    background-image: var(--bcc-video-poster);
    background-size: cover;
    background-position: center;
    box-shadow: var(--bcc-shadow-lg);
}
.bcc-video::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,25,58,.25), rgba(8,25,58,.55));
    transition: background .25s ease;
}
.bcc-video:hover::before { background: linear-gradient(180deg, rgba(8,25,58,.15), rgba(8,25,58,.45)); }
.bcc-video__btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 84px; height: 84px; border: 0; border-radius: 50%;
    background: var(--bcc-grad-yellow); color: var(--bcc-ink);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: var(--bcc-shadow-yellow);
    transition: transform .2s ease;
}
.bcc-video__btn svg { margin-left: 4px; }
.bcc-video:hover .bcc-video__btn { transform: translate(-50%, -50%) scale(1.08); }
.bcc-video.is-playing { cursor: default; }
.bcc-video.is-playing::before { display: none; }
.bcc-video__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   SPLIT (2 columnas texto/imagen)
   ============================================================ */
.bcc-split {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: clamp(28px, 5vw, 64px);
}
.bcc-split__media img { width: 100%; border-radius: var(--bcc-r-lg); }
.bcc-section--navy .bcc-split__media img { box-shadow: var(--bcc-shadow-lg); }
@media (max-width: 820px) {
    .bcc-split { grid-template-columns: 1fr; }
    .bcc-split__media { order: -1; }
}

.bcc-section__head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 56px); }
.bcc-section__head p { color: var(--bcc-muted); font-size: 1.08rem; }
.bcc-section--navy .bcc-section__head p { color: #c7d5f5; }

/* ============================================================
   ACORDEÓN (pasos)
   ============================================================ */
.bcc-accordion { display: flex; flex-direction: column; gap: 12px; }
.bcc-acc-item {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--bcc-r-md); overflow: hidden;
}
.bcc-acc-head {
    width: 100%; text-align: left; cursor: pointer;
    background: transparent; border: 0; color: #fff;
    font-family: var(--bcc-font); font-weight: 700; font-size: 1.05rem;
    padding: 18px 22px; position: relative;
}
.bcc-acc-head::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; }
.bcc-acc-item.is-open .bcc-acc-head::after { content: '–'; }
.bcc-acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.bcc-acc-item.is-open .bcc-acc-body { max-height: 240px; }
.bcc-acc-body p { padding: 0 22px 20px; margin: 0; color: #cfdcff; }

/* ============================================================
   PASOS — foto grande, pegada al fondo del overlay
   ============================================================ */
.bcc-pasos { padding-bottom: 0; overflow: hidden; }
.bcc-pasos .bcc-split { align-items: stretch; }
.bcc-pasos .bcc-split__media { align-self: end; display: flex; align-items: flex-end; justify-content: center; }
.bcc-pasos .bcc-split__media img {
    width: 100%; max-width: 680px; display: block; margin: 0 auto;
    border-radius: 0 !important; box-shadow: none !important;
}
@media (max-width: 820px) {
    .bcc-pasos { padding-bottom: clamp(56px, 8vw, 104px); }
    .bcc-pasos .bcc-split__media { display: none; } /* la foto no funciona bien en mobile */
}

/* ============================================================
   REQUISITOS — módulo "step": imágenes grandes, cuadradas redondeadas,
   numeradas y conectadas.
   ============================================================ */
.bcc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}
.bcc-step { text-align: center; position: relative; }
.bcc-step__img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--bcc-r-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--bcc-shadow-sm);
    margin-bottom: 18px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.bcc-step__img img { width: 100%; height: 100%; object-fit: cover; }
.bcc-step:hover .bcc-step__img { transform: translateY(-6px); box-shadow: var(--bcc-shadow-md); }
.bcc-step__num {
    position: absolute; top: 12px; left: 12px;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bcc-grad-yellow); color: var(--bcc-ink);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.05rem;
    box-shadow: var(--bcc-shadow-yellow);
}
.bcc-step h3 { font-size: 1.05rem; color: var(--bcc-navy); margin: 0; line-height: 1.35; }
.bcc-section--navy .bcc-step h3 { color: #fff; }
@media (max-width: 900px) { .bcc-steps { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 520px) { .bcc-steps { grid-template-columns: 1fr; } }

/* El ancla del formulario no debe quedar tapada por el header sticky */
#aplica { scroll-margin-top: 100px; }

/* ============================================================
   EQUIPO
   ============================================================ */
.bcc-team__card { text-align: center; }
.bcc-team__photo {
    aspect-ratio: 1 / 1;
    border-radius: var(--bcc-r-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #eaf0ff 0%, #d4e2ff 100%);
    margin-bottom: 16px;
    box-shadow: var(--bcc-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.bcc-team__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.bcc-team__card:hover .bcc-team__photo { transform: translateY(-5px); box-shadow: var(--bcc-shadow-md); }
.bcc-team__card h3 { font-size: 1.1rem; color: var(--bcc-navy); margin: 0 0 .2em; }
.bcc-team__role { color: var(--bcc-muted); font-size: .9rem; margin: 0; }

/* ============================================================
   CTA BAND / LINKS / PAGINACIÓN
   ============================================================ */
.bcc-cta-band {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--bcc-line);
    border-radius: var(--bcc-r-xl);
    padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 56px);
    box-shadow: var(--bcc-shadow-md);
}
.bcc-cta-band h2 { margin-bottom: .35em; }
.bcc-cta-band p { margin-bottom: 1.6em; color: var(--bcc-text); }
/* Dentro de una sección navy (p. ej. el CTA de "Sobre Nosotros") la banda va
   SIN caja blanca: el texto se lee directo sobre el azul. */
.bcc-section--navy .bcc-cta-band {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}
.bcc-section--navy .bcc-cta-band p { color: #cdd9f3; }
.bcc-link { font-weight: 700; color: var(--bcc-navy); }
.bcc-pagination { margin-top: 48px; text-align: center; }
.bcc-pagination .page-numbers {
    display: inline-block; padding: 8px 14px; margin: 0 3px;
    border-radius: 10px; background: var(--bcc-bg-blue); color: var(--bcc-navy); font-weight: 600;
}
.bcc-pagination .page-numbers.current { background: var(--bcc-navy); color: #fff; }

/* ============================================================
   FLOTANTES (WhatsApp + subir)
   ============================================================ */
.bcc-wa {
    position: fixed; right: 22px; bottom: 22px; z-index: 90;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.bcc-wa:hover { opacity: 1; transform: scale(1.05); transition: transform .2s; }
.bcc-totop {
    position: fixed; left: 22px; bottom: 22px; z-index: 89;
    width: 46px; height: 46px; border: 0; cursor: pointer; border-radius: 50%;
    background: var(--bcc-navy); color: #fff;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    box-shadow: var(--bcc-shadow-md);
}
.bcc-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============================================================
   FOOTER
   ============================================================ */
.bcc-footer { background: var(--bcc-grad-navy); color: #cdd9f3; padding: 64px 0 40px; text-align: center; }
.bcc-footer__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.bcc-footer__logo { display: inline-block; }
.bcc-footer__logo img { height: 300px; width: auto; max-width: 100%; display: block; margin: -40px auto; }
.bcc-footer__claim { font-size: 1.5rem; font-weight: 800; color: #fff; max-width: 18ch; line-height: 1.25; }
.bcc-footer__social { display: flex; gap: 14px; }
.bcc-footer__social a {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bcc-yellow); color: var(--bcc-navy);
    display: flex; align-items: center; justify-content: center;
}
.bcc-footer__social a:hover { opacity: 1; transform: translateY(-2px); transition: transform .2s; }
.bcc-footer__menu { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 6px 0; justify-content: center; }
.bcc-footer__menu a { color: #cdd9f3; font-size: .92rem; }
.bcc-footer__copy { font-size: .85rem; color: #8fa3cf; margin: 8px 0 0; }

/* ============================================================
   LANDING (captura)
   ============================================================ */
.bcc-landing__bar { background: #fff; padding: 16px 0; box-shadow: 0 2px 16px rgba(14,42,94,.08); }
.bcc-landing__bar .bcc-container { display: flex; justify-content: center; }
.bcc-landing__bar img { height: 64px; width: auto; }
.bcc-landing__hero { background: var(--bcc-grad-navy); color: #e3ecff; padding: clamp(40px,6vw,80px) 0; }
.bcc-landing__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(28px,4vw,56px); align-items: center; }
/* Marca (logo blanco del footer) centrada y grande arriba del hero */
.bcc-landing__brandwrap { text-align: center; padding-bottom: clamp(4px, 1.5vw, 14px); overflow: visible; }
.bcc-landing__brand-logo { display: inline-block; height: clamp(300px, 38vw, 420px); width: auto; max-width: 100%; margin: -86px 0 -56px; }

/* Asesor de la landing: arriba del título, foto grande en rectángulo
   vertical (object-position arriba para no cortar la cara). */
.bcc-landing__advisor { display: flex; align-items: center; gap: 22px; margin: 0 0 30px; }
.bcc-landing__advisor-img {
    width: clamp(160px, 20vw, 220px);
    aspect-ratio: 4 / 5; height: auto;
    object-fit: cover; object-position: top center; flex-shrink: 0;
    border-radius: var(--bcc-r-lg);
    border: 3px solid var(--bcc-yellow); box-shadow: var(--bcc-shadow-md);
}
.bcc-landing__advisor-meta { display: flex; flex-direction: column; line-height: 1.2; }
.bcc-landing__advisor-kicker { color: var(--bcc-yellow); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.bcc-landing__advisor-meta strong { color: #fff; font-size: clamp(1.2rem, 2.4vw, 1.55rem); }
.bcc-landing__pitch h1 { color: #fff; }
.bcc-landing__pitch p { font-size: 1.12rem; color: #c7d5f5; }
.bcc-landing__bullets { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.bcc-landing__bullets li { position: relative; padding-left: 32px; font-weight: 600; color: #fff; }
.bcc-landing__bullets li::before {
    content: '✓'; position: absolute; left: 0; top: -1px;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--bcc-yellow); color: var(--bcc-navy);
    display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800;
}
.bcc-landing__perks { align-items: start; }
.bcc-perk { text-align: center; color: #dbe6ff; }
.bcc-perk img { width: 88px; height: 88px; object-fit: contain; margin: 0 auto 12px; }
.bcc-perk span { font-weight: 600; font-size: .98rem; }
.bcc-landing__foot { background: var(--bcc-navy-deep); color: #8fa3cf; text-align: center; padding: 26px 0; font-size: .85rem; }
@media (max-width: 820px) {
    .bcc-landing__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO de page/single + PROSE (Gutenberg)
   ============================================================ */
.bcc-page__hero, .bcc-single__hero { background: var(--bcc-grad-navy); color: #fff; padding: clamp(48px,7vw,88px) 0 clamp(40px,5vw,64px); }
.bcc-page__hero { text-align: center; }
.bcc-page__hero h1 { color: #fff; max-width: 24ch; margin-inline: auto; }
.bcc-single__hero h1 { color: #fff; max-width: 22ch; }
.bcc-single__thumb { margin-top: -40px; }
.bcc-single__thumb img { width: 100%; border-radius: var(--bcc-r-lg); box-shadow: var(--bcc-shadow-lg); }
.bcc-single__body { max-width: 800px; padding-top: 48px; padding-bottom: 48px; }
.bcc-single__nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--bcc-line); flex-wrap: wrap; }

.bcc-prose { max-width: 800px; margin: 0 auto; font-size: 1.06rem; color: var(--bcc-text); }
.bcc-prose > * { margin-top: 0; margin-bottom: 1.2em; }
.bcc-prose h2 { margin-top: 1.6em; font-size: clamp(1.5rem,3vw,2rem); }
.bcc-prose h3 { margin-top: 1.4em; }
.bcc-prose img, .bcc-prose .wp-block-image { border-radius: var(--bcc-r-md); }
.bcc-prose a { color: var(--bcc-navy); text-decoration: underline; font-weight: 600; }
.bcc-prose ul, .bcc-prose ol { padding-left: 1.3em; }
.bcc-prose li { margin-bottom: .5em; }
.bcc-prose blockquote {
    border-left: 4px solid var(--bcc-yellow); margin: 1.6em 0; padding: 8px 0 8px 22px;
    font-size: 1.15rem; font-style: italic; color: var(--bcc-ink);
}
.bcc-prose .wp-block-button__link { background: var(--bcc-grad-yellow); color: var(--bcc-ink); border-radius: var(--bcc-r-pill); font-weight: 700; }

/* ============================================================
   WPForms — reskin tipo píldora (sin tocar el plugin)
   ============================================================ */
.bcc-formwrap .wpforms-field-label { font-weight: 600 !important; color: var(--bcc-ink) !important; font-size: .9rem !important; }
.bcc-formwrap .wpforms-field { padding: 8px 0 !important; }
.bcc-formwrap input[type=text],
.bcc-formwrap input[type=email],
.bcc-formwrap input[type=tel],
.bcc-formwrap input[type=number],
.bcc-formwrap select,
.bcc-formwrap textarea {
    width: 100% !important;
    border: 1.5px solid #ccd6ee !important;
    border-radius: var(--bcc-r-pill) !important;
    padding: 13px 18px !important;
    font-family: var(--bcc-font) !important;
    font-size: 15px !important;
    color: var(--bcc-ink) !important;
    background: #fff !important;
    transition: border-color .2s ease, box-shadow .2s ease !important;
    box-shadow: none !important;
}
.bcc-formwrap textarea { border-radius: var(--bcc-r-md) !important; min-height: 130px !important; }
.bcc-formwrap input:focus, .bcc-formwrap select:focus, .bcc-formwrap textarea:focus {
    outline: 0 !important;
    border-color: var(--bcc-navy) !important;
    box-shadow: 0 0 0 4px rgba(14,42,94,.12) !important;
}
.bcc-formwrap .wpforms-submit {
    background: var(--bcc-grad-yellow) !important;
    color: var(--bcc-ink) !important;
    border: 0 !important;
    border-radius: var(--bcc-r-pill) !important;
    font-family: var(--bcc-font) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 14px 36px !important;
    cursor: pointer !important;
    box-shadow: var(--bcc-shadow-yellow) !important;
    transition: transform .15s ease !important;
}
.bcc-formwrap .wpforms-submit:hover { transform: translateY(-2px) !important; }

/* --- Fix dropdowns (select nativo y WPForms "modern"/choices.js) --- */
.bcc-formwrap select {
    height: auto !important;
    min-height: 52px !important;
    line-height: 1.4 !important;
    padding: 12px 44px 12px 18px !important;
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230e2a5e' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    text-overflow: ellipsis;
}
/* WPForms Modern dropdown (Choices.js) */
.bcc-formwrap .choices { margin-bottom: 0 !important; }
.bcc-formwrap .choices__inner {
    min-height: 52px !important;
    border: 1.5px solid #ccd6ee !important;
    border-radius: var(--bcc-r-pill) !important;
    background: #fff !important;
    padding: 8px 18px !important;
    font-size: 15px !important;
    display: flex !important; align-items: center !important;
}
.bcc-formwrap .choices__list--single { padding: 0 16px 0 0 !important; }
.bcc-formwrap .choices[data-type*="select-one"]::after { right: 18px !important; border-color: var(--bcc-navy) transparent transparent !important; }
.bcc-formwrap .choices__list--dropdown,
.bcc-formwrap .choices__list[role="listbox"] {
    border: 1px solid #ccd6ee !important;
    border-radius: var(--bcc-r-md) !important;
    box-shadow: var(--bcc-shadow-md) !important;
    z-index: 50 !important;
}
.bcc-formwrap .choices__list--dropdown .choices__item { padding: 10px 16px !important; }

/* --- Sección "detach": separa del footer mostrando el blanco de fondo --- */
.bcc-section--detach { margin-bottom: clamp(40px, 6vw, 80px); }

/* --- About: logo en vez de imagen --- */
.bcc-about__logo { text-align: center; }
.bcc-about__logo img { width: 100%; max-width: 460px; height: auto; margin: 0 auto; }

/* --- Contacto --- */
.bcc-contact { display: grid; grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.bcc-contact .bcc-formwrap { max-width: none; width: 100%; margin: 0; padding: clamp(24px, 2.5vw, 38px); }

/* WPForms: los campos "medium/small" salen angostos por defecto -> ancho completo */
.bcc-formwrap .wpforms-field-medium,
.bcc-formwrap .wpforms-field-small,
.bcc-formwrap .wpforms-field-large,
.bcc-formwrap .wpforms-field input,
.bcc-formwrap .wpforms-field select,
.bcc-formwrap .wpforms-field textarea,
.bcc-formwrap .choices { max-width: 100% !important; width: 100% !important; }
.bcc-contact__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.bcc-contact__list a { display: flex; align-items: center; gap: 14px; color: var(--bcc-text); font-weight: 500; }
.bcc-contact__list a:hover { opacity: 1; color: var(--bcc-navy); }
.bcc-contact__ic {
    flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
    background: var(--bcc-bg-blue); color: var(--bcc-navy);
    display: flex; align-items: center; justify-content: center;
}
@media (max-width: 820px) { .bcc-contact { grid-template-columns: 1fr; } }

/* --- Footer: link legal --- */
.bcc-footer__legal { margin: 4px 0 0; }
.bcc-footer__legal a { color: #cdd9f3; font-size: .9rem; text-decoration: underline; }

/* --- Landing/2º form: logo grande y centrado en barra blanca --- */
.bcc-landing__bar img { height: 78px; width: auto; }
@media (max-width: 640px) { .bcc-landing__bar img { height: 60px; } }

/* --- 2º form: caja más ancha para que quepan las filas de 3 columnas --- */
.bcc-formwrap--wide { max-width: 1160px; }

/* --- 2º form: cabecera navy (logo blanco) + arreglo del título (era azul sobre azul) --- */
.bcc-thankyou__hero { padding-top: clamp(26px, 4vw, 46px); }
.bcc-thankyou__logo { display: block; margin: -78px auto -8px; height: clamp(296px, 36vw, 410px); width: auto; max-width: 100%; }
.bcc-thankyou__hero h1 { color: #fff; }
.bcc-thankyou__check { color: #fff; margin-bottom: 4px; }
/* Página final "Formulario Completado": ocupa toda la pantalla y fija el footer
   abajo, para que no asome la franja blanca del body. */
.bcc-completado { min-height: 100vh; display: flex; flex-direction: column; background: var(--bcc-navy-deep); }
.bcc-completado .bcc-thankyou__hero { flex: 1 0 auto; display: flex; align-items: center; min-height: 0; }
.bcc-completado .bcc-landing__foot { flex-shrink: 0; }

/* --- Sección compacta + separador decorativo (Inicio: video) --- */
.bcc-section--tight { padding-top: clamp(16px, 2.5vw, 28px); padding-bottom: clamp(16px, 2.5vw, 28px); }
.bcc-section--tight .bcc-video { margin-bottom: 0; }
.bcc-divider {
    width: clamp(180px, 55vw, 620px); height: 4px; border-radius: 999px;
    margin: clamp(26px, 4vw, 44px) auto 0;
    background: linear-gradient(90deg, transparent, var(--bcc-navy) 25%, var(--bcc-yellow) 75%, transparent);
}

/* --- Fix selectores de FECHA de WPForms (mes/día/año salían "trimmeados") ---
   Los 3 sub-selects van en fila; se les baja el padding derecho de la flecha y
   se les da ancho mínimo para que el texto no quede cortado. */
.bcc-formwrap .wpforms-field-date-time select,
.bcc-formwrap select[class*="wpforms-field-date-time-"] {
    min-width: 0 !important;
    padding-right: 32px !important;
    background-position: right 11px center !important;
}
.bcc-formwrap .wpforms-field-date-time .wpforms-field-row-block { padding-right: 10px !important; }
.bcc-formwrap .wpforms-field-date-time .wpforms-field-row-block:last-child { padding-right: 0 !important; }

/* --- Animación del mensaje verde de confirmación de WPForms (para todos) --- */
.wpforms-confirmation-container-full,
.wpforms-confirmation-container {
    animation: bcc-conf-in .45s ease both;
}
@keyframes bcc-conf-in {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to   { opacity: 1; transform: none; }
}
/* Aviso "Te estamos redireccionando…" + spinner (solo forms de captación) */
.bcc-conf__redir {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin: 14px 0 0; font-weight: 700; color: var(--bcc-navy);
}
.bcc-conf__spin {
    width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
    border: 3px solid rgba(14,42,94,.22); border-top-color: var(--bcc-navy);
    animation: bcc-spin .7s linear infinite;
}
@keyframes bcc-spin { to { transform: rotate(360deg); } }
