/**
 * BizWhats — Landing page pública
 * Misma línea visual que login (Plus Jakarta · verde · split · glass)
 */

body.bw-landing-page {
    font-family: 'Plus Jakarta Sans', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
    box-sizing: border-box;
}

body.bw-landing-page *,
body.bw-landing-page *::before,
body.bw-landing-page *::after {
    box-sizing: inherit;
}

/* Nav — mismo tono que footer (#0f172a) para logo claro */
.bw-landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.875rem clamp(1rem, 3vw, 2rem);
    padding-top: max(0.875rem, env(safe-area-inset-top));
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.bw-landing-nav.is-scrolled {
    background: #0f172a;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.bw-landing-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.bw-landing-nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bw-landing-nav__logo img {
    width: auto;
    height: auto;
    max-height: 72px;
    max-width: min(320px, 32vw);
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
}

.bw-landing-nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.bw-landing-nav__links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.bw-landing-nav__links a:hover {
    color: #86efac;
}

.bw-landing-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.bw-landing-nav__menu {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.bw-landing-nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 0;
    color: #fff;
    cursor: pointer;
    z-index: 102;
    position: relative;
}

.bw-landing-nav__menu-head,
.bw-landing-nav__backdrop {
    display: none;
}

/* Nav escritorio */
@media (min-width: 992px) {
    .bw-landing-nav__inner {
        gap: 1.5rem;
    }

    .bw-landing-nav__menu {
        flex: 1;
        justify-content: flex-end;
    }

    .bw-landing-nav__links a {
        padding: 0.35rem 0;
        position: relative;
    }

    .bw-landing-nav__links a::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: #37ce03;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.2s ease;
    }

    .bw-landing-nav__links a:hover::after {
        transform: scaleX(1);
    }

    .bw-landing-nav .bw-landing-btn {
        padding: 0.6rem 1.15rem;
    }

    .bw-landing-hero {
        padding-top: calc(5.75rem + clamp(1.5rem, 4vw, 2.5rem));
    }
}

.bw-landing-nav .bw-landing-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.bw-landing-nav .bw-landing-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.bw-landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bw-landing-btn--ghost {
    background: transparent;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.bw-landing-btn--ghost:hover {
    border-color: #37ce03;
    color: #2db002;
    text-decoration: none;
}

.bw-landing-btn--primary {
    background: linear-gradient(135deg, #37ce03 0%, #2db002 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(55, 206, 3, 0.28);
}

.bw-landing-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(55, 206, 3, 0.35);
    color: #fff;
    text-decoration: none;
}

.bw-landing-btn--lg {
    padding: 0.75rem 1.35rem;
    font-size: 0.9375rem;
}

/* Hero — centrado + carrusel */
.bw-landing-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(4.5rem + clamp(1.5rem, 4vw, 2.5rem)) clamp(1rem, 4vw, 2rem) clamp(2rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(55, 206, 3, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 100%, rgba(37, 211, 102, 0.06) 0%, transparent 45%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.bw-landing-hero__inner {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.bw-landing-hero__content {
    width: 100%;
    text-align: center;
}

.bw-landing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(55, 206, 3, 0.12);
    color: #2db002;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bw-landing-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f172a;
    margin: 0 0 1rem;
}

.bw-landing-hero__title span {
    color: #2db002;
}

.bw-landing-hero__lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    color: #64748b;
    margin: 0 auto 1.5rem;
    max-width: 580px;
}

.bw-landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    justify-content: center;
    align-items: center;
}

.bw-landing-hero__actions .bw-landing-btn {
    min-width: min(100%, 240px);
}

.bw-landing-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.bw-landing-stat {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
    text-align: center;
}

.bw-landing-stat strong {
    display: block;
    font-size: 1.125rem;
    color: #0f172a;
}

.bw-landing-stat span {
    font-size: 0.75rem;
    color: #64748b;
}

/* Carrusel hero */
.bw-landing-carousel {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.bw-landing-carousel__viewport {
    overflow: hidden;
    border-radius: 16px;
}

.bw-landing-carousel__track {
    position: relative;
    min-height: 200px;
}

.bw-landing-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.bw-landing-carousel__slide.is-active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.bw-landing-carousel__slide.is-exiting {
    position: absolute;
    opacity: 0;
    transform: translateX(-12px);
}

.bw-landing-carousel__card {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    text-align: center;
}

.bw-landing-carousel__icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(55, 206, 3, 0.12);
    color: #2db002;
    font-size: 1.35rem;
}

.bw-landing-carousel__icon.is-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.bw-landing-carousel__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}

.bw-landing-carousel__text {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
}

