/* ============================================
   Parada do Açaí Oficial - Stylesheet Premium
   Paleta: roxo açaí + dourado + creme
   ============================================ */

:root {
    --acai-deep: #1a0a2e;
    --acai-rich: #2d0e4d;
    --acai-warm: #4a1f7a;
    --acai-soft: #6b3ba0;
    --acai-glow: #8c5fc0;

    --gold: #c9a961;
    --gold-soft: #e8d8a8;
    --gold-deep: #8c6e2f;

    --cream: #faf6ee;
    --cream-warm: #f0e8d8;
    --cream-dark: #e6dbc4;

    --ink: #0f0814;
    --text: #2a2030;
    --text-soft: #6b5a72;
    --text-muted: #9a8aa3;

    --white: #ffffff;
    --black: #000000;

    --shadow-sm: 0 2px 8px rgba(26, 10, 46, 0.08);
    --shadow-md: 0 8px 32px rgba(26, 10, 46, 0.12);
    --shadow-lg: 0 24px 64px rgba(26, 10, 46, 0.18);
    --shadow-gold: 0 16px 48px rgba(201, 169, 97, 0.25);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;

    --container: 1240px;
    --section-pad: clamp(60px, 10vw, 120px);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: 12px 20px;
    background: var(--acai-deep);
    color: var(--cream);
    z-index: 9999;
    transition: top 0.2s var(--ease);
}

.skip-link:focus {
    top: 0;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
    width: 100%;
}

img, picture {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-deep);
    margin-bottom: 20px;
    padding-bottom: 8px;
    position: relative;
}

.eyebrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.section__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--acai-deep);
    margin-bottom: 24px;
    font-variation-settings: "opsz" 144;
}

.section__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--acai-warm);
}

.section__lead {
    font-size: clamp(17px, 1.6vw, 19px);
    line-height: 1.6;
    color: var(--text-soft);
    max-width: 60ch;
    margin-bottom: 16px;
}

.section__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}

.section__header .section__lead {
    margin-left: auto;
    margin-right: auto;
}

.section__header .eyebrow::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    border: 2px solid transparent;
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--acai-warm) 0%, var(--acai-rich) 100%);
    color: var(--cream);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--acai-soft) 0%, var(--acai-warm) 100%);
}

.btn--secondary {
    background: var(--gold);
    color: var(--acai-deep);
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--ghost {
    background: transparent;
    color: var(--acai-deep);
    border-color: var(--acai-deep);
}

.btn--ghost:hover {
    background: var(--acai-deep);
    color: var(--cream);
}

.btn--large {
    padding: clamp(14px, 2vw, 18px) clamp(24px, 4vw, 36px);
    font-size: clamp(14px, 1.5vw, 16px);
}

.btn--small {
    padding: 10px 20px;
    font-size: 13px;
}

@media (max-width: 380px) {
    .btn { white-space: normal; text-align: center; }
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    background: transparent;
    transition: all 0.3s var(--ease);
}

.header.is-scrolled {
    padding: 24px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.2s var(--ease);
}

.logo:hover {
    opacity: 0.85;
}

.logo__mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo__mark svg {
    width: 100%;
    height: 100%;
}

.logo__img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow:
        0 2px 8px rgba(26, 10, 46, 0.15),
        0 0 0 1px rgba(201, 169, 97, 0.2);
}

.logo__img--text {
    width: auto;
    height: clamp(38px, 4.5vw, 52px);
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
    display: block;
}

/* Logo texto puro — sem SVG, sem possibilidade de corte */
.logo__brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: var(--font-display);
    background: linear-gradient(180deg, #f4d57a 0%, #c9a961 50%, #8c6e2f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align: center;
}

.logo__brand-1 {
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 600;
    letter-spacing: 0.32em;
    margin-bottom: 4px;
    padding-left: 0.32em;
}

.logo__brand-2 {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    letter-spacing: 0.15em;
    padding-left: 0.15em;
}

.logo__img--text-large {
    width: auto;
    height: 90px;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 0 16px rgba(201, 169, 97, 0.2));
}

.logo__img--full {
    width: 110px;
    height: 110px;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 0 24px rgba(201, 169, 97, 0.25));
}

.logo--footer {
    display: block;
    margin-bottom: 20px;
}

.logo--footer .logo__img--full {
    width: 130px;
    height: 130px;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo__line1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--acai-deep);
    letter-spacing: -0.01em;
}

.logo__line2 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold-deep);
    margin-top: 4px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__menu a {
    display: inline-block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: 999px;
    transition: all 0.2s var(--ease);
}

.nav__menu a:hover {
    background: rgba(26, 10, 46, 0.06);
    color: var(--acai-deep);
}

.nav__menu .nav__cta {
    background: var(--acai-deep);
    color: var(--cream);
    padding: 10px 22px;
    margin-left: 8px;
    font-weight: 600;
}

.nav__menu .nav__cta:hover {
    background: var(--acai-warm);
    color: var(--cream);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav__toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    transition: background 0.2s var(--ease);
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--acai-deep);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

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

@media (max-width: 980px) {
    .nav__toggle { display: flex; }

    .nav__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 4px;
        border-top: 1px solid rgba(26, 10, 46, 0.08);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s var(--ease);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav__menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav__menu a {
        padding: 14px 20px;
        font-size: 16px;
        text-align: center;
    }

    .nav__menu .nav__cta {
        margin: 8px 0 0;
    }

    .logo__line1 { font-size: 16px; }
    .logo__line2 { font-size: 9px; }
    .logo__img { width: 42px; height: 42px; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    padding-top: clamp(120px, 16vh, 180px);
    padding-bottom: clamp(80px, 12vh, 140px);
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.hero--center {
    padding-top: clamp(140px, 18vh, 200px);
    padding-bottom: clamp(120px, 16vh, 180px);
    background: radial-gradient(ellipse at top, var(--cream) 0%, var(--cream-warm) 60%, #ebe0c8 100%);
}

/* ============================================
   HERO BANNER — estilo carousel premium
   Foto full-bleed, texto alinhado à esquerda,
   tipografia uppercase bold, CTA pequeno
   ============================================ */

.hero--banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    width: 100%;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(ellipse at 25% 50%, #1a0a26 0%, #0d0418 30%, #060210 60%);
}

.hero--banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero--banner__bg picture,
.hero--banner__bg img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero--banner__bg img {
    object-fit: cover;
    object-position: right center;
    animation: bannerSubtleZoom 30s ease-in-out infinite alternate;
    /* Mask cria dissolve real da foto na esquerda — sem linha de divisão */
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 12%,
        rgba(0, 0, 0, 0.45) 25%,
        rgba(0, 0, 0, 0.75) 38%,
        rgba(0, 0, 0, 0.92) 50%,
        #000 65%,
        #000 100%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 12%,
        rgba(0, 0, 0, 0.45) 25%,
        rgba(0, 0, 0, 0.75) 38%,
        rgba(0, 0, 0, 0.92) 50%,
        #000 65%,
        #000 100%
    );
}

@media (max-width: 900px) {
    .hero--banner__bg img {
        object-position: center;
        mask-image: linear-gradient(180deg,
            #000 0%,
            #000 60%,
            rgba(0, 0, 0, 0.7) 80%,
            transparent 100%);
        -webkit-mask-image: linear-gradient(180deg,
            #000 0%,
            #000 60%,
            rgba(0, 0, 0, 0.7) 80%,
            transparent 100%);
    }
}

@keyframes bannerSubtleZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero--banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, transparent 0%, transparent 75%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

.hero--banner__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: clamp(80px, 12vh, 140px);
    padding-bottom: clamp(60px, 10vh, 100px);
}

.hero--banner__text {
    max-width: 520px;
}

.hero--banner__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(11px, 1vw, 13px);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    margin-bottom: clamp(16px, 2.5vh, 24px);
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero--banner__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(44px, 6vw, 88px);
    line-height: 0.98;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin: 0 0 clamp(28px, 4vh, 40px);
    color: var(--white);
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 2px 8px rgba(0, 0, 0, 0.7),
        0 8px 32px rgba(0, 0, 0, 0.5);
    font-variation-settings: "opsz" 144;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero--banner__title span {
    display: block;
    white-space: nowrap;
}

.hero--banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease);
}

