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

/* scrollbar amarela da marca */
html {
    scrollbar-color: #FFBB00 #111;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #FFBB00;
    border: 3px solid #111;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffc933;
}

/* Lenis (scroll suave) */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    overflow: hidden;
    background: #000 url(../img/background.webp) center/cover no-repeat fixed;
    font-family: "Sora", sans-serif;
}

/* scroll liberado só depois que a intro estoura */
body.started {
    overflow-x: hidden;
    overflow-y: auto;
}

section[id] {
    scroll-margin-top: 90px;
}

h1,
h2,
h3,
a {
    text-transform: uppercase;
    font-family: "Teko", sans-serif;
    line-height: 100%;
}

img {
    display: block;
}

span {
    display: inline-block;
}

/* ==========================================
   STAGE
========================================== */

.stage {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.screen {
    position: absolute;
    height: 100%;
}

/* ==========================================
   INTRO
========================================== */

.screen-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    width: 100%;

    .intro-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;

        h1 {
            font-size: 80px;
            color: #FFBB00;
            text-align: center;
            transform-origin: center;
            transition: transform 1.2s cubic-bezier(.7, 0, .3, 1), opacity 1.2s ease;
            will-change: transform;
        }

        .btn-intro {
            background: #FFE498;
            transition: opacity .4s ease, transform .2s ease;
        }
    }
}

/* frase cresce e "estoura", revelando o hero atrás */
.screen-intro.exploding {
    pointer-events: none;

    h1 {
        transform: scale(28);
        opacity: 0;
    }

    .btn-intro {
        opacity: 0;
    }
}

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

.screen-hero {
    display: flex;
    align-items: center;

    .container {
        width: min(1200px, calc(100% - 30px));
        margin: auto;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        position: relative;

    }

    .hero-content {
        h2 {
            font-size: 270px;
            line-height: .8;
            margin-left: -10px;
            color: #FFBB00;
        }

        h3 {
            font-size: 48px;
            line-height: .8;
            color: #FFE498;
        }

        p {
            max-width: 60%;
            margin: 24px 0;
            font-size: 20px;
            color: #FFF;
            line-height: 130%;
        }

        
    }

    .hero-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        position: absolute;
        right: 0;
        top: 50px;
        transform: rotate(10deg);
       

        .smoke {
            position: absolute;
            top: -35%;
            left: 10%;
            pointer-events: none;
            filter: blur(2px);
            opacity: 0;
        }
    }
}

/* hero começa escondido atrás da intro */
.screen-hero {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease;
}

/* elementos entram em cena com stagger */
.screen-hero .hero-content h2,
.screen-hero .hero-content h3,
.screen-hero .hero-content p,
.screen-hero .hero-content .btn-hero {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.screen-hero .burger {
    opacity: 0;
    transform: scale(.6) rotate(-15deg);
    transition: opacity .8s ease, transform .8s cubic-bezier(.34, 1.56, .64, 1);
}

.screen-hero.revealed {
    opacity: 1;
    visibility: visible;

    .hero-content h2 { opacity: 1; transform: none; transition-delay: .15s; }
    .hero-content h3 { opacity: 1; transform: none; transition-delay: .30s; }
    .hero-content p  { opacity: 1; transform: none; transition-delay: .45s; }
    .hero-content .btn-hero { opacity: 1; transform: none; transition-delay: .60s; }

    .burger {
        opacity: 1;
        transform: scale(1) rotate(0);
        transition-delay: .2s;
        animation: float 3.5s ease-in-out .8s infinite;
    }

    .smoke {
        animation: smoke 4s ease-in-out .6s infinite;
    }
}

@keyframes float {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -16px; }
}

@keyframes smoke {
    0%   { opacity: 0; transform: translateY(20px) scale(.9); }
    45%  { opacity: .6; }
    100% { opacity: 0; transform: translateY(-45px) scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition-duration: .01ms !important;
    }
    .screen-intro.exploding h1 { transform: none; }
}

/* ==========================================
   BUTTON
========================================== */

