/* ============ PIPOCANDO GOSTOSURAS — CSS PRINCIPAL ============ */

:root {
    --gold: #F5B800;
    --gold-light: #FFD54F;
    --gold-deep: #C99400;
    --black: #1a1a1a;
    --ink: #2a2a2a;
    --cream: #FDF8EC;
    --cream-warm: #F7EBCE;
    --paper: #FFFCF5;
    --caramel: #B8721A;
    --chocolate: #4A2C1A;
    --chocolate-deep: #2B170C;
    --rose: #E8A9A0;
    --white: #ffffff;

    --font-display: 'Playfair Display', serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    --font-hand: 'Caveat', cursive;

    --shadow-soft: 0 10px 40px rgba(42, 42, 42, 0.08);
    --shadow-medium: 0 20px 60px rgba(42, 42, 42, 0.12);
    --shadow-deep: 0 30px 80px rgba(42, 42, 42, 0.2);
    --shadow-gold: 0 20px 50px rgba(245, 184, 0, 0.25);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

@media (max-width: 900px) {
    body { cursor: auto; }
}

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

/* CURSOR */
.cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out;
    mix-blend-mode: multiply;
}
.cursor-ring {
    position: fixed;
    width: 44px; height: 44px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.35s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}
.cursor.grow { transform: scale(2.5); }
.cursor-ring.grow { width: 80px; height: 80px; border-color: var(--gold-deep); }
@media (max-width: 900px) { .cursor, .cursor-ring { display: none; } }

/* PRELOADER */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
    font-family: var(--font-hand);
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: pulse 1.5s ease-in-out infinite;
}
.preloader-bar {
    width: 200px; height: 2px;
    background: rgba(245, 184, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
}
.preloader-bar-fill {
    width: 0%; height: 100%;
    background: var(--gold);
    animation: loadFill 1.8s ease-out forwards;
}
.preloader-text {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.4em;
    font-size: 0.7rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
}
@keyframes loadFill { to { width: 100%; } }
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

.pop-animate {
    display: inline-block;
    animation: popIn 0.6s var(--ease-out) both;
}
@keyframes popIn {
    0% { transform: scale(0) rotate(-45deg); opacity: 0; }
    60% { transform: scale(1.2) rotate(5deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* FLOATING POPCORN */
.popcorn-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.popcorn-bit {
    position: absolute;
    width: 32px; height: 32px;
    opacity: 0;
    filter: drop-shadow(0 6px 12px rgba(184, 114, 26, 0.25));
}

/* NAV */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s var(--ease-out);
    background: transparent;
}
.nav.scrolled {
    padding: 0.9rem 3rem;
    background: rgba(255, 252, 245, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(245, 184, 0, 0.15);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-hand);
    font-size: 1.9rem;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
}
.nav-logo .bee { width: 28px; height: 28px; animation: beeFly 4s ease-in-out infinite; }
@keyframes beeFly {
    0%, 100% { transform: translate(0, 0) rotate(-5deg); }
    25% { transform: translate(3px, -4px) rotate(5deg); }
    50% { transform: translate(-2px, 2px) rotate(-3deg); }
    75% { transform: translate(4px, -1px) rotate(4deg); }
}
.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}
.nav-menu a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-deep); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta {
    padding: 0.65rem 1.4rem;
    background: var(--ink);
    color: var(--paper);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.sound-toggle {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s;
    color: var(--ink);
}
.sound-toggle:hover { background: var(--gold); border-color: var(--gold); }
.sound-toggle.muted .sound-wave { opacity: 0.3; }
.menu-burger {
    display: none;
    width: 32px; height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-burger span { height: 2px; background: var(--ink); width: 100%; transition: 0.3s; }

@media (max-width: 900px) {
    .nav { padding: 1rem 1.5rem; }
    .nav.scrolled { padding: 0.7rem 1.5rem; }
    .nav-menu, .nav-cta { display: none; }
    .menu-burger { display: flex; }
    .nav-logo { font-size: 1.5rem; }

    .nav.mobile-open .nav-menu {
        display: flex;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 82%; max-width: 340px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 4rem 2.5rem;
        background: var(--paper);
        box-shadow: -20px 0 60px rgba(0,0,0,0.15);
        gap: 1.8rem;
        z-index: 200;
    }
    .nav.mobile-open .nav-menu a { font-size: 1.1rem; }
    .nav.mobile-open .nav-cta {
        display: inline-flex;
        margin-top: 1rem;
    }
}

/* BUTTONS */
.btn {
    padding: 1.1rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: none;
    transition: all 0.4s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--ink);
    color: var(--paper);
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.25);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(101%);
    transition: transform 0.4s var(--ease-out);
    z-index: -1;
}
.btn-primary:hover { color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--ink); color: var(--gold); transform: translateY(-3px); }
.btn .arrow { display: inline-block; transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }
@media (max-width: 900px) { .btn { cursor: pointer; } }