.hero--banner__cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.35);
}

.hero--banner__indicators {
    position: absolute;
    bottom: clamp(24px, 4vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero--banner__dot {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: background 0.3s var(--ease);
}

.hero--banner__dot.is-active {
    background: var(--gold);
    width: 40px;
}

/* Header escuro sobre hero banner */
body:has(.hero--banner) .header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    border-bottom: none;
}

body:has(.hero--banner) .header:not(.is-scrolled) .logo__line1 { color: var(--white); }
body:has(.hero--banner) .header:not(.is-scrolled) .logo__line2 { color: var(--gold); }
body:has(.hero--banner) .header:not(.is-scrolled) .nav__menu a { color: rgba(255, 255, 255, 0.92); }
body:has(.hero--banner) .header:not(.is-scrolled) .nav__menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}
body:has(.hero--banner) .header:not(.is-scrolled) .nav__menu .nav__cta {
    background: var(--gold);
    color: var(--ink);
}
body:has(.hero--banner) .header:not(.is-scrolled) .nav__menu .nav__cta:hover {
    background: var(--gold-soft);
    color: var(--ink);
}
body:has(.hero--banner) .header:not(.is-scrolled) .nav__toggle span {
    background: var(--white);
}

@media (max-width: 768px) {
    .hero--banner__title { font-size: clamp(36px, 9vw, 56px); }
    .hero--banner__overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    }
    .hero--banner__inner {
        align-items: flex-end;
        padding-bottom: clamp(60px, 10vh, 100px);
    }
    .hero--banner__text { max-width: 100%; }
}

@media (max-width: 480px) {
    .hero--banner { height: 85vh; min-height: 540px; }
    .hero--banner__title { font-size: clamp(32px, 11vw, 48px); }
    .hero--banner__cta { width: 100%; max-width: 280px; justify-content: center; }
}

/* ============================================
   PROMO CARDS — 3 cards de produtos destaque
   abaixo do hero (estilo carousel referência)
   ============================================ */

.promo-cards {
    padding: clamp(40px, 6vw, 80px) 0 clamp(24px, 3vw, 40px);
    background: var(--cream);
    position: relative;
    z-index: 2;
}

.promo-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.promo-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--ink);
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 32px rgba(26, 10, 46, 0.18);
    transition: all 0.4s var(--ease);
    display: block;
    color: var(--white);
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(26, 10, 46, 0.3);
}

.promo-card--copo300 { background-image: url('../assets/produtos/hero-acai.webp'); }
.promo-card--bowl { background-image: url('../assets/produtos/bowl-premium-novo.webp'); }
.promo-card--combo { background-image: url('../assets/produtos/combo-familia.webp'); }

.promo-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.1) 100%),
        linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    transition: opacity 0.3s var(--ease);
}

.promo-card:hover .promo-card__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0) 100%);
}

.promo-card__body {
    position: absolute;
    inset: 0;
    padding: clamp(20px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 1;
}

.promo-card__price {
    font-size: clamp(11px, 1vw, 13px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.promo-card__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: clamp(14px, 2vw, 20px);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.promo-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}

.promo-card:hover .promo-card__cta {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

@media (max-width: 900px) {
    .promo-cards__grid { grid-template-columns: repeat(2, 1fr); }
    .promo-card:last-child { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
}

@media (max-width: 600px) {
    .promo-cards { padding-top: 32px; }
    .promo-cards__grid { grid-template-columns: 1fr; }
    .promo-card,
    .promo-card:last-child { aspect-ratio: 16 / 9; }
    .promo-card__title { font-size: 22px; }
}

/* ============================================
   HERO SIDE (legado)
   ============================================ */

.hero--side {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a26 0%, #0d0418 50%, #060210 100%);
    color: var(--cream);
}

.hero--side__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    width: 100%;
}

.hero--side__text {
    display: flex;
    align-items: center;
    padding: clamp(120px, 16vh, 180px) clamp(24px, 6vw, 80px) clamp(60px, 8vh, 100px);
    position: relative;
    z-index: 2;
}

.hero--side__text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 95, 192, 0.18) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.hero--side__text-wrap {
    max-width: 560px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero--side__eyebrow {
    display: inline-block;
    font-size: clamp(11px, 1vw, 13px);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: clamp(20px, 3vh, 32px);
}

.hero--side__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0 0 clamp(24px, 3.5vh, 36px);
    color: var(--cream);
    font-variation-settings: "opsz" 144;
}

.hero--side__title em {
    display: inline-block;
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(180deg, #f4d57a 0%, #c9a961 50%, #8c6e2f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 24px rgba(201, 169, 97, 0.35));
    padding: 0 0.05em;
}

.hero--side__lead {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.65;
    color: rgba(250, 246, 238, 0.72);
    max-width: 480px;
    margin: 0 0 clamp(32px, 5vh, 48px);
    font-weight: 400;
}

.hero--side__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero--side__photo {
    position: relative;
    overflow: hidden;
    background: #060210;
}

.hero--side__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: heroSidePan 30s ease-in-out infinite alternate;
}

@keyframes heroSidePan {
    from { transform: scale(1) translateX(0); }
    to { transform: scale(1.06) translateX(-2%); }
}

/* Header transparente sobre hero side */
body:has(.hero--side) .header {
    background: linear-gradient(180deg, rgba(6, 2, 16, 0.7) 0%, transparent 100%);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    border-bottom: none;
}

body:has(.hero--side) .header:not(.is-scrolled) .logo__line1 { color: var(--cream); }
body:has(.hero--side) .header:not(.is-scrolled) .logo__line2 { color: var(--gold); }
body:has(.hero--side) .header:not(.is-scrolled) .nav__menu a { color: rgba(250, 246, 238, 0.92); }
body:has(.hero--side) .header:not(.is-scrolled) .nav__menu a:hover {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.1);
}
body:has(.hero--side) .header:not(.is-scrolled) .nav__menu .nav__cta {
    background: var(--gold);
    color: var(--ink);
}
body:has(.hero--side) .header:not(.is-scrolled) .nav__menu .nav__cta:hover {
    background: var(--gold-soft);
    color: var(--ink);
}
body:has(.hero--side) .header:not(.is-scrolled) .nav__toggle span {
    background: var(--cream);
}

@media (max-width: 900px) {
    .hero--side { min-height: auto; }
    .hero--side__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero--side__photo {
        order: -1;
        height: 50vh;
        min-height: 360px;
        max-height: 480px;
    }
    .hero--side__text {
        padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 40px) clamp(60px, 8vw, 80px);
    }
    .hero--side__text-wrap {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .hero--side__photo { height: 42vh; min-height: 320px; }
    .hero--side__title { font-size: clamp(40px, 11vw, 60px); }
    .hero--side__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================
   HERO FULL-BLEED — estilo Auburn (legado)
   ============================================ */

.hero--fullbleed {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    color: var(--white);
    margin-top: 0;
    padding-top: 0;
}

.hero--fullbleed__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero--fullbleed__bg picture,
.hero--fullbleed__bg img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero--fullbleed__bg img {
    object-fit: cover;
    object-position: center;
    animation: heroSubtleZoom 30s ease-in-out infinite alternate;
}

@keyframes heroSubtleZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.hero--fullbleed__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.7) 100%);
}

