:root {
    /* Layout */
    --max: 1180px;
    --radius: 16px;
    --radius2: 22px;

    /* Colores base (PRO + legible) */
    --bg: #0b0f1a;
    /* arena suave */
    --bg2: #10162a;
    /* arena + tierra */
    --surface: #ffffff;
    /* blanco real para legibilidad */
    --card: #ffffff;

    --text: #eef2ff;
    /* negro verdoso elegante */
    --muted: rgba(238, 242, 255, .72);
    /* gris verdoso para textos secundarios */

    /* Marca (chocolate + dorado) */
    --gold: #d3a14a;
    --gold2: #b87a1d;
    --choco: #3b2416;

    /* Bordes y sombras (pro) */
    --line: rgba(20, 24, 21, .10);
    --shadow: 0 16px 40px rgba(20, 24, 21, .10);

    /* NAV */
    --nav: rgba(16, 22, 42, .72);
    --navLine: rgba(255, 255, 255, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    overflow-x: hidden;

    background:
        radial-gradient(900px 520px at 15% 10%, rgba(211, 161, 74, .22), transparent 60%),
        radial-gradient(820px 480px at 85% 22%, rgba(122, 78, 230, .18), transparent 55%),
        radial-gradient(820px 480px at 70% 90%, rgba(46, 116, 216, .14), transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* Top progress */
.top-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: .2px;
    border: 1px solid var(--line);
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
    user-select: none;
    background: rgba(255, 255, 255, .55);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(20, 24, 21, .10);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(180deg, var(--gold), var(--gold2));
    color: #1f1409;
    border-color: transparent;
}

.btn-ghost {
    background: rgba(255, 255, 255, .70);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .90);
    border-color: rgba(20, 24, 21, .14);
}

.w-full {
    width: 100%;
}

/* NAV */
.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: var(--nav);
    border-bottom: 1px solid var(--navLine);
}

.nav {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand-text {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: .2px;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
    color: rgba(31, 35, 32, .88);
    font-weight: 700;
}

.nav-links a {
    padding: 8px 10px;
    border-radius: 12px;
    transition: background .15s ease, color .15s ease;
}

.nav-links a:hover {
    background: rgba(211, 161, 74, .16);
    color: rgba(31, 35, 32, 1);
}

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-burger {
    display: none;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .70);
    border-radius: 14px;
    padding: 10px;
    cursor: pointer;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(31, 35, 32, .85);
    margin: 5px 0;
    border-radius: 99px;
    transition: transform .15s ease, opacity .15s ease;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
    display: none;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .85);
}

.nav-mobile a {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
    margin-bottom: 6px;
    background: rgba(211, 161, 74, .10);
    font-weight: 800;
}

.nav-mobile a:hover {
    background: rgba(211, 161, 74, .18);
}

.nav-mobile.open {
    display: block;
}

/* HERO */
.hero-wrap {
    position: relative;
}

.hero {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 52px 0 42px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(20, 24, 21, .10);
    background: rgba(255, 255, 255, .70);
    color: rgba(31, 35, 32, .88);
    font-weight: 800;
    width: fit-content;
}

.pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--gold), var(--gold2));
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 4.2vw, 3.9rem);
    line-height: 1.03;
    margin: 14px 0 12px;
    letter-spacing: .2px;
}