.bw-landing-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.bw-landing-carousel__arrow {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.bw-landing-carousel__arrow:hover {
    border-color: #37ce03;
    color: #2db002;
    background: #f0fdf4;
}

.bw-landing-carousel__dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.bw-landing-carousel__dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.bw-landing-carousel__dot.is-active {
    width: 1.35rem;
    background: #37ce03;
}

.bw-landing-carousel__dot:hover {
    background: #94a3b8;
}

.bw-landing-carousel__dot.is-active:hover {
    background: #2db002;
}

/* Secciones */
.bw-landing-section {
    padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.bw-landing-section--alt {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.bw-landing-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.bw-landing-section__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.bw-landing-section__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2db002;
    margin-bottom: 0.5rem;
}

.bw-landing-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #0f172a;
}

.bw-landing-section__subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Grid módulos */
.bw-landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.bw-landing-card {
    padding: 1.35rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bw-landing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.bw-landing-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(55, 206, 3, 0.12);
    color: #2db002;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.bw-landing-card__icon .fab.fa-whatsapp {
    color: #25d366;
}

.bw-landing-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #0f172a;
}

.bw-landing-card p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* Pasos (dentro de banda CTA) */
.bw-landing-cta .bw-landing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    text-align: left;
}

.bw-landing-cta .bw-landing-step {
    padding: 1.35rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bw-landing-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #37ce03, #2db002);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px rgba(55, 206, 3, 0.35);
    margin-bottom: 0.85rem;
}

.bw-landing-cta .bw-landing-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: #fff;
}

.bw-landing-cta .bw-landing-step p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    margin: 0;
}

/* Banda CTA (contacto + implementación) */
.bw-landing-cta {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 41, 59, 0.94) 45%, rgba(36, 153, 2, 0.9) 100%);
    color: #fff;
    text-align: center;
}

.bw-landing-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.bw-landing-cta__head {
    max-width: 640px;
    margin: 0 auto 2.25rem;
}

.bw-landing-cta__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #86efac;
    margin: 0 0 0.5rem;
}

.bw-landing-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #fff;
}

.bw-landing-cta__lead {
    max-width: 520px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
}

.bw-landing-cta--steps .bw-landing-cta__lead {
    margin-bottom: 0;
}

.bw-landing-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.bw-landing-cta__actions--contact {
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.bw-landing-cta__actions--contact .bw-landing-btn--light {
    justify-content: center;
    text-align: center;
    max-width: min(100%, 420px);
    width: auto;
}

/* Planes */
.bw-landing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.bw-landing-plan {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-sizing: border-box;
}

.bw-landing-plan--featured {
    border-color: #37ce03;
    box-shadow: 0 12px 40px rgba(55, 206, 3, 0.15);
    position: relative;
    padding-top: 2rem;
}

.bw-landing-plan__badge {
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    background: #37ce03;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bw-landing-plan h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.bw-landing-plan__price {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0.5rem 0;
}

.bw-landing-plan__price small {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.bw-landing-plan ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
    flex: 1 1 auto;
    min-height: 0;
}

.bw-landing-plan li {
    font-size: 0.8125rem;
    color: #475569;
    padding: 0.35rem 0;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    word-break: break-word;
}

.bw-landing-plan li i {
    color: #37ce03;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.bw-landing-plan .bw-landing-btn {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.bw-landing-plan__action {
    margin-top: auto;
    padding-top: 0.25rem;
    width: 100%;
}

/* CTA final — estilos compartidos arriba en .bw-landing-cta */

.bw-landing-btn--light {
    background: #fff;
    color: #0f172a;
}

.bw-landing-btn--light:hover {
    background: #f0fdf4;
    color: #2db002;
    text-decoration: none;
}

.bw-landing-btn--outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.bw-landing-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
}

/* Footer */
.bw-landing-footer {
    padding: 2rem clamp(1rem, 4vw, 2rem);
    background: #0f172a;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
}

.bw-landing-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.bw-landing-footer a {
    color: #37ce03;
    font-weight: 600;
    text-decoration: none;
}

.bw-landing-footer a:hover {
    text-decoration: underline;
}

.bw-landing-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bw-landing-footer__brand img {
    height: auto;
    max-height: 44px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
}

.bw-landing-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.25rem;
}

.bw-landing-footer__legal a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.bw-landing-footer__legal a:hover {
    color: #37ce03;
    text-decoration: none;
}

/* Páginas legales */
.bw-legal-page {
    padding: calc(5.75rem + 1.5rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 6vw, 4rem);
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    min-height: 100vh;
    min-height: 100dvh;
}

.bw-legal-page__inner {
    max-width: 760px;
    margin: 0 auto;
}

.bw-legal-page__head {
    margin-bottom: 2rem;
}

.bw-legal-page__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #16a34a;
}

.bw-legal-page__head h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.2;
    color: #0f172a;
}

