/* =======================================================
   VARIÁVEIS DE MARCA (mesma paleta do cardapio.css)
======================================================= */

:root {
    --blue: #305084;
    --blue-dk: #1e3560;
    --blue-lt: #4a6fa5;
    --gold: #c4922a;
    --cream: #f4f4f2;
    --text: #f4f4f2;
}


/* =======================================================
   RESET BÁSICO
======================================================= */

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--blue-dk);
}


/* =======================================================
   FUNDO DA PÁGINA
   Por padrão usa o degradê azul da marca (igual ao topo do
   cardápio). Quando você tiver a foto pronta, é só trocar o
   `background` do .page-bg por:
       background-image: url('../assets/SUA-FOTO.jpg');
       background-size: cover;
       background-position: center;
   O .page-overlay por cima garante que o texto continue
   legível em qualquer foto.
======================================================= */

.page-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(150deg, var(--blue-dk) 0%, var(--blue) 55%, var(--blue-lt) 100%);
    z-index: -2;
}

.page-bg::before,
.page-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-bg::before {
    width: 480px;
    height: 480px;
    top: -140px;
    left: -120px;
    background: rgba(255, 255, 255, .05);
}

.page-bg::after {
    width: 380px;
    height: 380px;
    bottom: -100px;
    right: -80px;
    background: rgba(196, 146, 42, .1);
}


/* véu escuro por cima do fundo, pra manter o texto legível
   mesmo depois de trocar por uma foto */

.page-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 24, 46, 0.35) 0%, rgba(15, 24, 46, 0.6) 100%);
    z-index: -1;
}


/* =======================================================
   PÁGINA DE MENU (pílulas)
======================================================= */

.menu-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px 32px;
}

.logo-container {
    margin-bottom: 40px;
    text-align: center;
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .15), 0 12px 30px rgba(0, 0, 0, .35);
}


/* lista de botões */

.pill-menu {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pill-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 17px 26px;
    text-decoration: none;
    color: var(--cream);
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .25s ease, transform .2s ease, border-color .25s ease, box-shadow .25s ease;
}

.pill-btn:hover,
.pill-btn:focus-visible {
    background: rgba(196, 146, 42, .22);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.pill-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16.5px;
    letter-spacing: .2px;
}

.pill-footer-tag {
    margin-top: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    color: var(--cream);
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 8px 18px;
    border-radius: 999px;
}


/* =======================================================
   CONTEÚDO (história, avaliações, contato)
======================================================= */

.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.card.section {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    padding: 40px;
    margin: 24px 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.intro-text {
    text-align: center;
    padding: 24px 0 8px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(244, 244, 242, .9);
    max-width: 640px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.card.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--cream);
}

.card.section p {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(244, 244, 242, .9);
    margin-bottom: 12px;
}

.history-intro {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 16px;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 14px 28px;
    background: rgba(0, 0, 0, .25);
    border: 1.5px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: background .25s ease, border-color .25s ease;
}

.btn-google:hover {
    background: rgba(196, 146, 42, .25);
    border-color: var(--gold);
}

.contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info strong {
    display: block;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 2px;
}

.contact-info p {
    margin-bottom: 0;
    color: rgba(244, 244, 242, .9);
}

.contact-phone {
    color: rgba(244, 244, 242, .9);
    text-decoration: none;
    transition: color .2s ease;
}

.contact-phone:hover {
    color: var(--gold);
}


/* =======================================================
   RODAPÉ
======================================================= */

footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px 24px 48px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.footer-social a {
    color: var(--cream);
    opacity: .85;
    transition: opacity .2s ease, color .2s ease;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--gold);
}

footer p {
    font-size: 13px;
    color: rgba(244, 244, 242, .7);
}


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

@media (max-width: 480px) {
    .pill-btn {
        padding: 15px 20px;
    }
    .pill-label {
        font-size: 15px;
    }
    .logo {
        width: 84px;
        height: 84px;
    }
    .card.section {
        padding: 28px 24px;
    }
}