.accent {
    background: linear-gradient(90deg, var(--gold2), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.accent2 {
    color: var(--choco);
}

.hero-sub {
    color: rgba(31, 35, 32, .78);
    line-height: 1.65;
    font-size: 1.03rem;
    margin: 0 0 18px;
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.badge {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .72);
    border-radius: 16px;
    padding: 12px;
}

.badge-title {
    display: block;
    font-weight: 900;
    font-size: .95rem;
}

.badge-sub {
    display: block;
    margin-top: 3px;
    color: rgba(31, 35, 32, .70);
    font-size: .86rem;
}

/* Cards: base pro */
.zebra {
    position: relative;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .82);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Zebra elegante (muy sutil) */
.zebra::before {
    content: "";
    position: absolute;
    inset: -40px -60px auto -60px;
    height: 160px;
    background: repeating-linear-gradient(-18deg,
            rgba(59, 36, 22, .06) 0px,
            rgba(59, 36, 22, .06) 14px,
            rgba(255, 255, 255, .22) 14px,
            rgba(255, 255, 255, .22) 28px);
    opacity: .22;
    pointer-events: none;
}

.zebra::after {
    content: "";
    position: absolute;
    inset: auto -40% -55% -40%;
    height: 70%;
    background: radial-gradient(circle at 50% 30%, rgba(211, 161, 74, .18), transparent 55%);
    pointer-events: none;
}

.hero-card {
    padding: 16px;
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mini-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mini-tag {
    font-size: .86rem;
    color: rgba(31, 35, 32, .82);
    background: rgba(211, 161, 74, .16);
    border: 1px solid rgba(211, 161, 74, .25);
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 900;
}

.hero-single-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* PISTA: arriba tienes .mini-tag {...} */

.hero-showcase-single {
    height: 320px;
    /* 👈 más bajito para que no se coma la pantalla */
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;
    border: 1px solid rgba(20, 24, 21, .10);

    /* 👇 NO uses overflow hidden aquí: si no, el “marco” se siente raro */
    overflow: visible;

    /* 👇 Fondo estilo paquete + zebra suave */
    background:
        radial-gradient(120% 120% at 18% 12%, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(90% 90% at 82% 20%, rgba(0, 0, 0, .14) 0%, rgba(0, 0, 0, 0) 60%),
        repeating-linear-gradient(-18deg,
            rgba(59, 36, 22, .07) 0px,
            rgba(59, 36, 22, .07) 14px,
            rgba(255, 255, 255, .16) 14px,
            rgba(255, 255, 255, .16) 28px),
        linear-gradient(135deg, rgba(211, 161, 74, .22) 0%, rgba(59, 36, 22, .14) 100%);

    padding: 18px;
    /* 👈 marco visible SIN exagerar */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}

/* PISTA: debajo está .hero-single-img {...} */




.hero-single-img {
    /* 👇 clave: que NO sea 100% */
    width: min(92%, 420px);
    height: auto;
    max-height: 100%;

    object-fit: contain;
    border-radius: 12px;

    /* 👇 para que se vea “montada” encima del fondo */
    box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}


.hero-card-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat {
    border: 1px solid rgba(20, 24, 21, .10);
    background: rgba(255, 255, 255, .70);
    border-radius: 16px;
    padding: 12px;
}

.stat-num {
    font-weight: 900;
    font-size: 1.05rem;
    display: block;
}

.stat-lbl {
    color: rgba(31, 35, 32, .70);
    font-size: .85rem;
    display: block;
    margin-top: 3px;
}

.hero-glow {
    position: absolute;
    right: 6%;
    top: 120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 30% 30%, rgba(211, 161, 74, .20), transparent 55%);
    filter: blur(22px);
    pointer-events: none;
    z-index: -1;
}

.divider {
    height: 70px;
    background:
        radial-gradient(90px 40px at 20% 50%, rgba(211, 161, 74, .18), transparent 60%),
        radial-gradient(90px 40px at 70% 30%, rgba(59, 36, 22, .10), transparent 55%),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, .30));
    border-top: 1px solid rgba(20, 24, 21, .08);
}

/* SECTIONS */
.section {
    padding: 64px 0;
}

.section.alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, .40), transparent 70%);
    border-top: 1px solid rgba(20, 24, 21, .08);
    border-bottom: 1px solid rgba(20, 24, 21, .08);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    margin: 0 0 6px;
}

.section-head p {
    margin: 0;
    color: rgba(31, 35, 32, .74);
    line-height: 1.5;
}

/* PRODUCTS GRID (centrado real de última fila) */
.grid {
    display: grid;
    gap: 14px;

    /* 👇 cada card tiene un ancho consistente */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    /* 👇 centra el contenido cuando la última fila queda incompleta */
    justify-content: center;
}



.product-card {
    padding: 12px;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 24, 21, .16);
}

.product-img {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(20, 24, 21, .10);

    /* Fondo pro para que cualquier empaque se vea */
    background:
        radial-gradient(240px 140px at 35% 25%, rgba(211, 161, 74, .22), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .70), rgba(0, 0, 0, .10)),
        rgba(245, 245, 245, .80);

    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, .18));
}

.product-body {
    padding: 12px 4px 6px;
}

.product-body h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.product-body p {
    margin: 0 0 10px;
    color: rgba(31, 35, 32, .74);
    line-height: 1.45;
    font-size: .92rem;
}

.chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    font-size: .78rem;
    color: rgba(31, 35, 32, .78);
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(20, 24, 21, .10);
    background: rgba(255, 255, 255, .72);
    font-weight: 800;
}

.product-card.coming .product-img {
    position: relative;
}

.coming-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 900;
    font-size: .78rem;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(211, 161, 74, .18);
    border: 1px solid rgba(211, 161, 74, .28);
}

