/* ==========================================================================
   Landing page — Atlético Nacional productos licenciados
   ========================================================================== */

body.landing-page {
    background: #fff;
    overflow-x: hidden;
}

.landing-preview-banner {
    position: sticky;
    top: 0;
    z-index: 1040;
    padding: 0.55rem 1rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #7a5c00, var(--nacional-dorado));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.landing-main {
    position: relative;
    z-index: 1;
}

/* Impacto — primera pantalla */
.landing-impacto {
    position: relative;
    padding: 6.5rem 0 2rem;
    background: linear-gradient(165deg, #001a0f 0%, var(--nacional-verde-oscuro) 45%, var(--nacional-verde) 100%);
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.landing-impacto__glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 165, 114, 0.2) 0%, transparent 65%);
    pointer-events: none;
    animation: impacto-glow 4s ease-in-out infinite;
}

@keyframes impacto-glow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.landing-impacto__content {
    max-width: 720px;
    margin: 0 auto;
}

.landing-impacto__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 165, 114, 0.2);
    border: 1px solid rgba(197, 165, 114, 0.45);
    color: var(--nacional-dorado);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    animation: impacto-shine 3s ease-in-out infinite;
}

@keyframes impacto-shine {
    0%, 100% { box-shadow: 0 0 0 rgba(197, 165, 114, 0); }
    50% { box-shadow: 0 0 24px rgba(197, 165, 114, 0.35); }
}

.landing-impacto__title {
    font-size: clamp(1.85rem, 5.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.landing-impacto__subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.landing-impacto__sello {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.65;
    margin: 0;
}

.landing-section--productos {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
    background: #fff;
    position: relative;
    z-index: 2;
}

.landing-divisor {
    text-align: center;
    padding: 1.5rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--nacional-gris) 100%);
}

.landing-divisor span {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nacional-verde);
    padding: 0.35rem 1rem;
    border-top: 2px solid var(--nacional-dorado);
}

.landing-hero--compact {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

html.landing-js .landing-impacto .reveal:not(.reveal--visible) {
    opacity: 0;
    transform: translateY(20px);
}

.landing-impacto .reveal {
    opacity: 1;
    transform: none;
}

.landing-pitch-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.landing-pitch-bg__svg {
    width: 100%;
    height: 100%;
    will-change: transform;
    transition: transform 0.1s linear;
}

body.landing-scrolled .landing-pitch-bg {
    opacity: 1;
}

.landing-main > .container.mt-3 {
    padding-top: 5rem;
}

/* Navbar landing */
.navbar-landing {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1rem 0;
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.navbar-landing--scrolled {
    background: rgba(0, 77, 44, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    padding: 0.6rem 0;
}

.navbar-landing .navbar-brand,
.navbar-landing .nav-link {
    color: #fff !important;
}

.navbar-landing .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.navbar-landing .nav-link:hover {
    opacity: 1;
    color: var(--nacional-dorado) !important;
}

.navbar-landing .btn-nav-cta {
    background: #fff;
    color: var(--nacional-verde) !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.45rem 1.25rem !important;
    font-size: 0.875rem;
}

.navbar-landing .btn-nav-cta:hover {
    background: var(--nacional-dorado);
    color: var(--nacional-verde-oscuro) !important;
}

/* Scroll reveal — el hero se ve aunque falle JS */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-hero .reveal {
    opacity: 1;
    transform: none;
}

html.landing-js .landing-hero .reveal:not(.reveal--visible) {
    opacity: 0;
    transform: translateY(24px);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero */
.landing-hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(160deg, #002a18 0%, var(--nacional-verde-oscuro) 40%, var(--nacional-verde) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.landing-hero__pitch {
    position: absolute;
    inset: 0;
    opacity: 0.7;
    pointer-events: none;
}

.landing-hero__pitch-svg {
    width: 100%;
    height: 100%;
    animation: pitch-drift 20s linear infinite;
}

@keyframes pitch-drift {
    0% { transform: scale(1.05) translateX(0); }
    50% { transform: scale(1.08) translateX(-2%); }
    100% { transform: scale(1.05) translateX(0); }
}

.landing-hero__shield {
    display: flex;
    justify-content: center;
    animation: shield-float 5s ease-in-out infinite;
}

.landing-hero__shield-svg {
    width: min(220px, 100%);
    height: auto;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.3));
}

@keyframes shield-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.landing-shield--pulse {
    animation: shield-glow 1.5s ease-out;
}

@keyframes shield-glow {
    0% { filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.3)); }
    50% { filter: drop-shadow(0 16px 48px rgba(197, 165, 114, 0.5)); }
    100% { filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.3)); }
}