/* SECTIONS */
section { padding: 8rem 3rem; position: relative; }
@media (max-width: 900px) { section { padding: 5rem 1.5rem; } }

.container { max-width: 1300px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 5rem; }
.section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: var(--ink);
    line-height: 1;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.2rem;
}
.section-title .script {
    font-family: var(--font-hand);
    font-weight: 700;
    font-style: normal;
    color: var(--gold-deep);
}
.section-desc {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: rgba(42, 42, 42, 0.7);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-in { opacity: 1; transform: translateY(0); }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 50;
    transition: transform 0.3s;
    animation: whatsBob 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes whatsBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* FOOTER */
.footer {
    background: var(--ink);
    color: var(--paper);
    padding: 4rem 3rem 2rem;
}
.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name {
    font-family: var(--font-hand);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
    line-height: 1;
}
.footer-brand-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.footer-brand-desc {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(253, 248, 236, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 340px;
}
.footer-col h5 {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a {
    color: rgba(253, 248, 236, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 248, 236, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(253, 248, 236, 0.5);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-hearts { color: var(--gold); }

/* ============ HERO (index) ============ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 5rem;
    background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 60%, var(--cream-warm) 100%);
    overflow: hidden;
}
.hero-bg-ornament {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vmin, 900px);
    height: min(90vmin, 900px);
    opacity: 0.06;
    pointer-events: none;
}
.hero-bg-ornament .ring {
    position: absolute;
    inset: 0;
    border: 1px solid var(--ink);
    border-radius: 50%;
}
.hero-bg-ornament .ring:nth-child(2) { inset: 8%; }
.hero-bg-ornament .ring:nth-child(3) { inset: 16%; }
.hero-bg-ornament .ring:nth-child(4) { inset: 24%; }
.hero-content { position: relative; z-index: 5; text-align: center; max-width: 1100px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--caramel);
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 0.5rem 1.2rem;
    background: rgba(245, 184, 0, 0.12);
    border-radius: 50px;
    border: 1px solid rgba(245, 184, 0, 0.25);
}

.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 20px; height: 1px;
    background: var(--caramel);
    opacity: 0.5;
}
.hero-title {
    font-family: var(--font-hand);
    font-size: clamp(4.5rem, 13vw, 11rem);
    color: var(--ink);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}
.hero-title .highlight { position: relative; display: inline-block; }
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em; left: -0.05em; right: -0.05em;
    height: 0.35em;
    background: var(--gold);
    z-index: -1;
    transform: skew(-6deg);
    opacity: 0.65;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 700;
    padding: 0.4rem 1rem;
    background: var(--gold);
    display: inline-block;
    margin: 1rem auto 2rem;
    transform: rotate(-1deg);
}
.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.3rem, 2.3vw, 1.9rem);
    color: var(--caramel);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.4;
}
.hero-tagline .accent { color: var(--gold-deep); font-weight: 500; }
.hero-cta-group { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: var(--ink);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.6;
}
.hero-scroll .line {
    width: 1px; height: 40px;
    background: var(--ink);
    animation: scrollLine 2s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.2); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

.marquee {
    background: var(--ink);
    color: var(--paper);
    padding: 1.2rem 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}
.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marqueeMove 30s linear infinite;
    white-space: nowrap;
    padding-left: 3rem;
}
.marquee-item {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 3rem;
}
.marquee-item .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ============ ABOUT PREVIEW (index) ============ */
.about-preview { background: var(--paper); position: relative; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }
.about-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream-warm) 0%, var(--gold-light) 100%);
    box-shadow: var(--shadow-deep);
}
.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(74, 44, 26, 0.15) 0%, transparent 50%);
}
.about-visual-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}
.about-package {
    width: 65%;
    max-width: 320px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
    animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}