.coming-illustration {
    width: 74%;
    height: 70%;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 20%, rgba(211, 161, 74, .20), transparent 55%),
        repeating-linear-gradient(-18deg, rgba(59, 36, 22, .06), rgba(59, 36, 22, .06) 14px, rgba(255, 255, 255, .24) 14px, rgba(255, 255, 255, .24) 28px);
    border: 1px dashed rgba(20, 24, 21, .14);
}

/* SPLIT */
.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    align-items: start;
}

.list {
    list-style: none;
    padding: 0;
    margin: 14px 0 18px;
}

.list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    color: rgba(31, 35, 32, .82);
}

.check {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(211, 161, 74, .18);
    border: 1px solid rgba(211, 161, 74, .28);
    color: var(--choco);
    font-weight: 900;
    margin-top: 1px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    margin-top: 10px;
}

.cta-card h3 {
    margin: 0 0 6px;
}

.cta-card p {
    margin: 0;
    color: rgba(31, 35, 32, .74);
}

.poster {
    padding: 14px;
}

.poster-top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.poster-pill {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(20, 24, 21, .10);
    background: rgba(255, 255, 255, .72);
    font-weight: 900;
    font-size: .85rem;
}

.poster-pill.dark {
    background: rgba(59, 36, 22, .10);
    border-color: rgba(59, 36, 22, .12);
}

.poster-mid {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(20, 24, 21, .10);
    height: 260px;
    background: rgba(0, 0, 0, .03);
}

.poster-mid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.poster-bottom {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    color: rgba(31, 35, 32, .72);
    font-size: .9rem;
}

.promo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.promo {
    padding: 14px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-title {
    font-weight: 900;
    margin-bottom: 4px;
}

.promo-sub {
    color: rgba(31, 35, 32, .72);
    font-size: .92rem;
}

/* LEGAL */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.legal-card {
    padding: 16px;
    color: rgba(31, 35, 32, .90);
    /* ✅ texto oscuro base */
}

.legal-card h3 {
    margin: 0 0 8px;
    color: rgba(17, 24, 39, .98);
    /* ✅ título más oscuro */
}

.legal-card p {
    margin: 0;
    color: rgba(31, 35, 32, .80);
    line-height: 1.55;
}

.legal-big {
    font-size: 1.35rem;
    margin: 10px 0 4px !important;
}

.muted {
    color: rgba(31, 35, 32, .70);
}

.note {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(20, 24, 21, .10);
    background: rgba(255, 255, 255, .72);
    color: rgba(31, 35, 32, .76);
}

/* CONTACT */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px;
}

.contact-items {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(20, 24, 21, .10);
    background: rgba(255, 255, 255, .72);
    transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.contact-item:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .90);
    border-color: rgba(20, 24, 21, .14);
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 161, 74, .18);
    border: 1px solid rgba(211, 161, 74, .28);
    color: var(--choco);
}

.contact-title {
    font-weight: 900;
}

.contact-sub {
    color: rgba(31, 35, 32, .72);
    font-size: .92rem;
    margin-top: 2px;
}

.address {
    padding: 16px;
}

.address h3 {
    margin: 0 0 8px;
}

.address p {
    margin: 0 0 12px;
    color: rgba(31, 35, 32, .78);
    line-height: 1.5;
}

.address-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.legal-mini {
    margin-top: 12px;
    color: rgba(31, 35, 32, .70);
    font-size: .9rem;
}

/* FOOTER */
.footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(20, 24, 21, .10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-title {
    font-weight: 900;
}

.footer-sub {
    color: rgba(31, 35, 32, .70);
    font-size: .92rem;
}

.footer-right a {
    opacity: .95;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(20, 24, 21, .10);
    background: rgba(255, 255, 255, .72);
}

.footer-right a:hover {
    background: rgba(255, 255, 255, .90);
}

/* RESPONSIVE */
@media (max-width: 1040px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        grid-template-columns: 1fr;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: inline-block;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp verde oficial */
.btn.btn-whatsapp {
    background: #25D366 !important;
    color: #0b1a10 !important;
    border-color: transparent !important;
}

.btn.btn-whatsapp:hover {
    filter: brightness(1.03);
    box-shadow: 0 14px 34px rgba(37, 211, 102, .22);
}

/* Poster (Concepto) - mostrar la imagen completa (sin recorte) */
.poster-mid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* <-- clave: no recorta */
    object-position: center;
    display: block;
}

/* Opcional: si queda “borde” por el contain, se ve mejor con fondo suave */
.poster-mid {
    background: rgba(0, 0, 0, 0.03);
}

/* === Fondo tipo “swatch Pantone” detrás de cada snack === */
.product-card {
    --pack: #e9e9e9;
}

/* color por defecto */

.product-card .product-img {
    /* si ya tienes background gris aquí, esto lo reemplaza */
    background:
        radial-gradient(120% 120% at 20% 10%, rgba(255, 255, 255, .75) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, 0) 35%),
        var(--pack);

    border: 1px solid rgba(0, 0, 0, .06);
}

