    /*
    Theme Name: FIEL Coffee & Brunch
    Theme URI: https://brunchatfiel.com/
    Author: Mariana Loureiro

    */
:root {
    /* --- CORES PRINCIPAIS FIEL AJUSTADAS (DELICADAS) --- */

    /* PRIMARY: Castanho suave, menos intenso */
    --primary: #6E4F43;           /* Castanho médio suave */
    --primary-rgb: 110, 79, 67;

    /* SECONDARY: fundos de secção - branco suave / champanhe */
    --secondary: #FFFBF6;         /* Mantido branco suave / luxuoso */

    /* ACENTO: castanho claro / detalhes - para botões e destaques */
    --accent: #A17C6B;            

    /* FUNDO GERAL */
    --background: #FFFAF5;        /* Mantido branco suave */

    /* TEXTO PRINCIPAL - Verde Musgo Claro (mais suave) */
    --text: #4A5A38;              

    /* TEXTO SECUNDÁRIO - Verde Seco Muito Claro */
    --secondary-text: #7A8B66;    

    /* SOMBRAS E DETALHES (mais suaves) */
    --radius: 14px;
    --shadow-sm: 0 4px 12px rgba(110, 79, 67, 0.05);
    --shadow-md: 0 12px 30px rgba(110, 79, 67, 0.12);

    /* GLOW OU DETALHES DOURADOS (mais delicado) */
    --glow: 0 0 25px rgba(212, 175, 55, 0.35);
}


    /* ====================== Top Bar (Avisos/Links Secundários) FIX ====================== */
    
    .top-bar {
        background-color: var(--accent);
        color: var(--background);
        padding: 8px 0;
        font-size: 0.9em;
        width: 100%;
    }
    
    .top-bar .container {
        /* O container já tem a largura máxima definida, só precisamos de alinhar o conteúdo */
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        /* Novo: Usa Flexbox para centrar o conteúdo (o parágrafo <p>) */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .top-bar p {
        margin: 0;
        font-weight: 500;
    }
    
    .top-bar-link {
        color: var(--background);
        text-decoration: underline;
        transition: color 0.2s;
        margin-left: 5px;
    }
    
    .top-bar-link:hover {
        color: var(--primary);
    }
    /* Modo Escuro */
    
     :root[data-theme="dark"] .top-bar {
        background-color: var(--accent);
        color: var(--secondary-text);
    }
    
     :root[data-theme="dark"] .top-bar-link {
        color: var(--secondary-text);
    }
    
     :root[data-theme="dark"] .top-bar-link:hover {
        color: var(--text);
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html,
    body {
        height: 100%;
    }
    
    body {
        font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
        background: var(--background);
        color: var(--text);
        line-height: 1.6;
        font-size: 20px;
        transition: background .4s ease, color .4s ease;
        scroll-behavior: smooth;
    }
    
    a {
        color: var(--accent);
        text-decoration: none;
        transition: .3s;
    }
    
    a:hover {
        color: var(--primary);
        text-shadow: var(--glow);
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section {
        padding: 50px 0;
        background: var(--secondary);
        /* <-- Adiciona o fundo bege a TODAS as secções */
    }
    
    .section-title {
        font-size: 40px;
        text-align: center;
        margin-bottom: 38px;
        color: var(--primary);
    }
    /* LOADER */
    
    #loader {
        position: fixed;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        background: linear-gradient(-45deg, var(--background), #F1ECE3, #FFF8F0);
        background-size: 400% 400%;
        animation: gradientBG 8s ease infinite;
    }
    
    .loader-logo {
        width: 200px;
        height: auto;
        animation: pulse 1.2s ease-in-out infinite;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .3));
    }
    
    @keyframes pulse {
        0%,
        100% {
            opacity: .4;
            transform: scale(.95);
        }
        50% {
            opacity: 1;
            transform: scale(1.08);
        }
    }
    
    @keyframes gradientBG {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    /* HEADER */
    
    .header {
        background: var(--primary);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
        transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
    }
    
    .header.hidden {
        transform: translateY(-100%);
        box-shadow: none;
    }
    
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0;
    }
    
    .logo-text {
        font-family: "Gill Sans MT Condensed", "Gill Sans", sans-serif;
        font-size: 38px;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
        text-decoration: none;
        transition: .3s;
    }
    
    .logo-text:hover {
        color: var(--accent);
        text-shadow: var(--glow);
    }
    
    .logo-img {
        display: none;
    }
    
    .nav {
        display: block;
    }
    
    .nav-links {
        display: flex;
        gap: 28px;
        list-style: none;
    }
    
    .nav-link {
        color: #f7f3ef;
        font-weight: 600;
        padding: 8px 16px;
        /* Adiciona espaçamento interno para criar o fundo */
        border-radius: 999px;
        /* Cria as bordas completamente arredondadas */
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: var(--accent);
        /* A cor de fundo verde musgo ao passar o rato */
        color: #fff;
        /* A cor do texto muda para branco para melhor contraste */
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .theme-toggle,
    .nav-toggle {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 26px;
        cursor: pointer;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        transition: .2s;
    }
    
    .theme-toggle:hover,
    .nav-toggle:hover {
        background: rgba(255, 255, 255, .12);
    }
    /* Drawer mobile */
    
    .nav-toggle {
        display: none;
    }
    
    .nav-drawer {
        position: fixed;
        top: 0;
        right: -320px;
        height: 100dvh;
        width: 300px;
        background: var(--secondary);
        z-index: 1200;
        box-shadow: var(--shadow-md);
        padding: 18px;
        transition: right .3s ease;
    }
    
    .nav-drawer.open {
        right: 0;
    }
    
    .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .drawer-logo {
        font-weight: 800;
        color: var(--primary);
    }
    
    .nav-drawer ul {
        list-style: none;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    
    .drawer-link {
        color: var(--text);
        font-size: 20px;
        font-weight: 600;
    }
    
    .drawer-close {
        background: transparent;
        border: none;
        font-size: 30px;
        color: var(--text);
        cursor: pointer;
    }
    
    .drawer-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .35);
        backdrop-filter: blur(2px);
        opacity: 0;
        pointer-events: none;
        transition: .3s;
        z-index: 1100;
    }
    
    .drawer-backdrop.show {
        opacity: 1;
        pointer-events: auto;
    }
    /* HERO */
    
    .hero {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        overflow: hidden;
        height: 100vh;
        /* garante altura total da tela */
        max-height: -webkit-fill-available;
        /* iOS Safari */
    }
    
    .hero-bg {
        position: absolute;
        inset: 0;
        /* Renomeie sua imagem para minúsculo .jpg ou .jpeg e ajuste o caminho */
        background: #000 url("FIEL.JPEG") center/cover no-repeat;
        filter: brightness(0.82);
        /* opcional, pode remover se houver problema */
        transition: opacity 0.8s ease;
        z-index: 0;
    }
    
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
        z-index: 0;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
        padding: 0 20px;
        /* garante espaçamento em telas pequenas */
    }
    
    .site-title {
        font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
        letter-spacing: 1px;
        text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    }
    
    .site-tagline {
        margin: 14px 0 22px;
        font-size: 22px;
        color: #f7f3ef;
    }
    
    .cta-row {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        /* garante que os botões não quebrem em telas pequenas */
    }
    
    .cta-row .btn {
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
    }
    /* Fallback para Safari antigo */
    
    @supports (-webkit-touch-callout: none) {
        .hero {
            min-height: 100vh;
        }
    }
    /* Steam (vapor do café) */
    
    .steam {
        position: absolute;
        bottom: 18vh;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 14px;
        z-index: 0;
        pointer-events: none;
    }
    
    .steam span {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, .6);
        border-radius: 50%;
        filter: blur(3px);
        animation: steam 4s ease-in-out infinite;
    }
    
    .steam span:nth-child(2) {
        animation-delay: .7s;
    }
    
    .steam span:nth-child(3) {
        animation-delay: 1.4s;
    }
    
    @keyframes steam {
        0% {
            transform: translateY(0) scale(.8);
            opacity: .0;
        }
        20% {
            opacity: .7;
        }
        100% {
            transform: translateY(-140px) scale(1.5);
            opacity: 0;
        }
    }
    /* Botões + ripple + glow */
    
    .btn {
        display: inline-block;
        padding: 14px 32px;
        border-radius: 12px;
        background: var(--accent);
        color: #fff;
        font-weight: 700;
        font-size: 18px;
        box-shadow: var(--shadow-sm);
        transition: transform .2s, box-shadow .2s, background .2s;
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        background: var(--secondary);
        text-shadow: var(--glow);
    }
    
    .btn.outline {
        background: transparent;
        border: 2px solid #ffffffaa;
    }
    
    .btn.outline:hover {
        background: #ffffff1a;
    }
    /* Ripple effect */
    
    .ripple {
        position: relative;
        overflow: hidden;
    }
    
    .ripple span.ripple-anim {
        position: absolute;
        border-radius: 50%;
        transform: scale(0);
        animation: ripple-anim 0.6s linear;
        background-color: rgba(255, 255, 255, 0.7);
    }
    
    @keyframes ripple-anim {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }
    /* ABOUT */
    
    .about-us {
        padding: 80px 0;
        background: var(--secondary);
        transition: background .4s ease;
    }
    
    .about-us .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    /* Layout Grid para a primeira secção 'About' */
    
    .about-grid-layout {
        display: grid;
        grid-template-columns: 1fr 0.8fr;
        align-items: start;
        gap: 60px;
    }
    
    .about-column-text .section-title {
        font-size: 2.8rem;
        color: var(--primary);
        margin-bottom: 20px;
        text-align: left;
    }
    
    .about-column-text h3 {
        font-size: 1.6rem;
        color: var(--accent);
        margin-top: 30px;
        margin-bottom: 10px;
    }
    
    .about-column-text p {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--secondary-text);
        max-width: 50ch;
    }
    
    .image-card {
        background-color: var(--secondary);
        border-radius: var(--radius);
        padding: 16px;
        box-shadow: var(--shadow-md);
        max-width: 350px;
        margin: 0 auto;
    }
    
    .image-card img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: calc(var(--radius) / 2);
    }
    /* Layout Grid para a segunda secção 'About' */
    
    .about-container {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
        align-items: center;
    }
    
    .about-text h2.section-title {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    
    .about-text p {
        text-align: left;
    }
    /* MENU */
    
    .tabs {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-bottom: 18px;
        flex-wrap: wrap;
        padding: 0 10px;
    }
    
    .tab-btn {
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid #0000001a;
        background: var(--secondary);
        color: var(--text);
        cursor: pointer;
        font-weight: 700;
        transition: .2s;
    }
    
    .tab-btn i {
        font-size: 1.2rem;
        margin-right: 5px;
        vertical-align: middle;
    }
    
    .tab-btn.active {
        background: var(--accent);
        color: #fff;
        box-shadow: var(--glow);
    }
    
    .tab-panels {
        position: relative;
    }
    
    .tab-panel {
        display: none;
        animation: fadeIn .35s ease;
    }
    
    .tab-panel.show {
        display: block;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(6px);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    
    .menu-cards {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .menu-card {
        background: var(--background);
        border-radius: var(--radius);
        overflow: hidden;
        text-align: center;
        box-shadow: var(--shadow-sm);
        transition: transform .25s ease, box-shadow .25s ease;
        display: flex;
        flex-direction: column;
        padding: 20px;
        min-height: 180px;
        justify-content: space-between;
    }
    
    .menu-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }
    
    .menu-card h4 {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 10px 0;
        color: var(--primary);
    }
    
    .menu-card p {
        font-size: 0.95rem;
        color: var(--secondary-text);
        margin: 0 0 10px;
        flex-grow: 1;
    }
    
    .price {
        display: block;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--accent);
        padding-top: 10px;
    }
    /* LIGHTBOX */
    
    .lightbox-modal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .8);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1400;
        animation: fadeIn .3s ease;
    }
    
    .lightbox-modal.show {
        display: flex;
    }
    
    .lightbox-modal img {
        max-width: 90vw;
        max-height: 82vh;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    }
    
    .lightbox-close {
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 32px;
        background: transparent;
        border: none;
        color: #fff;
        cursor: pointer;
    }
    /* =========================
    Contact Section
    ========================= */
    
    .contact-section {
        padding: 60px 20px;
        background-color: #f9f9f9;
    }
    
    .contact-section .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 40px;
    }
    /* Grid de contacto */
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    /* Contact Section igual ao fundo da gallery */
    
    .contact-section {
        padding: 60px 20px;
        background-color: var(--secondary);
        /* mesmo fundo da gallery */
        transition: background .4s ease;
    }
    
    .contact-section .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 20px;
        color: var(--primary);
    }
    
    .contact-section .section-subtitle {
        text-align: center;
        font-size: 1rem;
        color: var(--secondary-text);
        max-width: 600px;
        margin: 0 auto 40px;
    }
    /* Blocos de contacto e mapa com efeito de card igual à gallery */
    
    .contact-details .info-block,
    .map-container {
        background-color: var(--background);
        padding: 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-sm);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .contact-details .info-block:hover,
    .map-container:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }
    /* Blocos de contacto */
    
    .contact-details {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .info-block {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        font-size: 16px;
    }
    
    .info-block i {
        font-size: 18px;
        margin-right: 15px;
        color: #888;
        width: 25px;
        text-align: center;
    }
    
    .info-block strong {
        font-weight: 600;
        width: 90px;
        flex-shrink: 0;
    }
    
    .info-block p,
    .info-block a {
        margin: 0;
        line-height: 1.6;
    }
    
    .info-block a {
        color: var(--text);
        text-decoration: none;
        transition: color 0.2s ease-in-out;
    }
    
    .info-block a:hover {
        color: var(--accent);
        text-decoration: underline;
    }
    /* Mapa */
    
    .map-container {
        width: 100%;
        height: 400px;
        /* altura fixa para desktop */
    }
    
    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: var(--radius);
    }
    /* =========================
    Responsividade
    ========================= */
    /* Tablets (iPad) */
    
    @media (max-width: 1024px) {
        .contact-grid {
            gap: 30px;
        }
        .map-container {
            height: 350px;
        }
    }
    /* Smartphones (iPhone) */
    
    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr;
            /* empilha verticalmente */
            gap: 20px;
        }
        .map-container {
            height: 250px;
            /* altura menor para ecrã pequeno */
        }
        .info-block {
            font-size: 15px;
            align-items: flex-start;
        }
        .info-block i {
            font-size: 16px;
            margin-right: 10px;
            width: 20px;
        }
        .info-block strong {
            width: 80px;
        }
        .contact-section .section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }
    }
    /* EVENTS */
    
    .events-section {
        background: var(--secondary);
    }
    
    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .event-card {
        background: var(--background);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }
    
    .event-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
    
    .event-info {
        padding: 20px;
    }
    
    .event-info h4 {
        color: var(--primary);
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .event-info p {
        color: var(--text);
        font-size: 16px;
    }
    /* FOOTER */
    
    .footer {
        background: var(--primary);
        color: #f8f5f2;
        text-align: center;
        padding: 22px 0;
        font-size: 16px;
    }
    /* Back to Top */
    
    #backToTop {
        position: fixed;
        right: 18px;
        bottom: 18px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: none;
        background: var(--accent);
        color: #fff;
        font-size: 24px;
        display: grid;
        place-items: center;
        box-shadow: var(--shadow-sm);
        cursor: pointer;
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
        transition: .25s;
        z-index: 1000;
    }
    
    #backToTop.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    #backToTop:hover {
        background: var(--primary);
        box-shadow: var(--shadow-md);
    }
    /* About Melhorado */
    
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        justify-content: center;
    }
    
    .philosophy-text h3,
    .founders-section h3 {
        color: var(--primary);
        font-size: 28px;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .founders-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
        text-align: center;
    }
    
    .founder-profile img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid var(--secondary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 10px;
        transition: transform .2s ease;
    }
    
    .founder-profile img:hover {
        transform: scale(1.08);
    }
    
    .founder-profile span {
        font-weight: 600;
        color: var(--text);
        font-size: 18px;
    }
    /* Menu Melhorado */
    
    .menu-actions {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .menu-actions .btn i {
        margin-left: 8px;
        vertical-align: middle;
    }
    
    .dietary-icons {
        padding: 5px 0 15px;
        display: flex;
        justify-content: center;
        gap: 15px;
        font-size: 24px;
    }
    
    .dietary-icons span {
        cursor: pointer;
    }
    /* =================================================================== */
    /* ====================   RESPONSIVE STYLES   ==================== */
    /* =================================================================== */
    /* Dispositivos Médios (Tablets, Laptops pequenos) - até 1024px */
    
    @media (max-width: 1024px) {
        .section-title {
            font-size: 36px;
        }
        /* --- Header & Navegação --- */
        .nav {
            display: none;
            /* Esconde a navegação principal */
        }
        .nav-toggle {
            display: grid;
            /* Mostra o botão do menu hamburger */
        }
        /* --- Secção 'About Us' --- */
        .about-grid-layout,
        .about-container {
            grid-template-columns: 1fr;
            /* Coloca as colunas em stack */
            gap: 40px;
        }
        .about-column-text .section-title,
        .about-text h2.section-title {
            text-align: center;
            /* Centraliza o título quando está em stack */
        }
        .about-column-text p {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
        }
        .image-card {
            max-width: 400px;
            /* Limita o tamanho da imagem para não ficar gigante */
            margin: 0 auto;
        }
        /* --- Secção Contacto --- */
        .contact-grid {
            grid-template-columns: 1fr;
            /* Coloca as colunas em stack */
            gap: 30px;
        }
        .contact-details {
            text-align: center;
        }
        .info-block {
            justify-content: center;
            /* Centraliza os blocos de informação */
        }
    }
    /* Dispositivos Pequenos (Telemóveis) - até 767px */
    
    @media (max-width: 767px) {
        body {
            font-size: 18px;
        }
        .container {
            padding: 0 15px;
        }
        .section {
            padding: 40px 0;
        }
        .section-title {
            font-size: 32px;
            margin-bottom: 25px;
        }
        .logo-text {
            font-size: 30px;
            /* Reduz o tamanho do logo */
        }
        /* --- Hero Section --- */
        .hero {
            padding: 0 15px;
        }
        .cta-row {
            flex-direction: column;
            /* Botões ficam um por baixo do outro */
            gap: 15px;
            align-items: center;
        }
        .cta-row .btn {
            width: 100%;
            max-width: 300px;
        }
        .site-title {
            font-size: clamp(2rem, 8vw + 1rem, 3.2rem);
        }
        .site-tagline {
            font-size: 18px;
        }
        /* --- Menu Section --- */
        .tabs {
            gap: 8px;
        }
        .tab-btn {
            font-size: 0.9rem;
            padding: 8px 14px;
        }
        .menu-cards {
            grid-template-columns: 1fr;
            /* Uma coluna para o menu */
            gap: 16px;
        }
        /* --- Imagens 'About Us' --- */
        .image-gallery img {
            height: 150px;
            /* Altura mais adequada para telemóvel */
        }
        /* --- Footer --- */
        .footer {
            font-size: 14px;
        }
        /* CONTACT SECTION – ajustes só para mobile e tablet */
        @media (max-width: 1024px) {
            .contact-grid {
                display: flex;
                flex-direction: column;
                gap: 2rem;
            }
            .contact-details {
                width: 100%;
            }
            .contact-details .info-block {
                display: flex;
                align-items: flex-start;
                gap: 0.8rem;
                margin-bottom: 1.2rem;
            }
            .contact-details .info-block i {
                font-size: 1.4rem;
                color: var(--accent-color);
                margin-top: 2px;
            }
            .contact-details p,
            .contact-details a {
                font-size: 0.95rem;
                line-height: 1.5;
            }
            .map-container {
                width: 100%;
                height: 300px;
                border-radius: var(--radius);
                overflow: hidden;
            }
        }
        /* Ajustes mais finos só para iPhone */
        @media (max-width: 600px) {
            .section-title {
                font-size: 1.6rem;
                text-align: center;
            }
            .contact-grid {
                gap: 1.5rem;
            }
            .contact-details .info-block {
                flex-direction: column;
                align-items: flex-start;
            }
            .contact-details strong {
                font-size: 1rem;
            }
            .map-container {
                height: 250px;
            }
        }
        /* === BUTTONS (OTIMIZADOS PARA TOUCH) === */
        .btn {
            /* Cores Originais */
            background-color: var(--accent);
            color: var(--secondary);
            /* Forma e Espaçamento Aprimorados para Touch */
            border: none;
            border-radius: var(--radius);
            padding: 14px 30px;
            font-size: 1rem;
            text-decoration: none;
            cursor: pointer;
            /* Adicionando a fonte aos botões (será herdada, mas garante) */
            font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
            /* Transições e Sombras */
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: var(--shadow-sm);
            /* Essencial para usabilidade em iOS: remove o realce cinzento */
            -webkit-tap-highlight-color: transparent;
        }
        .btn:hover {
            background-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        .btn.outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: none;
        }
        .btn.outline:hover {
            background-color: var(--primary);
            color: var(--secondary);
            box-shadow: var(--shadow-sm);
            transform: translateY(-1px);
        }
        /* ======================
    CÓDIGO MOVIDO DO HTML (GALERIA E CONTACTO)
    ====================== */
        /* --------------------
    SECÇÃO: GALERIA
    -------------------- */
        .gallery-section {
            padding: 60px 0;
        }
        .gallery-section .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 30px;
            color: inherit;
        }
        /* --- Grelha base --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 18px;
        }
        .gallery-item {
            overflow: hidden;
            border-radius: 12px;
            position: relative;
        }
        .gallery-image {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
            border-radius: 12px;
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-radius 0.4s ease;
        }
        .gallery-image:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
            border-radius: 14px;
        }
        /* --- Media Queries da Galeria --- */
        @media (max-width: 900px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .gallery-image {
                height: 240px;
            }
            .gallery-section .section-title {
                font-size: 1.8rem;
                margin-bottom: 25px;
            }
        }
        @media (max-width: 600px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .gallery-image {
                height: 280px;
                border-radius: 15px;
            }
            .gallery-image:hover {
                transform: scale(1.02);
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            }
            .gallery-section .section-title {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }
        }
        /* --------------------
    SECÇÃO: CONTACTO (Layout da Grelha e Detalhes)
    -------------------- */
        .contact-section .section-title {
            margin-bottom: 10px;
        }
        .section-subtitle {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1rem;
            color: var(--secondary-text);
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: stretch;
            background: var(--background);
            /* Aqui usei o branco-sujo para dar contraste, mas como tudo é bege, pode mudar para var(--secondary) se quiser */
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow-md);
        }
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .info-block {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .info-block i {
            font-size: 24px;
            color: var(--accent);
            margin-bottom: 5px;
        }
        .info-block strong {
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 2px;
        }
        .info-block p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--secondary-text);
        }
        .map-container {
            border-radius: var(--radius);
            overflow: hidden;
            min-height: 350px;
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            display: block;
        }
        /* Responsividade do Contacto */
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 20px;
            }
            .map-container {
                min-height: 250px;
            }
        }
        /* ===== TÍTULOS DAS SEÇÕES ===== */
        .section-title {
            font-size: 2.8rem;
            /* aumenta o tamanho */
            font-weight: 700;
            /* deixa mais grosso */
            text-align: center;
            margin-bottom: 30px;
            letter-spacing: 1px;
            /* espaçamento entre letras */
            color: #333;
            /* mantém cor neutra, pode ajustar */
        }
        /* Ajuste responsivo para tablet */
        @media (max-width: 900px) {
            .section-title {
                font-size: 2.4rem;
            }
        }
        /* Ajuste responsivo para telemóvel */
        @media (max-width: 600px) {
            .section-title {
                font-size: 2rem;
            }
        }
        /* =========================
Notícias (FIEL News) OTIMIZADO
========================= */
        .news {
            /* Herda o background: var(--secondary) de .section */
            padding: 80px 0;
            /* Aumenta um pouco o padding para destaque */
        }
        .news .container {
            max-width: 900px;
            /* Alarga ligeiramente o contentor */
        }
        .news-text {
            /* Adiciona um 'card' visual suave para envolver o texto */
            background: var(--background);
            /* Fundo Branco Quente para contraste */
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: 0 10px 25px rgba(75, 54, 36, 0.1);
            /* Sombra subtil castanha */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0 auto;
            /* Centraliza o bloco */
            max-width: 800px;
            /* Garante que o bloco não é demasiado largo */
            /* Novo Efeito: Brilho subtil ao passar o rato */
            cursor: default;
            /* Opcional: Indica que o bloco não é clicável */
        }
        .news-text:hover {
            transform: translateY(-4px);
            /* Efeito de 'subida' ao passar o rato */
            box-shadow: 0 15px 35px rgba(75, 54, 36, 0.15);
            /* Sombra mais intensa no hover */
        }
        .news-text .section-title {
            /* Título (h2) */
            font-size: 42px;
            margin-bottom: 25px;
            color: var(--primary);
            /* Castanho Café */
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
            /* Sombra muito subtil no texto */
        }
        .news-text p {
            /* Corpo do Texto */
            font-size: 1.25rem;
            /* Aumenta o tamanho para mais impacto */
            line-height: 1.8;
            color: var(--secondary-text);
            /* Cor de texto mais suave para ler melhor */
            margin-bottom: 0;
        }
        .news-text strong {
            color: var(--accent);
            /* Verde Sálvia */
            font-weight: 800;
            /* Mais bold para maior destaque */
            letter-spacing: 0.5px;
            /* Ligeiro espaçamento para 'pop' */
        }
        /* Responsividade */
        @media (max-width: 767px) {
            .news-text {
                padding: 30px 20px;
                /* Reduz o padding interno no mobile */
            }
            .news-text .section-title {
                font-size: 32px;
            }
            .news-text p {
                font-size: 1rem;
                line-height: 1.6;
            }
        }
    }
 /* ============================================== */