.about-badge {
    position: absolute;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-hand);
    font-size: 1.1rem;
    line-height: 1.15;
    padding: 1rem;
    top: 30px; right: 30px;
    transform: rotate(-15deg);
    animation: spinSlow 20s linear infinite;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
@keyframes spinSlow { to { transform: rotate(345deg); } }
.about-mini-pops {
    position: absolute;
    width: 50px; height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.about-mini-pops.pop1 { top: 8%; left: 8%; animation: bob 3s ease-in-out infinite; }
.about-mini-pops.pop2 { bottom: 12%; left: 15%; animation: bob 3.5s ease-in-out infinite 0.5s; }
.about-mini-pops.pop3 { bottom: 20%; right: 12%; width: 40px; animation: bob 2.8s ease-in-out infinite 1s; }
@keyframes bob {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(20deg); }
}
.about-content { padding: 1rem 0; }
.about-content .section-title { text-align: left; }
.about-content .section-eyebrow { text-align: left; display: block; }
.about-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(42, 42, 42, 0.85);
    margin-bottom: 1.5rem;
}
.about-text .drop-cap {
    float: left;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.9;
    margin: 0.1rem 0.6rem 0 0;
    color: var(--gold-deep);
    font-style: italic;
}
.about-signature {
    font-family: var(--font-hand);
    font-size: 2rem;
    color: var(--gold-deep);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.about-signature small {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(42, 42, 42, 0.6);
    display: block;
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(42, 42, 42, 0.1);
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ink);
    font-style: italic;
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(42, 42, 42, 0.6);
    margin-top: 0.4rem;
}