.landing-btn-glow {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: btn-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 4px 32px rgba(255, 255, 255, 0.45); }
}

.landing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.landing-hero__title {
    font-size: clamp(2.2rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.02em;
}

.landing-hero__title em {
    font-style: normal;
    color: var(--nacional-dorado);
}

.landing-hero__lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 420px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.landing-hero__actions .btn {
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
}

.landing-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.25rem;
    text-align: center;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.landing-hero__visual {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.landing-hero__imagen {
    max-height: min(420px, 55vh);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.35));
    animation: hero-img-float 5s ease-in-out infinite;
}

@keyframes hero-img-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.landing-hero__imagen-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.landing-hero__imagen-placeholder i {
    font-size: 3rem;
    color: var(--nacional-dorado);
    display: block;
    margin-bottom: 1rem;
}

.landing-hero__imagen-placeholder span {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.landing-hero__imagen-placeholder small {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.65;
    font-size: 0.8rem;
}

@media (max-width: 991px) {
    .landing-hero__imagen {
        max-height: 280px;
        margin-top: 0.5rem;
    }

    .landing-hero__title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .landing-hero__actions .btn {
        width: 100%;
    }

    .landing-hero__actions .btn + .btn {
        margin-top: 0;
    }
}

/* Secciones comunes */
.landing-section {
    padding: 3.5rem 0;
}

.landing-section--gris {
    background: var(--nacional-gris);
}

.landing-section--pitch {
    position: relative;
}

.landing-section--pitch::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 107, 63, 0.03) 0%, transparent 50%, rgba(0, 107, 63, 0.02) 100%);
    pointer-events: none;
}

/* Recuadros producto — preview rotativo + galería al clic */
.landing-productos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .landing-productos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 992px) {
    .landing-productos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.landing-producto-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 107, 63, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.landing-producto-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 107, 63, 0.14);
}

.landing-producto-box__preview {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(180deg, #f8faf9, #eef5f1);
    overflow: hidden;
}

.landing-producto-box__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.landing-producto-box__img.is-active {
    opacity: 1;
    transform: scale(1);
}

.landing-producto-box__contador {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 77, 44, 0.85);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
}

.landing-producto-box__body {
    padding: 0.85rem 1rem 1rem;
    text-align: center;
}

.landing-producto-box__titulo {
    font-size: 1rem;
    font-weight: 800;
    color: var(--nacional-verde-oscuro);
    margin: 0 0 0.25rem;
}

.landing-producto-box__hint {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Modal galería producto */
.landing-modal-galeria {
    background: #fff;
}

.landing-galeria-carousel {
    background: #f8faf9;
    border-radius: 16px;
    overflow: hidden;
}

.landing-galeria-slide {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.landing-galeria-slide__img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
}

.landing-galeria-carousel__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--nacional-verde);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    font-size: 1.25rem;
}

.landing-galeria-indicators {
    position: static;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.landing-galeria-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 107, 63, 0.3);
}

.landing-galeria-indicators button.active {
    background-color: var(--nacional-verde);
}

.landing-section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nacional-verde);
    margin-bottom: 0.75rem;
}

.landing-section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    line-height: 1.2;
}

.landing-section__subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 560px;
}

/* Franja confianza */
.landing-confia {
    background: #fff;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 107, 63, 0.08);
    position: relative;
    z-index: 2;
}

.landing-confia__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 991px) {
    .landing-confia__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.landing-confia__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 20px;
    background: var(--nacional-gris);
    border: 1px solid rgba(0, 107, 63, 0.08);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
    overflow: hidden;
}

.reveal--visible.landing-confia__item {
    animation: confia-pop 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal--visible.landing-confia__item.reveal-delay-2 {
    animation-delay: 0.12s;
}

.reveal--visible.landing-confia__item.reveal-delay-3 {
    animation-delay: 0.24s;
}

@keyframes confia-pop {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.landing-confia__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 107, 63, 0.12);
}