.btn {
    display: inline-block;
    padding: 12px 48px;

    border-radius: 4px;

    background: #FFE498;
    color: #000;

    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.btn:hover {
    background: #FFBB00;
}

.btn-big {
    font-size: 24px;
    padding: 18px 64px;
    margin-top: 28px;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 16px 0;
    background: rgba(0, 0, 0, .55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform .5s ease;
}

body.started .site-header {
    transform: none;
}

.nav-inner {
    width: min(1200px, calc(100% - 30px));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    font-family: "Teko", sans-serif;
    font-size: 34px;
    color: #FFBB00;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: "Teko", sans-serif;
    font-size: 22px;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: #FFBB00;
}

/* ==========================================
   SEÇÕES DE CONTEÚDO
========================================== */

.section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.section-menu,
.section-about {
    background: #0c0c0c;
}

/* kicker editorial com traço */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 13px;
    font-weight: 600;
    color: #FFBB00;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: #FFBB00;
}

.section-title {
    font-family: "Teko", sans-serif;
    font-size: clamp(52px, 9vw, 120px);
    line-height: .88;
    color: #fff;
}

/* ---- CARDÁPIO (menu tipográfico) ---- */
.menu-list {
    list-style: none;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.menu-row {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 26px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transition: background .3s ease, padding-left .3s ease;
    cursor: pointer;
}

.menu-row:hover {
    background: #FFBB00;
    padding-left: 28px;
}

.menu-num {
    flex: none;
    width: 44px;
    font-family: "Teko", sans-serif;
    font-size: 26px;
    color: #FFBB00;
    transition: color .3s ease;
}

.menu-info {
    flex: 1;
}

.menu-info h3 {
    font-family: "Teko", sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    color: #fff;
    transition: color .3s ease;
}

.menu-info p {
    max-width: 48ch;
    margin-top: 6px;
    font-size: 15px;
    color: #9a9a9a;
    transition: color .3s ease;
}

.menu-price {
    flex: none;
    font-family: "Teko", sans-serif;
    font-size: clamp(34px, 5vw, 56px);
    color: #fff;
    transition: color .3s ease;
}

.menu-price i {
    font-style: normal;
    font-size: .48em;
    vertical-align: super;
    color: #FFBB00;
    margin-right: 3px;
    transition: color .3s ease;
}

/* no hover a linha inteira fica preta sobre o amarelo */
.menu-row:hover :is(.menu-num, .menu-info h3, .menu-info p, .menu-price, .menu-price i) {
    color: #000;
}

/* ---- SOBRE (editorial 2 colunas) ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-points {
    list-style: none;
}

.about-points li {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.about-points li:first-child {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.about-points b {
    font-family: "Teko", sans-serif;
    font-size: 20px;
    letter-spacing: .12em;
    color: #FFBB00;
}

.about-points h3 {
    font-family: "Teko", sans-serif;
    font-size: 34px;
    color: #fff;
    margin: 2px 0 8px;
}

.about-points p {
    max-width: 44ch;
    font-size: 15px;
    line-height: 1.55;
    color: #9a9a9a;
}

/* ---- BEBIDAS ---- */
.section-drinks {
    background: #0c0c0c;
    overflow: hidden;
}

.drinks-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.drinks-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drinks-shake {
    position: relative;
    z-index: 2;                       /* shake na frente do selo */
    visibility: hidden;               /* GSAP revela */
    width: clamp(300px, 40vw, 480px);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .55));
    animation: float 3.8s ease-in-out infinite;
}

/* selo "bem gelado", parte coberta pelo shake */
.drinks-stamp {
    position: absolute;
    z-index: 1;                       /* atrás do shake */
    visibility: hidden;               /* GSAP revela */
    top: 6%;
    right: 4%;
    display: grid;
    place-items: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #FFBB00;
    color: #000;
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    line-height: .85;
    text-align: center;
    transform: rotate(-12deg);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .45);
}

.drinks-lead {
    max-width: 44ch;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.55;
    color: #bdbdbd;
}

.drinks-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 36px;
}

