/* ═══════════════════════════════════════════
   Pioneira Bebidas — style.css
   ═══════════════════════════════════════════ */

/* ─── VARIÁVEIS ─── */
:root {
    --gold: #C9973A;
    --gold-light: #E8B84B;
    --gold-pale: rgba(201,151,58,0.12);
    --dark: #0C1B2E;
    --dark-mid: #162540;
    --dark-soft: #1E3352;
    --white: #FAF8F4;
    --gray: #8A9BB0;
    --radius: 14px;
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    height: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    min-height: 100%;
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ─── NOISE TEXTURE ─── */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* ─── CONTAINER ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ─── Scroll Snap vertical ─── */
.hero,
.promo-combo,
.products {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.promo-combo,
.products {
    display: flex;
    align-items: center;
}

.products {
    overflow-y: auto;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: 70px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(12, 27, 46, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,151,58,0.15);
    transition: background 0.3s;
}

.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}

.logo-text {
    display: flex; flex-direction: column; line-height: 1.1;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.62rem;
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ─── HAMBURGER ─── */
.hamburger {
    cursor: pointer;
    display: flex; flex-direction: column; gap: 5px;
    padding: 6px;
    background: none; border: none;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── NAV DRAWER ─── */
.nav-drawer {
    position: fixed; top: 70px; right: 0;
    width: 100%; max-width: 320px;
    background: var(--dark-mid);
    border-left: 1px solid rgba(201,151,58,0.15);
    border-bottom: 1px solid rgba(201,151,58,0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 24px;
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer a {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 0;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, padding-left 0.2s;
}

.nav-drawer a:hover { color: var(--gold); padding-left: 6px; }
.nav-drawer a i { color: var(--gold); width: 18px; }

.nav-drawer .nav-cta {
    margin-top: 20px;
    background: var(--gold);
    color: var(--dark);
    padding: 14px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    border-bottom: none;
    justify-content: center;
}

.nav-drawer .nav-cta:hover { background: var(--gold-light); padding-left: 0; }

/* ─── OVERLAY ─── */
.overlay {
    position: fixed; inset: 0;
    background: rgba(8,15,28,0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.overlay.active { opacity: 1; pointer-events: all; }

/* ─── INDICADOR DE ROLAGEM ─── */
.scroll-guide {
    position: fixed;
    right: clamp(22px, 4vw, 44px);
    top: 50%;
    z-index: 900;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
        "icon button"
        "icon label";
    align-items: center;
    gap: 8px 16px;
    background: transparent;
    border: 0;
    color: var(--white);
    cursor: pointer;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
    transform: translateY(-38%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-guide:hover {
    transform: translateY(-38%) scale(1.03);
}

.scroll-guide.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-guide-icon {
    grid-area: icon;
    position: relative;
    width: 54px;
    height: 116px;
    display: grid;
    place-items: center;
}

.scroll-guide-icon .fa-arrow-up,
.scroll-guide-icon .fa-arrow-down {
    position: absolute;
    left: 50%;
    font-size: 2.05rem;
    color: rgba(255,255,255,0.95);
    transform: translateX(-50%);
}

.scroll-guide-icon .fa-arrow-up {
    top: 4px;
    animation: scrollArrowUp 1.7s ease-in-out infinite;
}

.scroll-guide-icon .fa-arrow-down {
    bottom: 0;
    animation: scrollArrowDown 1.7s ease-in-out infinite;
}

.scroll-guide-button {
    grid-area: button;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.scroll-guide-label {
    grid-area: label;
    justify-self: center;
    background: rgba(255,255,255,0.92);
    color: var(--dark);
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

@keyframes scrollArrowUp {
    0%, 100% { transform: translate(-50%, 7px); opacity: 0.55; }
    50% { transform: translate(-50%, -5px); opacity: 1; }
}

@keyframes scrollArrowDown {
    0%, 100% { transform: translate(-50%, -7px); opacity: 0.55; }
    50% { transform: translate(-50%, 5px); opacity: 1; }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 94px 0 42px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,151,58,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,151,58,0.05) 0%, transparent 60%),
                linear-gradient(160deg, #0C1B2E 0%, #0e2040 50%, #111c30 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 60%; height: 120%;
    background: linear-gradient(135deg, rgba(201,151,58,0.04) 0%, transparent 60%);
    border-left: 1px solid rgba(201,151,58,0.08);
    transform: rotate(-8deg);
}

/* Glow orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.glow-orb-1 {
    width: 500px; height: 500px;
    background: rgba(201,151,58,0.06);
    top: 10%; right: 5%;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 300px; height: 300px;
    background: rgba(30,51,82,0.8);
    bottom: 0; left: 20%;
    animation-delay: -4s;
}

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

.hero-content {
    position: relative; z-index: 2;
    max-width: 620px;
    animation: heroReveal 1s ease both;
}

.hero-offer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, 0.94fr) minmax(360px, 1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 66px);
}

.hero-offer-media {
    background:
        radial-gradient(ellipse 65% 58% at 50% 42%, rgba(201,151,58,0.18), transparent 72%),
        rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: clamp(14px, 2.6vw, 28px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.3);
    animation: heroReveal 1s ease both;
}

.hero-offer-media img {
    display: block;
    width: 100%;
    max-height: min(560px, 72vh);
    object-fit: contain;
    border-radius: 14px;
    filter: drop-shadow(0 24px 38px rgba(0,0,0,0.42));
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-pale);
    border: 1px solid rgba(201,151,58,0.3);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: heroReveal 1s 0.1s ease both;
}

.hero-badge.stock-alert {
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    color: #ffbf86;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.35rem, 5.2vw, 4.2rem);
    font-weight: 700;
    line-height: 1.02;
    margin-bottom: 18px;
    animation: heroReveal 1s 0.2s ease both;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(250,248,244,0.65);
    font-weight: 300;
    margin-bottom: 24px;
    max-width: 560px;
    animation: heroReveal 1s 0.3s ease both;
}

.hero-price {
    margin-bottom: 14px;
}

.hero-price strong {
    font-size: clamp(3rem, 6.4vw, 5.35rem);
}

.hero-trust-list {
    max-width: 560px;
}

.hero-actions {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
    animation: heroReveal 1s 0.4s ease both;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 15px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201,151,58,0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,151,58,0.4);
}

.contact-pills {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 12px;
    animation: heroReveal 1s 0.5s ease both;
}

.contact-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex; align-items: center; gap: 8px;
}

.contact-pill:hover {
    background: rgba(201,151,58,0.12);
    border-color: rgba(201,151,58,0.3);
    color: var(--gold-light);
}

.contact-pill i { color: var(--gold); }

/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.trust-bar {
    background: rgba(22,37,64,0.6);
    border-top: 1px solid rgba(201,151,58,0.1);
    border-bottom: 1px solid rgba(201,151,58,0.1);
    padding: 28px 0;
}

.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex; align-items: center; gap: 14px;
}

.trust-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    background: var(--gold-pale);
    border: 1px solid rgba(201,151,58,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
}

.trust-item h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.trust-item p  { font-size: 0.8rem; color: var(--gray); }

/* ══════════════════════════════
   COMBO PROMOCIONAL
══════════════════════════════ */
.promo-combo {
    padding: 90px 0 20px;
    position: relative;
}

.promo-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) 1fr;
    gap: 38px;
    align-items: center;
    background:
        radial-gradient(ellipse 60% 80% at 18% 45%, rgba(201,151,58,0.16), transparent 70%),
        linear-gradient(145deg, rgba(22,37,64,0.95), rgba(8,15,28,0.98));
    border: 1px solid rgba(201,151,58,0.18);
    border-radius: 24px;
    padding: clamp(20px, 3.2vw, 36px);
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}

.promo-media {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 18px;
}

.promo-media img {
    display: block;
    width: 100%;
    max-height: min(480px, 62vh);
    object-fit: contain;
    border-radius: 14px;
    filter: drop-shadow(0 18px 34px rgba(0,0,0,0.35));
}

.promo-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.4vw, 3.45rem);
    line-height: 1.05;
    margin: 10px 0 14px;
}

.promo-content h2 span {
    color: var(--gold-light);
    white-space: nowrap;
}

.stock-alert {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 83, 45, 0.11);
    border: 1px solid rgba(255, 138, 76, 0.28);
    border-radius: 999px;
    color: #ffb178;
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 16px;
    padding: 8px 14px;
}

.stock-alert i {
    color: #ff7a45;
}

.price-stack {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.old-price {
    color: rgba(250,248,244,0.5);
    font-size: clamp(1.08rem, 2.3vw, 1.45rem);
    font-weight: 700;
    text-decoration: line-through;
}

.price-stack strong {
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.95;
}

.promo-content p:not(.section-label) {
    color: rgba(250,248,244,0.68);
    max-width: 520px;
    margin-bottom: 16px;
    font-size: 1.04rem;
}

.rating-line {
    color: rgba(250,248,244,0.82);
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.rating-line span {
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-right: 8px;
}

.promo-cta {
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin-top: 18px;
    padding: 0;
}

.payment-badges li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    color: rgba(250,248,244,0.86);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 12px;
}

.payment-badges i {
    color: var(--gold-light);
}

.brand-story {
    background:
        radial-gradient(ellipse 80% 70% at 82% 24%, rgba(201,151,58,0.07), transparent 68%),
        linear-gradient(160deg, #0b1628 0%, #101f35 100%);
}

.brand-story-card {
    display: grid;
    grid-template-columns: minmax(340px, 1fr) minmax(280px, 0.78fr);
    gap: clamp(26px, 5vw, 60px);
    align-items: center;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(201,151,58,0.14);
    border-radius: 22px;
    padding: clamp(26px, 4vw, 46px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.22);
}

.brand-proof-list {
    display: grid;
    gap: 14px;
}

.brand-proof-list div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 2px 14px;
    align-items: center;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
}

.brand-proof-list i {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gold-pale);
    color: var(--gold-light);
}

.brand-proof-list strong {
    font-size: 0.98rem;
}

.brand-proof-list span {
    color: rgba(250,248,244,0.62);
    font-size: 0.86rem;
}

/* ══════════════════════════════
   PRODUTOS
══════════════════════════════ */
.products { padding: 90px 0; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

.section-title span { color: var(--gold); }

/* ─── GRID ─── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}

/* ─── CARD ─── */
.product-card {
    background: linear-gradient(145deg, rgba(22,37,64,0.9), rgba(15,28,50,0.95));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 28px 22px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease, border-color 0.3s;
    opacity: 0;
    transform: translateY(40px);
}

.product-card.visible {
    animation: cardReveal 0.6s ease forwards;
}

@keyframes cardReveal {
    to { opacity: 1; transform: translateY(0); }
}

.product-card:nth-child(1) { animation-delay: 0s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }

.product-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,151,58,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201,151,58,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,151,58,0.1) inset;
}

.product-card:hover::before { opacity: 1; }

/* shimmer */
.product-card::after {
    content: '';
    position: absolute;
    top: -60%; left: -60%;
    width: 60%; height: 200%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
    transform: skewX(-15deg);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.product-card:hover::after {
    left: 120%;
    opacity: 1;
}

.card-img-wrap {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}

.product-card img {
    max-height: 190px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), filter 0.4s;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.product-card:hover img {
    transform: scale(1.08) translateY(-6px);
    filter: drop-shadow(0 16px 30px rgba(0,0,0,0.5));
}

.product-card h3 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
    min-height: 40px;
    line-height: 1.4;
}

.product-buttons { display: flex; flex-direction: column; gap: 8px; }

.btn {
    padding: 11px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

.btn-price {
    border: 1px solid rgba(201,151,58,0.35);
    color: var(--gold-light);
    background: rgba(201,151,58,0.05);
}

.btn-price:hover {
    background: rgba(201,151,58,0.15);
    border-color: var(--gold);
    color: var(--white);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1da851);
    color: white;
    box-shadow: 0 4px 14px rgba(37,211,102,0.2);
}

.btn-whatsapp:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ─── CATÁLOGO ─── */
.catalogo-wrap { text-align: center; }

.btn-catalogo {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-catalogo:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,151,58,0.3);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
    background: #080f1c;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0;
    text-align: center;
}

footer p { color: var(--gray); font-size: 0.85rem; }
footer span { color: var(--gold); }

/* ══════════════════════════════
   RESPONSIVO
══════════════════════════════ */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-card { grid-template-columns: 1fr; }
    .promo-media { order: 2; }
    .hero-offer,
    .brand-story-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trust-bar .container { grid-template-columns: 1fr; gap: 20px; }
    .hero {
        align-items: flex-start;
        padding: 78px 0 16px;
        overflow-y: auto;
    }
    .hero-offer {
        gap: 14px;
    }
    .hero-offer-media {
        border-radius: 16px;
        padding: 10px;
    }
    .hero-offer-media img {
        max-height: clamp(178px, 25vh, 220px);
    }
    .hero-badge {
        margin-bottom: 8px;
    }
    .hero h1 {
        font-size: clamp(1.86rem, 8vw, 2.45rem);
        margin-bottom: 8px;
    }
    .hero-sub {
        font-size: 0.9rem;
        line-height: 1.45;
        margin-bottom: 12px;
    }
    .hero-price {
        margin-bottom: 8px;
    }
    .hero-price strong {
        font-size: clamp(2.65rem, 12vw, 3.6rem);
    }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 8px; }
    .contact-pills {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 10px;
    }
    .contact-pill {
        align-self: flex-start;
        padding: 9px 16px;
    }
    .promo-combo {
        align-items: flex-start;
        overflow-y: auto;
        padding-top: 82px;
    }
    .promo-cta { width: 100%; justify-content: center; }
    .promo-card {
        gap: 18px;
    }
    .promo-content h2 {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
    }
    .stock-alert {
        font-size: 0.72rem;
        letter-spacing: 0.02em;
        margin-bottom: 9px;
        padding: 7px 10px;
    }
    .price-stack {
        gap: 10px;
        margin-bottom: 12px;
    }
    .old-price {
        font-size: 1rem;
    }
    .price-stack strong {
        font-size: clamp(2.45rem, 12vw, 3.4rem);
    }
    .promo-content p:not(.section-label) {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    .rating-line {
        font-size: 0.88rem;
        margin-bottom: 16px;
    }
    .payment-badges {
        gap: 7px;
        margin-top: 11px;
    }
    .payment-badges li {
        font-size: 0.7rem;
        padding: 6px 8px;
    }
    .brand-story-card {
        padding: 22px;
        gap: 20px;
    }
    .brand-proof-list div {
        padding: 13px;
    }
    .scroll-guide {
        right: 12px;
        top: auto;
        bottom: 22px;
        grid-template-columns: auto;
        grid-template-areas:
            "icon"
            "button";
        gap: 6px;
        transform: none;
    }
    .scroll-guide:hover {
        transform: scale(1.03);
    }
    .scroll-guide-icon {
        display: none;
    }
    .scroll-guide-button {
        justify-self: end;
        width: 38px;
        height: 38px;
        opacity: 0.78;
    }
    .scroll-guide-label {
        display: none;
    }
}

@media (max-width: 560px) {
    .product-grid { grid-template-columns: 1fr; gap: 16px; }
}