/* BARRA MOBILE ULTRA-PREMIUM (9 ITENS)           */
/* ============================================== */

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 15px; /* Flutuante para parecer uma "ilha" premium */
        left: 10px;
        right: 10px;
        height: 68px;
        
        /* Efeito Glassmorphism Realista */
        background: rgba(74, 59, 50, 0.85); 
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        
        /* Borda fina e elegante */
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px; /* Bordas arredondadas modernas */
        
        /* Sombra suave de profundidade */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        
        z-index: 10000;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 0 10px;
        scroll-behavior: smooth;
    }

    /* Esconder scrollbar mantendo funcionalidade */
    .mobile-bottom-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fffaf5;
        text-decoration: none;
        flex: 0 0 22%; /* Largura ideal para mostrar o próximo item parcialmente */
        min-width: 75px;
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    /* Feedback tátil visual */
    .nav-item:active {
        transform: scale(0.9);
    }

    .nav-item i {
        font-size: 22px;
        margin-bottom: 5px;
        color: rgba(249, 248, 246, 0.6);
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .nav-item span {
        font-size: 8px;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1.2px; /* Espaçamento premium */
        color: rgba(249, 248, 246, 0.5);
        white-space: nowrap;
    }

    /* Estado Ativo / Foco */
    .nav-item:focus i, 
    .nav-item:hover i {
        color: #D4AF37; /* Dourado suave para luxo */
        transform: translateY(-2px);
    }

    .nav-item:focus span,
    .nav-item:hover span {
        color: #fffaf5;
        opacity: 1;
    }

    /* Indicador ativo (pontinho em baixo) */
    .nav-item:focus::after {
        content: '';
        position: absolute;
        bottom: 8px;
        width: 4px;
        height: 4px;
        background: #D4AF37;
        border-radius: 50%;
    }

    /* Ajuste do corpo para não cortar o conteúdo */
    body {
        padding-bottom: 100px !important;
    }

    .header .nav {
        display: none;
    }
}