.bw-legal-page__updated {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.bw-legal-content {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: clamp(1.25rem, 4vw, 2rem);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #334155;
}

.bw-legal-content h2 {
    margin: 2rem 0 0.75rem;
    font-size: 1.125rem;
    line-height: 1.35;
    color: #0f172a;
}

.bw-legal-content h2:first-child {
    margin-top: 0;
}

.bw-legal-content h3 {
    margin: 1.25rem 0 0.5rem;
    font-size: 1rem;
    color: #1e293b;
}

.bw-legal-content p,
.bw-legal-content ul,
.bw-legal-content ol {
    margin: 0 0 1rem;
}

.bw-legal-content ul,
.bw-legal-content ol {
    padding-left: 1.35rem;
}

.bw-legal-content li {
    margin-bottom: 0.35rem;
}

.bw-legal-content a {
    color: #15803d;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bw-legal-content a:hover {
    color: #16a34a;
}

.bw-legal-content__template {
    margin: 0 0 1rem;
    padding: 1rem 1.15rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8125rem;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
    color: #475569;
}

.bw-landing-nav__links a[aria-current="page"] {
    color: #86efac;
}

/* Mobile nav */
@media (max-width: 991.98px) {
    .bw-landing-nav__toggle {
        display: inline-flex;
    }

    .bw-landing-nav.is-menu-open .bw-landing-nav__toggle {
        visibility: hidden;
        pointer-events: none;
    }

    .bw-landing-nav__logo img {
        max-height: 64px;
        max-width: min(320px, 88vw);
    }

    .bw-landing-nav__menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .bw-landing-nav__menu-logo {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 0;
    }

    .bw-landing-nav__menu-logo img {
        width: auto;
        height: auto;
        max-height: 72px;
        max-width: min(300px, 100%);
        object-fit: contain;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    }

    .bw-landing-nav__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        padding: 0;
        border: none;
        border-radius: 6px;
        background: transparent;
        color: rgba(255, 255, 255, 0.75);
        font-size: 1.125rem;
        cursor: pointer;
        transition: color 0.2s ease, background 0.2s ease;
    }

    .bw-landing-nav__close:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }

    .bw-landing-nav__backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 98;
        background: rgba(15, 23, 42, 0.55);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .bw-landing-nav__backdrop.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .bw-landing-nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 100vw);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #0f172a;
        padding: max(1rem, env(safe-area-inset-top)) 1.25rem max(1.5rem, env(safe-area-inset-bottom));
        padding-right: max(1.25rem, env(safe-area-inset-right));
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateX(100%);
        transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 101;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bw-landing-nav__menu .bw-landing-nav__links a {
        color: rgba(255, 255, 255, 0.92);
    }

    .bw-landing-nav__menu.is-open {
        transform: translateX(0);
    }

    body.bw-landing-menu-open {
        overflow: hidden;
    }

    .bw-landing-nav__links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        margin: 0 0 0.5rem;
        padding: 0;
    }

    .bw-landing-nav__links li {
        width: 100%;
    }

    .bw-landing-nav__links a {
        display: block;
        width: 100%;
        padding: 0.8rem 0.15rem;
        font-size: 1.0625rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        background: none;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .bw-landing-nav__links li:last-child a {
        border-bottom: none;
    }

    .bw-landing-nav__links a:hover {
        background: none;
        color: #86efac;
    }

    .bw-landing-nav__actions {
        flex-direction: column;
        width: 100%;
        margin-top: auto;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0.65rem;
    }

    .bw-landing-nav__actions .bw-landing-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }

    .bw-landing-hero__stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .bw-landing-hero__actions .bw-landing-btn {
        width: auto;
        max-width: 100%;
    }
}

/* Volver arriba */
.bw-landing-back-top {
    position: fixed;
    right: max(1.15rem, env(safe-area-inset-right));
    bottom: max(1.15rem, env(safe-area-inset-bottom));
    z-index: 95;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #37ce03 0%, #2db002 100%);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(55, 206, 3, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.92);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.2s ease;
}

.bw-landing-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.bw-landing-back-top:hover {
    box-shadow: 0 8px 24px rgba(55, 206, 3, 0.45);
    transform: translateY(-2px) scale(1);
}

.bw-landing-back-top.is-visible:hover {
    transform: translateY(-2px) scale(1);
}

.bw-landing-back-top:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(55, 206, 3, 0.35), 0 6px 20px rgba(55, 206, 3, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .bw-landing-card,
    .bw-landing-btn,
    .bw-landing-nav,
    .bw-landing-carousel__slide,
    .bw-landing-back-top,
    .bw-landing-nav__menu,
    .bw-landing-nav__backdrop {
        transition: none;
    }
}