/* Para que la foto se vea bien sobre el color */
.product-card .product-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* no recorta */
}

/* ===== FIX HERO IMAGEN + FONDO (PEGAR AL FINAL) ===== */

/* el contenedor donde va la imagen del hero */
.hero-card .hero-showcase.hero-showcase-single {
    height: 300px !important;
    padding: 18px !important;
    border-radius: 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
    /* para que el fondo quede dentro del marco */

    /* ✅ fondo (amarillo por defecto) */
    background:
        /* brillo arriba (premium) */
        radial-gradient(120% 120% at 18% 12%, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, 0) 55%),

        /* sombra suave abajo */
        radial-gradient(90% 90% at 82% 85%, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, 0) 60%),

        /* zebra MUY suave (para que no “grite”) */
        repeating-linear-gradient(-18deg,
            rgba(255, 255, 255, .10) 0px,
            rgba(255, 255, 255, .10) 18px,
            rgba(0, 0, 0, .06) 18px,
            rgba(0, 0, 0, .06) 36px),

        /* color del paquete (la magia) */
        linear-gradient(135deg,
            rgba(255, 255, 255, .22) 0%,
            var(--pack, #F2C94C) 45%,
            rgba(183, 122, 29, .22) 100%) !important;

    /* ✅ borde y sombra (antes lo tenías “metido adentro”, aquí va correcto) */
    border: 1px solid rgba(0, 0, 0, .08) !important;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .30),
        0 10px 26px rgba(0, 0, 0, .10) !important;
}


/* la imagen del hero (para que NO tape el fondo) */
.hero-card .hero-showcase.hero-showcase-single .hero-single-img {
    width: auto !important;
    height: 100% !important;
    max-height: 100% !important;

    /* clave: que no se vuelva gigante */
    max-width: 78% !important;

    object-fit: contain !important;
    border-radius: 12px !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .22) !important;
}

/* ===== MISMO FONDO DEL HERO PARA CONCEPTO (PEGAR AL FINAL) ===== */
.poster .poster-mid {
    background:
        radial-gradient(120% 120% at 18% 12%, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(90% 90% at 82% 85%, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, 0) 60%),
        repeating-linear-gradient(-18deg,
            rgba(255, 255, 255, .10) 0px,
            rgba(255, 255, 255, .10) 18px,
            rgba(0, 0, 0, .06) 18px,
            rgba(0, 0, 0, .06) 36px),
        linear-gradient(135deg,
            rgba(255, 255, 255, .22) 0%,
            var(--pack, #F2C94C) 45%,
            rgba(183, 122, 29, .22) 100%) !important;
}

/* ===== MODAL TABLA NUTRICIONAL ===== */
.nutri-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
}

.nutri-modal.open {
    display: block;
}

.nutri-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(4px);
}

.nutri-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(920px, 94vw);
    max-height: 88vh;
    padding: 14px;
}

.nutri-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 4px 12px;
}

.nutri-title {
    font-weight: 900;
    font-size: 1rem;
}

.nutri-close {
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, .75);
    border-radius: 12px;
    padding: 8px 10px;
    cursor: pointer;
    font-weight: 900;
}

.nutri-close:hover {
    background: rgba(255, 255, 255, .92);
}

.nutri-body {
    border: 1px solid rgba(20, 24, 21, .10);
    border-radius: 16px;
    background: rgba(255, 255, 255, .75);
    padding: 10px;

    /* 👇 visor: que no se vuelva infinito */
    height: 70vh;
    overflow: hidden;
}


#nutriImg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 👈 clave: se ve completa */
    display: block;
    border-radius: 10px;
}

/* ===== MODAL 2 COLUMNAS (EMPAQUE + TABLA) ===== */

.nutri-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    /* tabla un poquito más ancha */
    gap: 12px;
}

.nutri-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nutri-subtitle {
    font-weight: 900;
    font-size: .92rem;
    opacity: .9;
}

.nutri-view {
    height: 68vh;
    /* visor */
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(20, 24, 21, .10);
    background: rgba(255, 255, 255, .70);
    padding: 10px;
}

.nutri-view img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 👈 se ve completo */
    display: block;
    border-radius: 10px;
}