.landing-confia__media {
    width: 100%;
    margin-bottom: 0.75rem;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.landing-confia__foto {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    display: block;
    padding: 0.75rem;
    transition: transform 0.5s ease;
}

.landing-confia__item:hover .landing-confia__foto {
    transform: scale(1.04);
}

.landing-confia__placeholder {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 107, 63, 0.25);
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f8faf9, #eef5f1);
}

.landing-confia__item strong {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.landing-confia__item span {
    font-size: 0.85rem;
    color: #6c757d;
}

/* 3 pasos — juego */
.landing-juego {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.landing-juego__paso {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    border: 1px solid rgba(0, 107, 63, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.landing-juego__paso:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 107, 63, 0.12);
}

.landing-juego__numero {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--nacional-verde);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 107, 63, 0.35);
}

.landing-juego__icon {
    margin: 0.5rem auto 1rem;
    line-height: 0;
}

.landing-juego__icon--gol {
    animation: gol-celebrate 3s ease-in-out infinite;
}

@keyframes gol-celebrate {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15) rotate(-5deg); }
    30% { transform: scale(1) rotate(0); }
}

.landing-juego__paso h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.landing-juego__paso p {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.landing-juego__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--nacional-verde);
    text-decoration: none;
}

.landing-juego__link:hover {
    color: var(--nacional-verde-oscuro);
    text-decoration: underline;
}

.landing-juego__flecha {
    display: flex;
    align-items: center;
    align-self: center;
    opacity: 0.6;
}

@media (max-width: 767px) {
    .landing-juego,
    .landing-juego--vertical {
        flex-direction: column;
        align-items: stretch;
        gap: 1.75rem;
    }

    .landing-juego__flecha {
        display: none;
    }

    .landing-juego__paso {
        max-width: none;
        min-width: 0;
        width: 100%;
        margin: 0;
    }

    .landing-juego__paso + .landing-juego__paso {
        position: relative;
    }

    .landing-juego__paso + .landing-juego__paso::before {
        content: '';
        position: absolute;
        top: -1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 0.75rem;
        background: var(--nacional-dorado);
        opacity: 0.5;
    }
}

/* Modal zoom productos */
.landing-modal-zoom {
    background: #fff;
}

.landing-modal-zoom__frame {
    background: #f8faf9;
    border-radius: 16px;
    padding: 1rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-modal-zoom__img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

#modalZoomProducto {
    z-index: 1060;
}

#modalZoomProducto .modal-backdrop {
    z-index: 1055;
}

.landing-alerta--compact {
    padding: 1.25rem 1.5rem;
}

.landing-cta-final__ball {
    margin-bottom: 1rem;
    animation: cta-star-pulse 2.4s ease-in-out infinite;
}

@keyframes cta-star-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}

/* Legacy cards (otras páginas) */
.landing-producto-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease;
    cursor: pointer;
}

.landing-producto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 107, 63, 0.15);
}

.landing-producto-card__img-wrap {
    aspect-ratio: 1;
    background: linear-gradient(180deg, #f8faf9 0%, #eef5f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.landing-producto-card__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.landing-producto-card:hover .landing-producto-card__img {
    transform: scale(1.06);
}

.landing-producto-card__body {
    padding: 1rem 1.25rem 1.25rem;
}

.landing-producto-card__title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
    margin: 0;
}

.landing-producto-card__sello {
    font-size: 0.7rem;
    color: var(--nacional-verde);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Beneficios */
.landing-beneficio {
    background: #fff;
    border-radius: 24px;
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.landing-beneficio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--nacional-verde), var(--nacional-dorado));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.landing-beneficio:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 107, 63, 0.12);
}

.landing-beneficio:hover::before {
    transform: scaleX(1);
}

.landing-beneficio__icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.landing-beneficio__icon--legal {
    background: rgba(0, 107, 63, 0.1);
    color: var(--nacional-verde);
}

.landing-beneficio__icon--club {
    background: rgba(197, 165, 114, 0.2);
    color: #8b6914;
}

.landing-beneficio__icon--sorteo {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.landing-beneficio__title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.landing-beneficio__text {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.55;
}

/* Timeline cómo comprar */
.landing-pasos {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.landing-pasos::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--nacional-verde), var(--nacional-dorado));
    opacity: 0.3;
}

.landing-paso {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.landing-paso:last-child {
    margin-bottom: 0;
}

.landing-paso__numero {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--nacional-verde);
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 107, 63, 0.35);
    z-index: 1;
}