/* --- Seção Geral --- */
.about-simple-premium {
    padding: 100px 0;
    background-color: #fffaf5; /* Um off-white muito leve */
    font-family: 'Montserrat', sans-serif;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px; /* Espaço generoso entre foto e texto */
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Foto Básica mas Premium --- */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px; /* Arredondado suave, moderno */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06); /* Sombra quase invisível, mas que dá profundidade */
}

/* --- Texto --- */
.about-text {
    flex: 1;
}

.section-heading {
    font-family: 'Playfair Display', serif; /* Fonte clássica para títulos */
    font-size: 42px;
    color: #333;
    margin-bottom: 30px;
}

.description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.main-p {
    font-size: 1.25rem !important;
    color: #222 !important;
}

.meaning {
    border-left: 2px solid #D4AF37; /* Apenas um detalhe fino em dourado */
    padding-left: 20px;
    font-style: italic;
}

.signature {
    margin-top: 40px;
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    color: #4A3B32;
}

/* --- Ajuste Mobile --- */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column; /* Foto em cima, texto em baixo */
        text-align: center;
        padding: 0 20px;
    }
    
    .meaning {
        border-left: none;
        border-top: 1px solid#fffaf5;
        padding-top: 20px;
    }
}


.footer {
    background-color: var(--secondary); /* Fundo champanhe luxuoso */
    padding: 80px 0 40px;
    border-top: 1px solid rgba(110, 79, 67, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    text-align: left; /* Alinhamento à esquerda é mais editorial/premium */
}

/* Títulos das Colunas */
.footer-title {
    color: var(--primary); /* Castanho Médio */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px; /* Espaçamento largo = Luxo */
    margin-bottom: 30px;
    font-weight: 700;
}

/* Informações de Texto */
.footer-section p {
    color: var(--text); /* Verde Musgo para leitura clara */
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Ícones */
.footer-section i {
    color: var(--accent); /* Castanho claro para detalhe */
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Links */
.footer-section a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
    border-bottom: 1px solid var(--accent);
}

/* Grid de Horários */
.hours-grid p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px thin rgba(110, 79, 67, 0.05);
    padding-bottom: 8px;
}

.hours-grid strong {
    color: var(--primary);
    font-weight: 600;
}

.kitchen-highlight {
    margin-top: 15px;
    padding: 10px 0;
    color: var(--primary) !important;
}

/* Nota de Reservas */
.walk-in-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background-color: rgba(161, 124, 107, 0.1); /* Fundo sutil do accent */
    color: var(--primary) !important;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem !important;
}

/* Créditos Finais */
.footer-bottom {
    border-top: 1px solid rgba(110, 79, 67, 0.08);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--secondary-text);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        text-align: center;
        gap: 40px;
    }
    .hours-grid p {
        justify-content: center;
        gap: 20px;
    }
    .walk-in-tag {
        margin: 10px auto;
    }
}