/* ==========================================================================
   1. VARIAVETS (ROOT) & CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
:root {
    --burg: #8f202d;
    --burg2: #7a1a26;
    --burg3: #a8323f;
    --gold: #fad884;
    --gold2: #d9b463;
    --cream: #f6ead0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--burg);
    color: var(--cream);
    font-family: 'Lora', Georgia, serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   2. LAYOUT & ESTRUTURA (WRAPPERS)
   ========================================================================== */
.bgwrap {
    background: 
        radial-gradient(120% 90% at 50% -10%, rgba(168, 50, 63, .55), rgba(0, 0, 0, 0) 60%),
        radial-gradient(100% 80% at 50% 120%, rgba(0, 0, 0, .28), rgba(0, 0, 0, 0) 55%),
        var(--burg);
}

.wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 22px;
}

.frame-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold2), transparent);
    margin: 30px 0 0;
}

/* Typography Headings */
h1, h2, h3 {
    font-family: 'Gloock', serif;
    font-weight: 400;
}

/* ==========================================================================
   3. HEADER & IDENTIDADE
   ========================================================================== */
.logo {
    display: block;
    margin: 0 auto;
    width: min(260px, 62vw);
    height: auto;
}

.tag {
    font-style: italic;
    color: var(--gold);
    text-align: center;
    font-size: clamp(15px, 3.4vw, 19px);
    margin-top: 6px;
}

.badge {
    display: block;
    width: max-content;
    margin: 20px auto 0;
    border: 1px solid var(--gold2);
    border-radius: 4px;
    padding: 9px 20px;
    color: var(--cream);
    font-family: 'Arsenal', sans-serif;
    letter-spacing: .12em;
    font-size: 13px;
}

.badge b {
    color: var(--gold);
}

/* ==========================================================================
   4. NAVEGAÇÃO (STICKY)
   ========================================================================== */
nav {
    position: sticky;
    top: 0;
    z-index: 9;
    background: rgba(122, 26, 38, .95);
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--gold2);
    border-bottom: 1px solid var(--gold2);
    padding: 9px 0;
    margin-top: 26px;
}

.navin {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 18px;
	justify-content: center;
}

.navin a {
    flex: 0 0 auto;
    color: var(--cream);
    text-decoration: none;
    font-family: 'Arsenal', sans-serif;
    font-size: 13px;
    letter-spacing: .04em;
    padding: 6px 13px;
    border: 1px solid transparent;
    border-radius: 20px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .navin {
        justify-content: flex-start;
    }
}

.navin a:hover {
    border-color: var(--gold2);
    color: var(--gold);
}

/* ==========================================================================
   5. SEÇÕES DE PRODUTOS & ITENS
   ========================================================================== */
section {
    padding: 40px 0 4px;
}

.sec-h {
    text-align: center;
    margin-bottom: 4px;
}

.sec-h h2 {
    color: var(--gold);
    font-size: clamp(26px, 6vw, 38px);
    letter-spacing: .01em;
}

.sec-note {
    font-style: italic;
    color: var(--cream);
    opacity: .85;
    font-size: 14px;
    margin-top: 3px;
}

/* Cabeçalho de Preço (Grande / Broto) */
.colhead {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    color: var(--gold);
    font-family: 'Arsenal', sans-serif;
    font-size: 12px;
    letter-spacing: .12em;
    margin: 16px 0 4px;
    border-bottom: 1px solid var(--gold2);
    padding-bottom: 7px;
}

.colhead span {
    width: 66px;
    text-align: right;
}

/* Itens do Menu (Pizzas/Lanches) */
.item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(217, 180, 99, .20);
}

.item-main {
    display: flex;
    align-items: baseline;
}

.item-name {
    font-family: 'Arsenal', sans-serif;
    font-weight: 700;
    color: var(--gold);
    font-size: clamp(15px, 4vw, 18px);
    letter-spacing: .02em;
}

/* Pontilhados do Menu */
.dots {
    flex: 1;
    border-bottom: 1px dotted rgba(217, 180, 99, .4);
    margin: 0 9px;
    transform: translateY(-4px);
}

.prices {
    display: flex;
    gap: 18px;
}

.pr {
    width: 66px;
    text-align: right;
    color: var(--cream);
    font-size: 15px;
    font-variant-numeric: tabular-nums;
}

.item-desc {
    color: var(--cream);
    opacity: .8;
    font-size: 14.5px;
    max-width: 90%;
    margin-top: 3px;
}

/* Grid de Bebidas & Sobremesas */
.drinks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 24px;
    margin-top: 14px;
}

.drink {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dotted rgba(217, 180, 99, .32);
    padding: 7px 0;
    font-size: 15px;
}

.drink b {
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

.foot-note {
    text-align: center;
    font-style: italic;
    color: var(--gold);
    border: 1px solid var(--gold2);
    border-radius: 6px;
    padding: 15px 18px;
    margin: 32px 0 0;
}

/* Responsive Grid Bebidas */
@media(max-width: 560px) {
    .drinks {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   6. FOOTER
   ========================================================================== */
footer {
    text-align: center;
    margin-top: 46px;
    padding: 30px 0 60px;
    border-top: 1px solid var(--gold2);
}

.fwa {
    display: inline-block;
    margin-top: 6px;
    background: var(--gold);
    color: var(--burg2);
    font-family: 'Arsenal', sans-serif;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 30px;
    font-size: 15px;
}

.info {
    color: var(--cream);
    font-size: 15px;
    margin-top: 14px;
    line-height: 1.95;
}

.ig {
    color: var(--gold);
    font-family: 'Arsenal', sans-serif;
    letter-spacing: .05em;
    margin-top: 8px;
    display: inline-block;
    text-decoration: none;
}

.disclaimer {
    opacity: .55;
    font-size: 12px;
    margin-top: 16px;
    font-style: italic;
}

/* ==========================================================================
   7. COMPONENTE WHATSAPP FIXO & ANIMAÇÃO
   ========================================================================== */

.fixed-whatsapp {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transform-style: preserve-3d;
    transition: all .2s;   
	text-decoration: none;
}

.fixed-whatsapp i {
    font-size: 2.8rem;
    color: #fff;
}

.fixed-whatsapp::after {
    content: '';
    position: absolute;
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 50%;
    background-color: #128C7E;
    z-index: -999;
    animation: scaleUpScaleDown 2s ease-in infinite both;
    transform: translateZ(-1px);
    filter: blur(1px);
	text-decoration: none;
}

.fixed-whatsapp:hover {
    transform: scale(1.2);
    text-decoration: none;
}

@keyframes scaleUpScaleDown {
    0% {
        transform: translateZ(-1px) scale(1);
    }
    80% {
        transform: translateZ(-1px) scale(1.4);
        opacity: 0.4;
    }

    100% {
        transform: translateZ(-1px) scale(1.5);
        opacity: 0;
    }
}