.landing-paso__contenido {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.landing-paso__titulo {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.landing-paso__texto {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.55;
}

.landing-paso__opciones {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.landing-paso__opcion {
    flex: 1;
    min-width: 200px;
    background: var(--nacional-gris);
    border-radius: 14px;
    padding: 1rem;
    font-size: 0.875rem;
}

.landing-paso__opcion strong {
    display: block;
    color: var(--nacional-verde);
    margin-bottom: 0.25rem;
}

.landing-paso__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.landing-paso__tag {
    background: rgba(0, 107, 63, 0.08);
    color: var(--nacional-verde);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

/* Alerta estafas compacta */
.landing-alerta {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border: 1px solid rgba(220, 53, 69, 0.15);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.landing-alerta__icono {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.landing-alerta__texto {
    flex: 1;
    min-width: 200px;
}

.landing-alerta__texto h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.landing-alerta__texto p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* CTA final */
.landing-cta-final {
    background: linear-gradient(145deg, var(--nacional-verde-oscuro), var(--nacional-verde));
    border-radius: 32px;
    padding: 3.5rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.landing-cta-final::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(197, 165, 114, 0.12);
    border-radius: 50%;
    top: -50%;
    right: -10%;
}

.landing-cta-final__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
}

.landing-cta-final__text {
    opacity: 0.9;
    max-width: 480px;
    margin: 0 auto 2rem;
    position: relative;
}

.landing-cta-final .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    position: relative;
}

/* Footer landing */
.footer-landing {
    background: #0a2e1c;
    color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 0;
}

.footer-landing a {
    color: var(--nacional-dorado);
    text-decoration: none;
}

.footer-landing a:hover {
    color: #fff;
}

.footer-landing a:hover {
    color: #fff;
}

/* Navbar páginas internas públicas */
.navbar-publico {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(0, 77, 44, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 0;
}

.navbar-publico .navbar-brand,
.navbar-publico .nav-link {
    color: #fff !important;
}

.navbar-publico .nav-link:hover {
    color: var(--nacional-dorado) !important;
}

.navbar-publico .btn-nav-cta {
    background: #fff;
    color: var(--nacional-verde) !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.45rem 1.25rem !important;
}

.public-main:not(.landing-main) {
    padding-top: 0;
}

.public-main:not(.landing-main) > .container.mt-3 {
    padding-top: 1rem;
}

/* Páginas internas */
.public-page-hero {
    background: linear-gradient(145deg, var(--nacional-verde-oscuro), var(--nacional-verde));
    color: #fff;
    padding: 6rem 0 3rem;
    margin-top: 0;
}

.public-page-hero .landing-section__eyebrow {
    color: var(--nacional-dorado);
}

.public-page-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.public-page-hero__subtitle {
    font-size: 1.05rem;
    opacity: 0.88;
    max-width: 560px;
}

.public-page-section {
    padding: 3rem 0 4rem;
    background: var(--nacional-gris);
}

.public-page-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.public-qr-scanner {
    background: #f8faf9;
    min-height: 280px;
    border: 2px dashed rgba(0, 107, 63, 0.2);
}

.public-qr-scanner video {
    width: 100% !important;
    border-radius: 1rem;
}

.public-qr-scanner img {
    display: none;
}

.public-info-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 576px) {
    .public-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.public-info-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: var(--nacional-gris);
    border-radius: 16px;
    padding: 1rem;
    font-size: 0.875rem;
}

.public-info-item i {
    font-size: 1.25rem;
    color: var(--nacional-verde);
    margin-top: 0.15rem;
}

.public-info-item strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.15rem;
}

.public-info-item span {
    color: #6c757d;
    line-height: 1.4;
}

.public-vendedor-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.public-vendedor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 107, 63, 0.1);
}

.public-result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.public-result-icon--ok {
    background: rgba(0, 107, 63, 0.1);
    color: var(--nacional-verde);
}

.public-result-icon--error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

@media (max-width: 991.98px) {
    .landing-hero {
        padding-top: 100px;
        padding-bottom: 4rem;
        min-height: auto;
    }

    .landing-hero__scroll {
        display: none;
    }

    .landing-pasos::before {
        left: 23px;
    }

    .landing-paso__numero {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .landing-hero__orb,
    .landing-hero__card-float,
    .landing-hero__scroll {
        animation: none;
    }
}