.hero--fullbleed__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: clamp(80px, 12vh, 120px) clamp(20px, 4vw, 40px) clamp(60px, 8vh, 80px);
}

.hero--fullbleed__content {
    margin-top: auto;
    margin-bottom: auto;
    max-width: 900px;
}

.hero--fullbleed__eyebrow {
    display: inline-block;
    font-size: clamp(11px, 1vw, 13px);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: clamp(24px, 4vh, 36px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero--fullbleed__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(56px, 9vw, 140px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin: 0 0 clamp(28px, 4vh, 40px);
    color: var(--white);
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.7);
    font-variation-settings: "opsz" 144;
}

.hero--fullbleed__title em {
    display: inline-block;
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(180deg, #f4d57a 0%, #c9a961 50%, #8c6e2f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 16px rgba(201, 169, 97, 0.5));
    padding: 0 0.05em;
}

.hero--fullbleed__lead {
    font-size: clamp(11px, 1vw, 13px);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 clamp(36px, 5vh, 48px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero--fullbleed__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Info bar embaixo (horário · endereço · delivery) */
.hero--fullbleed__info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 56px);
    flex-wrap: wrap;
    padding: 24px 32px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    max-width: 920px;
    width: 100%;
    color: var(--white);
}

.hero--fullbleed__info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.hero--fullbleed__info-item span {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.hero--fullbleed__info-item strong {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.hero--fullbleed__info-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
}

.hero--fullbleed__scroll {
    position: absolute;
    bottom: clamp(20px, 4vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.hero--fullbleed__scroll span {
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.hero--fullbleed__scroll span::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

.hero--fullbleed__scroll small {
    font-size: 10px;
    letter-spacing: 0.3em;
    font-weight: 600;
}

@keyframes scrollDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* Header invertido sobre hero full-bleed */
body:has(.hero--fullbleed) .header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    border-bottom: none;
}

body:has(.hero--fullbleed) .header:not(.is-scrolled) .logo__line1 { color: var(--white); }
body:has(.hero--fullbleed) .header:not(.is-scrolled) .logo__line2 { color: var(--gold); }
body:has(.hero--fullbleed) .header:not(.is-scrolled) .nav__menu a { color: rgba(255, 255, 255, 0.92); }
body:has(.hero--fullbleed) .header:not(.is-scrolled) .nav__menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}
body:has(.hero--fullbleed) .header:not(.is-scrolled) .nav__menu .nav__cta {
    background: var(--gold);
    color: var(--ink);
}
body:has(.hero--fullbleed) .header:not(.is-scrolled) .nav__menu .nav__cta:hover {
    background: var(--gold-soft);
    color: var(--ink);
}
body:has(.hero--fullbleed) .header:not(.is-scrolled) .nav__toggle span {
    background: var(--white);
}

@media (max-width: 900px) {
    .hero--fullbleed__info-divider { display: none; }
    .hero--fullbleed__info {
        gap: 16px 32px;
    }
}

@media (max-width: 768px) {
    .hero--fullbleed__title { font-size: clamp(44px, 12vw, 72px); }
    .hero--fullbleed__overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.75) 100%);
    }
    .hero--fullbleed__info {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }
    .hero--fullbleed__info-item strong { font-size: 13px; }
}

@media (max-width: 480px) {
    .hero--fullbleed { min-height: 600px; }
    .hero--fullbleed__title { font-size: clamp(40px, 13vw, 60px); }
    .hero--fullbleed__eyebrow {
        font-size: 10px;
        letter-spacing: 0.3em;
    }
    .hero--fullbleed__lead { font-size: 10px; letter-spacing: 0.28em; }
    .hero--fullbleed__actions .btn { width: 100%; max-width: 320px; }
    .hero--fullbleed__inner { padding-top: 100px; padding-bottom: 40px; }
    .hero--fullbleed__info { padding: 16px 18px; }
    .hero--fullbleed__info-item strong { font-size: 12px; }
}

/* ============================================
   HERO EDITORIAL (legado, mantido pra fallback)
   ============================================ */

.hero--editorial {
    position: relative;
    min-height: 100vh;
    padding-top: clamp(120px, 14vh, 160px);
    padding-bottom: clamp(80px, 10vh, 120px);
    overflow: hidden;
    background:
        radial-gradient(ellipse at 75% 50%, #1a0a26 0%, #0d0418 50%, #060210 100%);
    color: var(--cream);
}

.hero--editorial__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero--editorial__glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.22) 0%, transparent 50%);
    filter: blur(100px);
    animation: glowDrift 16s ease-in-out infinite;
}

.hero--editorial__glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 95, 192, 0.25) 0%, transparent 60%);
    filter: blur(80px);
    animation: glowDrift 12s ease-in-out infinite reverse;
}

.hero--editorial__seal-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(400px, 70vw, 900px);
    aspect-ratio: 1;
    opacity: 0.04;
    pointer-events: none;
    animation: sealRotate 60s linear infinite;
}

.hero--editorial__seal-bg img {
    width: 100%;
    height: 100%;
    filter: brightness(2) saturate(1.5);
}

@keyframes sealRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes glowDrift {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-3%, 4%); }
}

.hero--editorial__grain {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.04) 0.5px, transparent 0.5px),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.02) 0.5px, transparent 0.5px);
    background-size: 40px 40px, 60px 60px;
    opacity: 0.6;
    mix-blend-mode: overlay;
}

/* FOTO TOTALMENTE INTEGRADA — imagem inteira + dissolve real via mask */
.hero--editorial__photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 62%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    /* mask cria dissolve real da imagem nas bordas (não overlay) */
    mask-image:
        radial-gradient(ellipse 80% 90% at 70% 50%,
            #000 0%,
            #000 35%,
            rgba(0, 0, 0, 0.85) 60%,
            rgba(0, 0, 0, 0.4) 80%,
            transparent 100%);
    -webkit-mask-image:
        radial-gradient(ellipse 80% 90% at 70% 50%,
            #000 0%,
            #000 35%,
            rgba(0, 0, 0, 0.85) 60%,
            rgba(0, 0, 0, 0.4) 80%,
            transparent 100%);
}

.hero--editorial__photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    display: block;
    animation: photoSubtleZoom 24s ease-in-out infinite alternate;
}

@keyframes photoSubtleZoom {
    from { transform: scale(1); }
    to { transform: scale(1.04); }
}

/* Overlay sutil só pra dar peso onde precisa, não pra cortar */
.hero--editorial__photo-fade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #060210 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 50% 50%, transparent 60%, rgba(6, 2, 16, 0.4) 100%);
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.6;
}