/* ============ FLAVORS GRID (index) ============ */
.flavors { background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); position: relative; }
.flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 1100px) { .flavors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .flavors-grid { grid-template-columns: 1fr; } }
.flavor-card {
    background: var(--paper);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(42, 42, 42, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 480px;
    text-decoration: none;
    color: inherit;
    cursor: none;
}
.flavor-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-medium); }
.flavor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}
.flavor-card:hover::before { opacity: 0.08; }
.flavor-card > * { position: relative; z-index: 1; }
.flavor-visual {
    aspect-ratio: 1;
    border-radius: 16px;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--visual-bg);
    position: relative;
    overflow: hidden;
}
.flavor-visual::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 40% 30%, rgba(255,255,255,0.35) 0%, transparent 55%);
    pointer-events: none;
}
.flavor-pops {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    width: 85%;
    transition: transform 0.6s var(--ease-out);
}
.flavor-card:hover .flavor-pops { transform: scale(1.08) rotate(-3deg); }
.flavor-pop {
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--pop-color);
    box-shadow:
        inset -3px -4px 8px rgba(0,0,0,0.15),
        inset 3px 3px 8px rgba(255,255,255,0.35),
        0 4px 10px rgba(0,0,0,0.12);
    position: relative;
}
.flavor-pop::before {
    content: '';
    position: absolute;
    top: 12%; left: 20%;
    width: 32%; height: 22%;
    background: rgba(255,255,255,0.55);
    border-radius: 50%;
    filter: blur(1px);
}
.flavor-number {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    font-family: var(--font-display);
    font-size: 3rem;
    font-style: italic;
    color: rgba(42, 42, 42, 0.08);
    font-weight: 700;
    line-height: 1;
}
.flavor-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--tag-bg);
    color: var(--tag-color, var(--ink));
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.flavor-name {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 0.6rem;
    line-height: 1.1;
}
.flavor-desc {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(42, 42, 42, 0.7);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.flavor-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.2rem;
    border-top: 1px dashed rgba(42, 42, 42, 0.15);
}
.flavor-price {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--ink);
}
.flavor-price small {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 500;
    color: rgba(42, 42, 42, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.1rem;
}
.flavor-buy {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}
.flavor-card:hover .flavor-buy { background: var(--gold); color: var(--ink); transform: rotate(-45deg) scale(1.15); }

/* ============ EVENTS TEASER (index) ============ */
.events-teaser {
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}
.events-teaser::before {
    content: '';
    position: absolute;
    top: -300px; right: -300px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.15) 0%, transparent 70%);
}
.events-teaser .section-title { color: var(--paper); }
.events-teaser .section-title .script { color: var(--gold); }
.events-teaser .section-desc { color: rgba(253, 248, 236, 0.7); }
.events-teaser .section-eyebrow { color: var(--gold); }
.events-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) { .events-features { grid-template-columns: 1fr; } }
.event-mini {
    background: rgba(253, 248, 236, 0.05);
    border: 1px solid rgba(253, 248, 236, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}
.event-mini:hover { background: rgba(245, 184, 0, 0.08); border-color: rgba(245, 184, 0, 0.3); transform: translateY(-6px); }
.event-mini-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.event-mini h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}
.event-mini p { font-size: 0.9rem; color: rgba(253, 248, 236, 0.6); line-height: 1.5; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--cream); position: relative; overflow: hidden; }
.testimonials::before {
    content: '"';
    position: absolute;
    font-family: var(--font-display);
    font-size: 40rem;
    color: rgba(245, 184, 0, 0.08);
    top: -8rem; left: 2rem;
    line-height: 1;
    font-weight: 900;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
    background: var(--paper);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(42, 42, 42, 0.05);
    position: relative;
    transition: transform 0.4s var(--ease-out);
}
.testimonial-card:hover { transform: translateY(-6px); }
.testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(42, 42, 42, 0.85);
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(42, 42, 42, 0.08);
}
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role {
    font-size: 0.75rem;
    color: rgba(42, 42, 42, 0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============ CONTATO ============ */
.contact {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 7rem 3rem 5rem;
}
.contact::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.contact-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.contact-head { text-align: center; margin-bottom: 4rem; }
.contact-head .section-title { color: var(--ink); }
.contact-head .section-title .script { color: var(--paper); text-shadow: 3px 3px 0 var(--ink); }
.contact-head .section-eyebrow { color: var(--ink); }
.contact-head .section-desc { color: var(--ink); font-weight: 500; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
    background: rgba(255, 252, 245, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
    color: var(--ink);
    border: 2px solid transparent;
}
.contact-card:hover { transform: translateY(-8px); border-color: var(--ink); box-shadow: 0 20px 50px rgba(26, 26, 26, 0.15); }
.contact-card-icon {
    width: 60px; height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    transition: all 0.4s;
}
.contact-card:hover .contact-card-icon { transform: rotate(-10deg) scale(1.1); }
.contact-card h4 {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(42, 42, 42, 0.5);
    margin-bottom: 0.6rem;
    font-weight: 700;
}
.contact-card p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.3;
}

/* ============ INNER PAGE HEADER (for subpages) ============ */
.page-hero {
    min-height: 60vh;
    padding: 10rem 3rem 5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
    overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-breadcrumb {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(42, 42, 42, 0.55);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.page-hero-breadcrumb a { color: var(--ink); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--gold-deep); }
.page-hero-breadcrumb .sep { margin: 0 0.6rem; opacity: 0.4; }
.page-hero-title {
    font-family: var(--font-hand);
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 0.8rem;
}
.page-hero-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: rgba(42, 42, 42, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .hero { padding: 6rem 1.5rem 4rem; }
    .about-content { padding: 0; }
    .about-badge { width: 90px; height: 90px; font-size: 0.85rem; }
    .flavor-card { padding: 1.8rem 1.5rem 1.5rem; min-height: auto; }
    .marquee-item { font-size: 1.1rem; gap: 1.5rem; }
    .page-hero { padding: 8rem 1.5rem 3rem; min-height: 45vh; }
}