/* Responsive: en cel queda uno debajo del otro */
@media (max-width: 900px) {
    .nutri-grid {
        grid-template-columns: 1fr;
    }

    .nutri-view {
        height: 52vh;
    }
}

/* ===== FIX MODO OSCURO (PEGAR AL FINAL) ===== */

/* NAV: texto claro */
.nav-links {
    color: rgba(238, 242, 255, .86) !important;
}

.nav-links a:hover {
    background: rgba(211, 161, 74, .18) !important;
    color: rgba(255, 255, 255, .98) !important;
}

/* Marca "Chokatto" */
.brand-text {
    color: rgba(255, 255, 255, .96) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

/* Burger líneas claras */
.nav-burger {
    background: rgba(255, 255, 255, .08) !important;
    border-color: rgba(255, 255, 255, .12) !important;
}

.nav-burger span {
    background: rgba(255, 255, 255, .86) !important;
}

/* Botones ghost/pill: que no se vuelvan “blancos sucios” */
.btn,
.btn-ghost,
.pill {
    background: rgba(255, 255, 255, .10) !important;
    border-color: rgba(255, 255, 255, .14) !important;
    color: rgba(255, 255, 255, .90) !important;
}

.btn-ghost:hover,
.pill:hover {
    background: rgba(255, 255, 255, .16) !important;
}

/* Textos grises en hero/sections */
.hero-sub,
.section-head p,
.badge-sub,
.product-body p,
.poster-bottom,
.muted,
.note,
.address p,
.contact-sub,
.legal-mini,
.stat-lbl {
    color: rgba(238, 242, 255, .72) !important;
}

/* Chips y tags: que se lean sobre oscuro */
.chip,
.mini-tag,
.poster-pill {
    color: rgba(255, 255, 255, .88) !important;
    background: rgba(255, 255, 255, .10) !important;
    border-color: rgba(255, 255, 255, .14) !important;
}

/* El accent2 estaba chocolate oscuro: en fondo oscuro se pierde */
.accent2 {
    color: rgba(255, 255, 255, .92) !important;
}

/* Secciones alt: antes era claro; ahora hacemos “panel” oscuro suave */
.section.alt {
    background: rgba(255, 255, 255, .04) !important;
    border-top: 1px solid rgba(255, 255, 255, .08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}

/* Cards zebra: mantenlas claras para legibilidad pro */
.zebra {
    background: rgba(255, 255, 255, .88) !important;
    color: #1f2320 !important;
}

/* Dentro de cards, devolvemos textos a oscuros (porque la card es clara) */
.zebra .muted,
.zebra .badge-sub,
.zebra .product-body p,
.zebra .stat-lbl,
.zebra .section-head p,
.zebra .legal-mini,
.zebra .contact-sub,
.zebra .address p {
    color: rgba(31, 35, 32, .72) !important;
}

/* El mini-tag dentro de card sí debe ser oscuro para verse “premium” */
.hero-card .mini-tag {
    color: rgba(31, 35, 32, .86) !important;
    background: rgba(211, 161, 74, .16) !important;
    border-color: rgba(211, 161, 74, .25) !important;
}

/* ===== FIX TEXTO LISTA (CONCEPTO) EN FONDO OSCURO ===== */

/* Los bullets (Contraste / Textura / Diseño) */
.section#concepto .list li {
    color: rgba(238, 242, 255, .88) !important;
}

/* Si también quieres que el check se vea más “vivo” */
.section#concepto .check {
    background: rgba(211, 161, 74, .22) !important;
    border-color: rgba(211, 161, 74, .32) !important;
    color: rgba(255, 255, 255, .95) !important;
    /* el ✓ blanco */
}

/* === Tarjetas fondo gris (Calidad & Transparencia) === */

.info-card,
.calidad-card,
.product-card,
.card-light {
    color: #1f2937;
    /* gris oscuro elegante */
}

.info-card h3,
.calidad-card h3,
.product-card h3,
.card-light h3 {
    color: #111827;
    /* casi negro */
    font-weight: 700;
}

.info-card p,
.calidad-card p,
.product-card p,
.card-light p {
    color: #374151;
    /* gris oscuro legible */
}

/* ===== FIX FINAL: texto oscuro en “Calidad & Transparencia” ===== */
.legal-card,
.legal-card h3,
.legal-card p,
.legal-card .legal-big,
.legal-card .muted {
    color: rgba(31, 35, 32, .90) !important;
}

.legal-card h3,
.legal-card .legal-big {
    color: rgba(17, 24, 39, .98) !important;
}

.legal-card p,
.legal-card .muted {
    color: rgba(31, 35, 32, .78) !important;
}