/* CONTAINER */
.hero--editorial__inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    padding: 0 clamp(20px, 4vw, 40px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: calc(100vh - 220px);
    justify-content: center;
}

.hero--editorial__inner--center {
    max-width: 920px;
    text-align: center;
    align-items: center;
}

.hero--editorial__title--center {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
}

.hero--editorial__lead--center {
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

.hero--editorial__actions--center {
    justify-content: center;
}

.hero--editorial__inner--center .hero--editorial__eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.hero--editorial__inner--center .hero--editorial__eyebrow::after {
    left: 50%;
    transform: translateX(-50%);
}

.hero--editorial__scroll {
    position: absolute;
    bottom: clamp(20px, 5vh, 48px);
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 1.5px solid rgba(201, 169, 97, 0.5);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero--editorial__scroll span {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* EYEBROW — small uppercase line acima do título */
.hero--editorial__eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: clamp(20px, 3vh, 32px);
    padding-bottom: 10px;
    position: relative;
}

.hero--editorial__eyebrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

/* TÍTULO EDITORIAL */
.hero--editorial__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(56px, 7.5vw, 112px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin: 0 0 clamp(20px, 3vh, 32px);
    font-variation-settings: "opsz" 144;
    max-width: 12ch;
    color: var(--cream);
}

.hero--editorial__title em {
    display: block;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #f4d57a 0%, #c9a961 50%, #8c6e2f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 32px rgba(201, 169, 97, 0.25));
    margin-top: 4px;
}

/* LEAD */
.hero--editorial__lead {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.65;
    color: rgba(250, 246, 238, 0.72);
    max-width: 440px;
    margin-bottom: clamp(36px, 5vh, 56px);
    font-weight: 400;
}

/* ACTIONS */
.hero--editorial__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: var(--ink);
    box-shadow:
        0 12px 32px rgba(201, 169, 97, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 48px rgba(201, 169, 97, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #f4d57a 0%, var(--gold) 100%);
}

.btn--outline-light {
    background: rgba(255, 255, 255, 0.06);
    color: var(--cream);
    border: 1.5px solid rgba(250, 246, 238, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(250, 246, 238, 0.6);
    transform: translateY(-1px);
}

/* META (3 métricas com números grandes) */
.hero--editorial__meta {
    display: flex;
    gap: clamp(32px, 6vw, 80px);
    padding-top: 32px;
    border-top: 1px solid rgba(201, 169, 97, 0.18);
    max-width: 60%;
}

.hero--editorial__meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero--editorial__meta-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 600;
    line-height: 1;
    color: var(--cream);
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.hero--editorial__meta-unit {
    font-size: 0.4em;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero--editorial__meta-label {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(250, 246, 238, 0.55);
    letter-spacing: 0.02em;
}

/* PRODUCT TAG flutuante (próximo da foto) */
.hero--editorial__product-tag {
    position: absolute;
    bottom: clamp(40px, 8vh, 80px);
    right: clamp(20px, 4vw, 60px);
    z-index: 3;
    background: rgba(10, 4, 20, 0.7);
    border: 1px solid rgba(201, 169, 97, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 18px 26px;
    color: var(--cream);
    text-align: center;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: tagFloat 5s ease-in-out infinite;
    min-width: 180px;
}

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

.hero--editorial__product-tag-line {
    display: block;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.hero--editorial__product-tag strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 6px;
}

.hero--editorial__product-tag-price {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

@media (max-width: 1100px) {
    .hero--editorial__photo { width: 55%; opacity: 0.95; }
    .hero--editorial__title { max-width: 100%; }
}

@media (max-width: 900px) {
    .hero--editorial {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero--editorial__photo {
        position: relative;
        width: 100%;
        height: 55vh;
        min-height: 380px;
        max-height: 520px;
        margin-bottom: 16px;
        mask-image:
            radial-gradient(ellipse 90% 80% at 50% 45%,
                #000 0%,
                #000 50%,
                rgba(0, 0, 0, 0.7) 75%,
                transparent 100%);
        -webkit-mask-image:
            radial-gradient(ellipse 90% 80% at 50% 45%,
                #000 0%,
                #000 50%,
                rgba(0, 0, 0, 0.7) 75%,
                transparent 100%);
    }
    .hero--editorial__photo-fade {
        background: none;
    }
    .hero--editorial__inner {
        min-height: auto;
        margin-top: -8vh;
        position: relative;
        z-index: 2;
    }
    .hero--editorial__title {
        font-size: clamp(40px, 9vw, 64px);
        max-width: 14ch;
    }
    .hero--editorial__lead { max-width: 100%; }
}

@media (max-width: 480px) {
    .hero--editorial { padding-top: 90px; }
    .hero--editorial__photo {
        height: 42vh;
        min-height: 300px;
    }
    .hero--editorial__inner { margin-top: -6vh; }
    .hero--editorial__eyebrow {
        font-size: 11px;
        letter-spacing: 0.18em;
        margin-bottom: 16px;
    }
    .hero--editorial__title {
        font-size: clamp(36px, 11vw, 52px);
        line-height: 1;
    }
    .hero--editorial__lead {
        font-size: 15px;
        margin-bottom: 28px;
    }
    .hero--editorial__actions { width: 100%; }
    .hero--editorial__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================
   HERO SPLIT (legado, mantido pra fallback)
   ============================================ */

.hero--split {
    padding-top: clamp(120px, 14vh, 160px);
    padding-bottom: clamp(80px, 10vh, 120px);
    background: radial-gradient(ellipse at 70% 20%, #ebe0c8 0%, var(--cream-warm) 40%, var(--cream) 100%);
}

.hero__split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    background: var(--white);
    border: 1px solid rgba(26, 10, 46, 0.08);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(26, 10, 46, 0.04);
    margin-bottom: 32px;
}

.hero__pill-dot {
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

.hero__title--split {
    font-size: clamp(44px, 6.5vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title--split em {
    display: inline-block;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--acai-warm) 0%, var(--gold-deep) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__lead--split {
    font-size: clamp(16px, 1.4vw, 18px);
    margin-bottom: 36px;
    max-width: 52ch;
}

.hero__proof {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(26, 10, 46, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__avatars {
    display: flex;
    align-items: center;
}

.hero__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid var(--cream);
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(26, 10, 46, 0.15);
}

.hero__avatar:first-child { margin-left: 0; }

.hero__avatar--1 { background: linear-gradient(135deg, #c4a86c, #8b6e3a); }
.hero__avatar--2 { background: linear-gradient(135deg, #a8859a, #6b4f60); }
.hero__avatar--3 { background: linear-gradient(135deg, #b48cb8, #75507a); }
.hero__avatar--4 { background: linear-gradient(135deg, #d4b896, #a18264); }

.hero__proof-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    color: var(--text-soft);
}

.hero__proof-text strong { color: var(--acai-deep); font-weight: 700; }

.hero__stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
}

.hero__stars svg { width: 14px; height: 14px; }

/* SHOWCASE (lado direito) */
.hero__showcase {
    position: relative;
    aspect-ratio: 1;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__glow {
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, var(--gold-soft) 0%, transparent 40%),
        radial-gradient(circle at 60% 70%, var(--acai-glow) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--acai-warm) 0%, transparent 60%);
    filter: blur(40px);
    opacity: 0.55;
    z-index: 0;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.06); opacity: 0.7; }
}

/* COPO CSS ART legado - desabilitado */
.hero__cup,
.hero__cup-body,
.hero__cup-rim,
.hero__cup-toppings,
.hero__cup-fill,
.hero__cup-shine,
.hero__cup-seal,
.hero__cup-drops,
.hero__cup-shadow,
.cup-banana,
.cup-granola,
.cup-berry,
.cup-drizzle {
    display: none !important;
}

/* FOTO PREMIUM no hero */
.hero__photo {
    position: relative;
    z-index: 2;
    width: 86%;
    aspect-ratio: 1 / 1;
    border-radius: 32px;
    overflow: hidden;
    background: var(--acai-deep);
    box-shadow:
        0 50px 100px rgba(26, 10, 46, 0.45),
        0 20px 40px rgba(26, 10, 46, 0.25),
        0 0 0 1px rgba(201, 169, 97, 0.5),
        0 0 0 10px rgba(255, 255, 255, 0.6),
        0 0 0 11px rgba(201, 169, 97, 0.5);
    margin: 0;
    animation: photoFloat 6s ease-in-out infinite;
}

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

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__photo-cap {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 14px 18px;
    background: rgba(26, 10, 46, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--cream);
}

.hero__photo-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
}

.hero__photo-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
}

.hero__cup-body {
    position: absolute;
    top: 18%;
    left: 0;
    right: 0;
    bottom: 6%;
    background:
        linear-gradient(180deg,
            rgba(45, 14, 77, 0.88) 0%,
            rgba(74, 31, 122, 0.85) 30%,
            rgba(45, 14, 77, 0.95) 100%);
    border-radius: 8% 8% 14% 14% / 4% 4% 12% 12%;
    box-shadow:
        inset 0 -30px 60px rgba(0, 0, 0, 0.5),
        inset 0 4px 12px rgba(255, 255, 255, 0.15),
        inset 25px 0 50px rgba(140, 95, 192, 0.15),
        inset -25px 0 50px rgba(0, 0, 0, 0.4),
        0 30px 50px rgba(26, 10, 46, 0.4);
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.25);
}

.hero__cup-fill {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(140, 95, 192, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
}

.hero__cup-shine {
    position: absolute;
    top: 0;
    left: 8%;
    width: 18%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%);
    border-radius: 50%;
    filter: blur(2px);
}

.hero__cup-rim {
    position: absolute;
    top: 14%;
    left: -3%;
    right: -3%;
    height: 30px;
    background: linear-gradient(180deg,
        rgba(74, 31, 122, 0.5) 0%,
        rgba(45, 14, 77, 0.95) 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 -4px 8px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.hero__cup-toppings {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28%;
    z-index: 4;
}

/* Bananas */
.cup-banana {
    position: absolute;
    width: 22%;
    aspect-ratio: 1.6 / 1;
    background: linear-gradient(150deg, #fce896 0%, #f4d774 50%, #d6b04a 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 -2px 4px rgba(150, 110, 30, 0.4),
        inset 0 2px 3px rgba(255, 255, 255, 0.6),
        0 3px 8px rgba(0, 0, 0, 0.3);
    border: 1.5px solid #d6b04a;
}

.cup-banana::after {
    content: "";
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22%;
    height: 22%;
    background: #c69b3f;
    border-radius: 50%;
    opacity: 0.5;
}

.cup-banana--1 { top: 35%; left: 12%; transform: rotate(-15deg); }
.cup-banana--2 { top: 28%; left: 22%; transform: rotate(8deg); }
.cup-banana--3 { top: 38%; left: 32%; transform: rotate(-5deg); }

/* Granola */
.cup-granola {
    position: absolute;
    top: 25%;
    right: 8%;
    width: 38%;
    height: 75%;
    background:
        radial-gradient(circle at 20% 30%, #d4a373 6%, transparent 7%),
        radial-gradient(circle at 50% 25%, #c08552 5%, transparent 6%),
        radial-gradient(circle at 80% 35%, #d4a373 5%, transparent 6%),
        radial-gradient(circle at 30% 60%, #a06a3f 6%, transparent 7%),
        radial-gradient(circle at 65% 65%, #b88456 5%, transparent 6%),
        radial-gradient(circle at 25% 85%, #c08552 5%, transparent 6%),
        radial-gradient(circle at 75% 90%, #a06a3f 5%, transparent 6%),
        radial-gradient(circle at 50% 50%, #b88456 6%, transparent 7%),
        radial-gradient(circle at 15% 50%, #d4a373 4%, transparent 5%),
        radial-gradient(circle at 85% 60%, #c08552 5%, transparent 6%),
        transparent;
    border-radius: 30% 50% 40% 30%;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

/* Blackberries */
.cup-berry {
    position: absolute;
    width: 14%;
    aspect-ratio: 1;
    background: radial-gradient(circle at 30% 30%, #5a2070 0%, #2d0a3a 70%, #15041a 100%);
    border-radius: 50%;
    box-shadow:
        inset -2px -3px 6px rgba(0, 0, 0, 0.6),
        inset 2px 2px 4px rgba(160, 100, 200, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.4);
}

.cup-berry::before {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 25% 25%, rgba(140, 80, 180, 0.4) 12%, transparent 15%),
        radial-gradient(circle at 55% 35%, rgba(140, 80, 180, 0.4) 12%, transparent 15%),
        radial-gradient(circle at 75% 60%, rgba(140, 80, 180, 0.4) 12%, transparent 15%),
        radial-gradient(circle at 35% 70%, rgba(140, 80, 180, 0.4) 12%, transparent 15%),
        radial-gradient(circle at 65% 85%, rgba(140, 80, 180, 0.4) 12%, transparent 15%);
}

.cup-berry--1 { top: 8%; left: 38%; }
.cup-berry--2 { top: 14%; left: 50%; }

/* Drizzle (leite condensado) */
.cup-drizzle {
    position: absolute;
    top: -5%;
    left: 48%;
    width: 6%;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, #f5e8c0 10%, #e8d5a3 100%);
    border-radius: 50%;
    transform: rotate(8deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

/* Selo dourado */
.hero__cup-seal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56%;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 5;
    text-align: center;
    color: #d9b554;
}

.seal-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.2px solid currentColor;
    box-shadow: inset 0 0 0 6px transparent, inset 0 0 0 7px rgba(217, 181, 84, 0.3);
}

.seal-leaf {
    position: absolute;
    top: 16%;
    width: 24%;
    aspect-ratio: 1;
    color: currentColor;
}

.seal-text-1 {
    font-family: var(--font-display);
    font-size: clamp(11px, 1.6vw, 15px);
    font-weight: 600;
    letter-spacing: 0.18em;
    margin-top: 14%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.seal-divider {
    font-family: var(--font-display);
    font-size: clamp(7px, 0.9vw, 9px);
    letter-spacing: 0.25em;
    margin: 2px 0;
    opacity: 0.85;
}

.seal-text-2 {
    font-family: var(--font-display);
    font-size: clamp(13px, 2vw, 18px);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Drops de condensação */
.hero__cup-drops {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__cup-drops span {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}

.hero__cup-drops span:nth-child(1) { top: 30%; left: 10%; width: 6px; height: 9px; border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; }
.hero__cup-drops span:nth-child(2) { top: 50%; left: 8%; width: 4px; height: 6px; }
.hero__cup-drops span:nth-child(3) { top: 70%; left: 18%; width: 5px; height: 7px; }
.hero__cup-drops span:nth-child(4) { top: 40%; right: 15%; width: 5px; height: 8px; }
.hero__cup-drops span:nth-child(5) { top: 65%; right: 10%; width: 4px; height: 6px; }
.hero__cup-drops span:nth-child(6) { top: 85%; right: 22%; width: 6px; height: 9px; }
.hero__cup-drops span:nth-child(7) { top: 35%; right: 30%; width: 3px; height: 5px; }
.hero__cup-drops span:nth-child(8) { top: 75%; left: 30%; width: 4px; height: 6px; }

.hero__cup-shadow {
    position: absolute;
    bottom: -2%;
    left: 8%;
    right: 8%;
    height: 10%;
    background: radial-gradient(ellipse, rgba(26, 10, 46, 0.4) 0%, transparent 70%);
    filter: blur(8px);
    z-index: 1;
}

/* CHIPS FLUTUANTES */
.hero__chip {
    position: absolute;
    z-index: 6;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow:
        0 12px 32px rgba(26, 10, 46, 0.18),
        0 0 0 1px rgba(26, 10, 46, 0.04);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: chipFloat 7s ease-in-out infinite;
}

.hero__chip--rating {
    top: 8%;
    left: -4%;
    animation-delay: 0s;
}

.hero__chip--rating .hero__chip-icon {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
}

.hero__chip--time {
    top: 38%;
    right: -8%;
    animation-delay: -2s;
}

.hero__chip--time .hero__chip-icon {
    color: var(--cream);
    background: linear-gradient(135deg, var(--acai-warm) 0%, var(--acai-deep) 100%);
}

.hero__chip--price {
    bottom: 6%;
    left: -2%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 16px 22px;
    animation-delay: -4s;
}

.hero__chip--price strong {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--acai-deep);
    line-height: 1;
}

.hero__chip--seal {
    bottom: 4%;
    left: -6%;
    padding: 8px;
    background: linear-gradient(135deg, var(--acai-deep) 0%, var(--ink) 100%);
    border-radius: 50%;
    box-shadow:
        0 16px 32px rgba(26, 10, 46, 0.35),
        0 0 0 1px rgba(201, 169, 97, 0.4);
    animation-delay: -3s;
}

.hero__chip--seal img {
    width: 56px;
    height: 56px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.4));
}

.hero__chip-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__chip-icon svg { width: 20px; height: 20px; }

.hero__chip-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hero__chip-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--acai-deep);
    line-height: 1.2;
}

.hero__chip-text span {
    font-size: 11px;
    color: var(--text-soft);
}

.hero__chip-mini {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-soft);
    font-weight: 600;
}

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

@media (max-width: 900px) {
    .hero__split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content { max-width: 100%; }
    .hero__lead--split { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__proof { justify-content: center; }
    .hero__pill { margin-left: auto; margin-right: auto; }
    .eyebrow::after { left: 50%; transform: translateX(-50%); }
    .hero__showcase { max-width: 380px; }
    .hero__chip--rating { left: 0; }
    .hero__chip--time { right: 0; }
    .hero__chip--price { left: 0; }
}

@media (max-width: 600px) {
    .hero__chip { padding: 8px 12px; }
    .hero__chip-text strong { font-size: 12px; }
    .hero__chip-text span { font-size: 10px; }
    .hero__chip--price strong { font-size: 24px; }
    .hero__chip-icon { width: 32px; height: 32px; border-radius: 10px; }
    .hero__chip-icon svg { width: 16px; height: 16px; }
}

.hero__inner-center {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title--center {
    font-size: clamp(48px, 8.5vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin: 24px auto 32px;
    max-width: 14ch;
}

.hero__title--center em {
    display: block;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--acai-warm) 0%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 4px 0;
}

.hero__lead--center {
    margin: 0 auto 40px;
    max-width: 56ch;
    text-align: center;
}

.hero__actions--center {
    margin: 0 auto 64px;
    justify-content: center;
}

.hero__badges--center {
    grid-template-columns: repeat(3, auto);
    gap: clamp(20px, 4vw, 56px);
    padding-top: 40px;
    border-top: 1px solid rgba(26, 10, 46, 0.12);
    text-align: center;
    justify-content: center;
}

.hero__badges--center li {
    align-items: center;
    text-align: center;
}

.eyebrow--center {
    margin: 0 auto;
    padding-bottom: 8px;
}

.eyebrow--center::after {
    left: 50%;
    transform: translateX(-50%);
}

.hero__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(74, 31, 122, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 70% 70%, rgba(201, 169, 97, 0.05) 1px, transparent 1px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    opacity: 0.6;
}

@media (max-width: 600px) {
    .hero__badges--center {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s var(--ease) infinite;
}

.hero__blob--1 {
    width: 600px;
    height: 600px;
    background: var(--acai-soft);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.hero__blob--2 {
    width: 500px;
    height: 500px;
    background: var(--gold-soft);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.hero__blob--3 {
    width: 400px;
    height: 400px;
    background: var(--acai-glow);
    top: 30%;
    left: 40%;
    opacity: 0.2;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.hero__content {
    max-width: 620px;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(40px, 6.5vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--acai-deep);
    margin-bottom: 24px;
    font-variation-settings: "opsz" 144;
}

.hero__title em {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--acai-warm);
    margin-top: 4px;
}

.hero__lead {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 36px;
    max-width: 56ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
}

.hero__badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(26, 10, 46, 0.1);
}

.hero__badges li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__badges strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--acai-deep);
}

.hero__badges span {
    font-size: 13px;
    color: var(--text-soft);
}

.hero__visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

.hero__bowl {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-image: url('../assets/produtos/hero-bowl.webp');
    background-size: cover;
    background-position: center;
    box-shadow:
        0 40px 80px rgba(26, 10, 46, 0.35),
        0 0 0 12px rgba(255, 255, 255, 0.5),
        0 0 0 14px rgba(201, 169, 97, 0.4);
    animation: bowlFloat 6s var(--ease) infinite;
    overflow: hidden;
}

.hero__bowl::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, transparent 50%, rgba(26, 10, 46, 0.15) 100%);
    pointer-events: none;
}

@keyframes bowlFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

/* Toppings/rim do bowl removidos pois a imagem real já contém visual completo */
.hero__bowl-rim, .hero__bowl-content, .topping { display: none; }

.hero__sparkle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.8);
    animation: sparkle 3s ease-in-out infinite;
}

.hero__sparkle--1 { width: 12px; height: 12px; top: 10%; left: 15%; animation-delay: 0s; }
.hero__sparkle--2 { width: 8px; height: 8px; top: 60%; right: 8%; animation-delay: -1s; }
.hero__sparkle--3 { width: 14px; height: 14px; bottom: 15%; left: 8%; animation-delay: -2s; }

@keyframes sparkle {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Marquee Band — fita que atravessa entre seções */
.marquee-band {
    position: relative;
    z-index: 5;
    overflow: hidden;
    background: linear-gradient(135deg, var(--acai-deep) 0%, var(--acai-rich) 50%, var(--acai-warm) 100%);
    color: var(--cream);
    padding: clamp(14px, 2.5vw, 22px) 0;
    margin: clamp(-30px, -4vw, -40px) -3% 0;
    transform: rotate(-2deg);
    box-shadow:
        0 24px 48px rgba(26, 10, 46, 0.35),
        inset 0 1px 0 rgba(201, 169, 97, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(201, 169, 97, 0.5);
    border-bottom: 1px solid rgba(201, 169, 97, 0.5);
}

@media (max-width: 600px) {
    .marquee-band {
        transform: rotate(-1.2deg);
        margin: clamp(-20px, -3vw, -30px) -5% 0;
    }
}

.marquee-band__track {
    display: flex;
    gap: 36px;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: marquee 22s linear infinite;
    will-change: transform;
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.01em;
    transform: rotate(0deg);
}

.marquee-band:hover .marquee-band__track {
    animation-play-state: paused;
}

.marquee-band__track span:not([aria-hidden]) {
    color: var(--cream);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.marquee-band__track span[aria-hidden] {
    color: var(--gold);
    font-style: normal;
    font-size: 16px;
    text-shadow: 0 0 12px rgba(201, 169, 97, 0.6);
}

/* Compensa o margin negativo da banda na seção seguinte */
.marquee-band + .section {
    padding-top: clamp(100px, 14vh, 160px);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        max-width: 380px;
    }

    .eyebrow::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .hero__badges {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }
}

/* ============================================
   SECTIONS GENERIC
   ============================================ */

.section {
    padding: var(--section-pad) 0;
}

@media (max-width: 480px) {
    .section { padding: clamp(50px, 12vw, 70px) 0; }
    .section__title { font-size: clamp(28px, 8vw, 38px); }
    .section__lead { font-size: 15px; }
    .section__header { margin-bottom: 40px; }
}

/* ============================================
   SOBRE
   ============================================ */

.sobre {
    background: var(--cream);
}

.sobre__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.sobre__media {
    position: relative;
}

.sobre__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--acai-deep);
    box-shadow:
        0 40px 80px rgba(26, 10, 46, 0.35),
        0 0 0 1px rgba(201, 169, 97, 0.3);
    margin: 0;
}

.sobre__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sobre__photo-cap {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 16px 20px;
    background: rgba(10, 4, 20, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--cream);
}

.sobre__photo-cap span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.sobre__photo-cap strong {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
}

.sobre__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.sobre__pills li {
    padding: 10px 20px;
    background: var(--cream-warm);
    border: 1px solid rgba(26, 10, 46, 0.08);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--acai-deep);
}

@media (max-width: 900px) {
    .sobre__grid {
        grid-template-columns: 1fr;
    }

    .sobre__card {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ============================================
   CARDÁPIO
   ============================================ */

.cardapio {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.cardapio__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    margin-bottom: clamp(40px, 7vw, 64px);
}

@media (max-width: 480px) {
    .cardapio__grid {
        grid-template-columns: 1fr;
    }
}

.card-produto {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

.card-produto:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-produto--featured {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.card-produto__tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--acai-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
}

.card-produto__image {
    height: 220px;
    aspect-ratio: 1 / 1;
    position: relative;
    background: linear-gradient(135deg, var(--acai-warm) 0%, var(--acai-deep) 100%);
    overflow: hidden;
}

.card-produto__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 40% 35%, var(--acai-glow) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(201, 169, 97, 0.3) 0%, transparent 50%);
}

.card-produto__image::after {
    content: "";
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--acai-soft) 0%, var(--acai-rich) 60%, var(--acai-deep) 100%);
    box-shadow:
        inset -10px -20px 40px rgba(0, 0, 0, 0.4),
        0 12px 32px rgba(0, 0, 0, 0.3);
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid rgba(201, 169, 97, 0.3);
}

/* Cards com fotos reais geradas (linha visual coesa PARADA DO AÇAÍ) */
.card-produto__image--copo300,
.card-produto__image--copo500,
.card-produto__image--copo700,
.card-produto__image--bowl,
.card-produto__image--milkshake,
.card-produto__image--combo {
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: var(--ink);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-produto__image--copo300 { background-image: url('../assets/produtos/hero-acai.webp'); }
.card-produto__image--copo500 { background-image: url('../assets/produtos/copo-500ml.webp'); }
.card-produto__image--copo700 { background-image: url('../assets/produtos/copo-700ml.webp'); }
.card-produto__image--bowl { background-image: url('../assets/produtos/bowl-premium-novo.webp'); }
.card-produto__image--milkshake { background-image: url('../assets/produtos/milkshake.webp'); }
.card-produto__image--combo { background-image: url('../assets/produtos/combo-familia.webp'); }

.card-produto__image--copo300::before,
.card-produto__image--copo300::after,
.card-produto__image--copo500::before,
.card-produto__image--copo500::after,
.card-produto__image--copo700::before,
.card-produto__image--copo700::after,
.card-produto__image--bowl::before,
.card-produto__image--bowl::after,
.card-produto__image--milkshake::before,
.card-produto__image--milkshake::after,
.card-produto__image--combo::before,
.card-produto__image--combo::after {
    display: none;
}

.card-produto__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-produto__cat {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-deep);
    margin-bottom: 8px;
}

.card-produto__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--acai-deep);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.card-produto__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-soft);
    margin-bottom: 24px;
    flex: 1;
}

.card-produto__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 10, 46, 0.08);
}

.card-produto__price {
    font-size: 13px;
    color: var(--text-soft);
}

.card-produto__price strong {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--acai-deep);
    margin-top: 2px;
}

.card-produto__cta {
    padding: 10px 22px;
    background: var(--acai-deep);
    color: var(--cream);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.2s var(--ease);
}

.card-produto__cta:hover {
    background: var(--acai-warm);
    transform: scale(1.05);
}

.cardapio__note {
    text-align: center;
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(26, 10, 46, 0.2);
}

.cardapio__note p {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 20px;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */

.diferenciais {
    background: var(--acai-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, var(--acai-warm) 0%, transparent 70%);
    opacity: 0.4;
}

.diferenciais::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-deep) 0%, transparent 70%);
    opacity: 0.2;
}

.diferenciais .container {
    position: relative;
    z-index: 1;
}

.diferenciais .section__title {
    color: var(--cream);
}

.diferenciais .section__lead {
    color: rgba(250, 246, 238, 0.75);
}

.diferenciais .eyebrow {
    color: var(--gold);
}

.diferenciais .eyebrow::after {
    background: var(--gold);
}

.diferenciais__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: clamp(20px, 3vw, 32px);
}

.diferencial {
    padding: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease);
}

.diferencial:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.diferencial__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: var(--acai-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.diferencial__icon svg {
    width: 28px;
    height: 28px;
}

.diferencial h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.diferencial p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(250, 246, 238, 0.75);
}

/* ============================================
   LOCALIZAÇÃO
   ============================================ */

.localizacao {
    background: var(--cream);
}

.localizacao__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.localizacao__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.info-card {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 10, 46, 0.08);
    box-shadow: var(--shadow-sm);
}

.info-card__label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-deep);
    margin-bottom: 8px;
}

.info-card__value {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
}

.info-card__value a {
    color: var(--acai-deep);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s var(--ease);
}

.info-card__value a:hover {
    border-bottom-color: var(--acai-deep);
}

.localizacao__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.localizacao__map {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(26, 10, 46, 0.08);
}

.localizacao__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .localizacao__grid {
        grid-template-columns: 1fr;
    }

    .localizacao__cards {
        grid-template-columns: 1fr;
    }

    .localizacao__map {
        aspect-ratio: 4 / 3;
    }
}

/* ============================================
   DELIVERY
   ============================================ */

.delivery {
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}

.delivery__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    padding: clamp(40px, 6vw, 80px);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.delivery__steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0 40px;
}

.delivery__steps li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--text);
}

.delivery__steps span {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--acai-warm) 0%, var(--acai-deep) 100%);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
}

.delivery__visual {
    display: flex;
    justify-content: center;
}

.delivery__phone {
    width: 280px;
    aspect-ratio: 9 / 18;
    background: var(--ink);
    border-radius: 36px;
    padding: 14px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.delivery__phone::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: var(--ink);
    border-radius: 3px;
    z-index: 2;
}

.delivery__phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #e5ddd5 0%, #d8cec3 100%);
    border-radius: 24px;
    padding: 24px 14px 14px;
    overflow: hidden;
    position: relative;
}