.drinks-tags li {
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: .04em;
    color: #fff;
    padding: 5px 18px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.drinks-tags li:hover {
    background: #FFBB00;
    color: #000;
    border-color: #FFBB00;
}

/* ---- CTA / CONTATO (faixa amarela) ---- */
.section-cta {
    background: #FFBB00;
    color: #000;
    overflow: hidden;
}

.cta-inner {
    position: relative;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    font-family: "Teko", sans-serif;
    font-size: clamp(64px, 12vw, 160px);
    line-height: .82;
    color: #000;
}

/* fritas + shake invadem o texto (porte do hambúrguer) */
.cta-imgs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* fritas caem sobre o "E" de "Chega dE" */
.cta-fritas {
    position: absolute;
    visibility: hidden;               /* GSAP revela ao entrar em cena */
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .4));
    width: 580px;
    top: -30px;
    left: 470px;
}

.btn-dark {
    background: #000;
    color: #FFBB00;
}

.btn-dark:hover {
    background: #1a1a1a;
}

.contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 0, 0, .22);
}

.contact span {
    display: block;
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 700;
    color: rgba(0, 0, 0, .55);
    margin-bottom: 10px;
}

.contact p {
    font-family: "Teko", sans-serif;
    font-size: 24px;
    line-height: 1.15;
    color: #000;
}

.site-footer {
    margin-top: 80px;
}

.site-footer .container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid rgba(0, 0, 0, .22);
}

.foot-logo {
    font-family: "Teko", sans-serif;
    font-size: 40px;
    color: #000;
}

.site-footer p {
    font-size: 13px;
    color: rgba(0, 0, 0, .6);
}

/* ==========================================
   SCROLL REVEAL
========================================== */

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

/* stagger */
.menu-row:nth-child(2).reveal { transition-delay: .08s; }
.menu-row:nth-child(3).reveal { transition-delay: .16s; }
.menu-row:nth-child(4).reveal { transition-delay: .24s; }
.about-points li:nth-child(2).reveal { transition-delay: .1s; }
.about-points li:nth-child(3).reveal { transition-delay: .2s; }

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width:1200px) {

    .screen-intro {

        .intro-content {

            h1 {
                font-size: 48px;
            }

        }

    }

    .screen-hero {

        .container {
            flex-direction: column-reverse;
            justify-content: center;
            text-align: center;
            gap: 48px;
        }

        .hero-content {

            h2 {
                font-size: 96px;
                margin-left: 0;
            }

            h3 {
                font-size: 36px;
            }

            p {
                max-width: 100%;
                font-size: 16px;
            }

        }

        .hero-image {
            position: relative;
            max-width: 280px;

            img{
                width: 100%;
            }

        }

    }

    .section {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .drinks-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .drinks-visual {
        order: 1;                 /* shake vai pra baixo do texto */
        width: fit-content;
        margin-inline: auto;
    }

    .drinks-shake {
        width: clamp(230px, 62vw, 340px);
        left: -28px;              /* afasta pra esquerda: destampa o selo */
    }

    .drinks-stamp {
        width: 108px;
        height: 108px;
        font-size: 26px;
    }

    .drinks-lead {
        max-width: 100%;
    }

    /* CTA: fritas ao lado da frase (à direita), seção compacta */
    .cta-imgs {
        position: absolute;
        inset: auto;              /* zera o inset:0 do desktop */
        right: -14px;
        top: 4%;
        margin: 0;
        width: auto;
    }

    .cta-fritas {
        position: static;
        top: auto;
        left: auto;
        width: clamp(210px, 50vw, 300px);
    }

}

@media (max-width: 640px) {

    .nav-inner {
        flex-direction: column;
        gap: 6px;
    }

    .nav-links {
        gap: 18px;
        justify-content: center;
    }

    .menu-row {
        flex-wrap: wrap;
        gap: 6px 16px;
    }

    .menu-num {
        width: auto;
    }

    .menu-price {
        width: 100%;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .site-footer .container {
        flex-direction: column;
        gap: 8px;
    }

    .nav-links a {
        font-size: 19px;
    }

    .contact {
        font-size: 16px;
    }

    /* trava tipografia grande em telas estreitas */
    .screen-hero .hero-content h2 {
        font-size: clamp(58px, 18vw, 96px);
    }

    .cta-inner h2,
    .section-title {
        font-size: clamp(46px, 15vw, 96px);
    }

}