.delivery__chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.delivery__msg {
    max-width: 78%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.delivery__msg--in {
    align-self: flex-start;
    background: var(--white);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.delivery__msg--out {
    align-self: flex-end;
    background: #d9fdd3;
    color: var(--text);
    border-bottom-right-radius: 4px;
}

@media (max-width: 900px) {
    .delivery__inner {
        grid-template-columns: 1fr;
        padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 32px);
    }

    .delivery__phone {
        width: clamp(200px, 60vw, 240px);
    }
}

@media (max-width: 480px) {
    .delivery__steps li { font-size: 14px; }
    .delivery__steps span {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }
}

/* ============================================
   CONTATO
   ============================================ */

.contato {
    background: var(--cream-warm);
}

.contato__card {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px);
    background: linear-gradient(135deg, var(--acai-warm) 0%, var(--acai-deep) 100%);
    border-radius: var(--radius-xl);
    color: var(--cream);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contato__card::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.2;
}

.contato__card .section__title {
    color: var(--cream);
}

.contato__card .eyebrow {
    color: var(--gold);
}

.contato__card .eyebrow::after {
    background: var(--gold);
    left: 50%;
    transform: translateX(-50%);
}

.contato__card p {
    color: rgba(250, 246, 238, 0.85);
    max-width: 56ch;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.contato__channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 16px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.contato__channel {
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    text-align: left;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(10px);
}

.contato__channel:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.contato__channel-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.contato__channel-value {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.4;
    word-break: break-word;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--ink);
    color: rgba(250, 246, 238, 0.7);
    padding: 80px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer__brand .logo {
    margin-bottom: 20px;
}

.footer__brand .logo__line1 {
    color: var(--cream);
}

.footer__tagline {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(250, 246, 238, 0.6);
    max-width: 320px;
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a, .footer__col li {
    font-size: 14px;
    color: rgba(250, 246, 238, 0.6);
    transition: color 0.2s var(--ease);
}

.footer__col a:hover {
    color: var(--gold);
}

.footer__legal {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 13px;
    color: rgba(250, 246, 238, 0.5);
}

.footer__company {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.5;
}

.footer__company strong {
    color: var(--cream);
    font-weight: 600;
    margin-bottom: 4px;
}

.footer__copy {
    text-align: right;
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__legal {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__copy {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand .logo--footer {
        margin: 0 auto 20px;
    }

    .footer__col ul {
        align-items: center;
    }

    .footer__legal {
        text-align: center;
        align-items: center;
    }

    .footer__company {
        align-items: center;
        text-align: center;
    }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: clamp(16px, 3vw, 24px);
    right: clamp(16px, 3vw, 24px);
    width: clamp(54px, 6vw, 60px);
    height: clamp(54px, 6vw, 60px);
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s var(--ease);
    animation: pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 520px;
    z-index: 1001;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    border: 1px solid rgba(26, 10, 46, 0.08);
    animation: slideUp 0.4s var(--ease-out);
}

.cookie-banner[hidden] {
    display: none;
}

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

.cookie-banner p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 16px;
}

.cookie-banner a {
    color: var(--acai-warm);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 90px;
        left: 16px;
        right: 16px;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .hero__bowl, .hero__blob, .hero__sparkle, .whatsapp-float {
        animation: none;
    }

    /* Marquee mantém movimento mesmo em reduce-motion (essencial à identidade) */
    .marquee-band__track {
        animation: marquee 40s linear infinite !important;
    }
}

/* ============================================
   GLOBAL RESPONSIVE POLISH
   ============================================ */

@media (max-width: 600px) {
    .container { padding: 0 16px; }
    h1, h2, h3, h4 { word-break: break-word; hyphens: auto; }
}

@media (max-width: 380px) {
    :root { --section-pad: 56px; }
    .header { padding: 12px 0; }
    .logo__line2 { display: none; }
    .info-card { padding: 16px; }
    .card-produto__body { padding: 20px; }
    .card-produto__title { font-size: 20px; }
}

/* Telas grandes — manter respiração */
@media (min-width: 1600px) {
    :root { --container: 1400px; }
    .hero--editorial__title { font-size: clamp(72px, 6vw, 120px); }
}

/* Touch targets — garantir mínimo 44x44 em links/botões */
@media (pointer: coarse) {
    .btn { min-height: 44px; }
    .nav__menu a { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .footer__col a { padding: 6px 0; display: inline-block; }
    .card-produto__cta { min-height: 40px; display: inline-flex; align-items: center; }
}

/* Orientação landscape em mobile (não deixar hero gigante) */
@media (max-height: 600px) and (orientation: landscape) {
    .hero--editorial { min-height: auto; padding-top: 80px; padding-bottom: 60px; }
    .hero--editorial__photo {
        position: absolute;
        height: 100%;
        max-height: none;
    }
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
    padding: clamp(100px, 14vw, 140px) 0 clamp(60px, 8vw, 80px);
    min-height: 100vh;
    background: var(--cream);
}

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

@media (max-width: 600px) {
    .legal-page p, .legal-page li { font-size: 15px; }
    .legal-page__highlight { padding: 18px 20px; }
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    color: var(--acai-deep);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.legal-page__date {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 48px;
    padding: 6px 14px;
    background: var(--cream-warm);
    border-radius: 999px;
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 500;
    color: var(--acai-deep);
    margin: 48px 0 16px;
    letter-spacing: -0.01em;
}

.legal-page h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--acai-warm);
    margin: 32px 0 12px;
}

.legal-page p, .legal-page li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 16px;
}

.legal-page ul, .legal-page ol {
    margin: 16px 0 24px 24px;
    padding-left: 0;
}

.legal-page ul li, .legal-page ol li {
    list-style: disc;
    margin-left: 8px;
    margin-bottom: 8px;
    padding-left: 4px;
}

.legal-page ol li {
    list-style: decimal;
}

.legal-page strong {
    color: var(--acai-deep);
    font-weight: 600;
}

.legal-page a {
    color: var(--acai-warm);
    border-bottom: 1px solid currentColor;
    transition: color 0.2s var(--ease);
}

.legal-page a:hover {
    color: var(--acai-deep);
}

.legal-page__highlight {
    padding: 24px 28px;
    background: var(--cream-warm);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
}

.legal-page__highlight p:last-child {
    margin-bottom: 0;
}

.legal-page__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--acai-warm);
    font-weight: 500;
}

.legal-page__back:hover {
    color: var(--acai-deep);
}

/* ============================================
   UTILITIES
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
