/* ==========================================================================
   PADARIA DALRI - ESTILO RÚSTICO ARTESANAL
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Paleta de Cores (Trigo & Artesanal) */
    --bg-cream: #F9F7F2;        /* Fundo Off-white Abegezado */
    --bg-white: #FFFFFF;

    --text-black: #1A1A1A;      /* Preto suave para leitura */
    --text-serif: #2C2C2C;      /* Cor para títulos */

    --accent-gold: #C5A065;     /* Dourado Trigo */
    --accent-dark: #8B6B43;     /* Marrom Café */

    --shadow-soft: 0 10px 30px rgba(139, 107, 67, 0.08);
}

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

body {
    background-color: var(--bg-cream);
    color: var(--text-black);
    font-family: 'Lato', sans-serif; /* Fonte limpa para textos */
    line-height: 1.6;
}

/* --- TIPOGRAFIA --- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif; /* Fonte especial desenhada */
    color: var(--text-serif);
    font-weight: 700;
}

.text-gold { color: var(--accent-gold); }

/* --- HEADER --- */
header {
    background-color: var(--bg-cream);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-black);
    text-decoration: none;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* Escurece a foto para ler o texto */
}

.hero-card {
    background: rgba(249, 247, 242, 0.95); /* Card Creme quase sólido */
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 101, 0.3); /* Borda dourada sutil */
    max-width: 500px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

/* --- ELEMENTOS DE TRIGO (DECORAÇÃO) --- */
.wheat-decor::after {
    content: "🌾";
    display: block;
    font-size: 2rem;
    margin-top: 10px;
    color: var(--accent-gold);
}

/* --- ALMOÇO DO DIA (CONTAINER ESPECIAL) --- */
.lunch-section {
    padding: 80px 0;
    position: relative;
}

/* Fundo com textura sutil de papel ou parede antiga */
.lunch-card-wrapper {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-wrap: wrap;
}

.lunch-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.lunch-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lunch-badge {
    background-color: var(--accent-dark);
    color: white;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 5px 15px;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: 20px;
}

.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin: 20px 0;
}

/* --- BOTÕES --- */
.btn-dalri {
    background-color: var(--text-black);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
    border: 1px solid var(--text-black);
}

.btn-dalri:hover {
    background-color: transparent;
    color: var(--text-black);
}

.btn-ifood {
    background-color: #EA1D2C; /* Cor iFood */
    color: white;
    border: none;
}
.btn-ifood:hover { background-color: #c9111f; color: white; }

/* --- INFO SECTION --- */
.info-box {
    text-align: center;
    padding: 30px;
    border: 1px dashed var(--accent-gold);
    margin-bottom: 20px;
    height: 100%;
}

/* Responsivo */
@media (min-width: 992px) {
    .lunch-img { height: 100%; }
}

/* ==========================================================================
   CORREÇÕES E WHATSAPP FLUTUANTE
   ========================================================================== */

/* --- 1. MENU MOBILE (HAMBURGUER) --- */
.mobile-menu-container {
    display: none; /* Escondido por padrão */
    background-color: var(--bg-cream);
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
    text-align: center;
}

.mobile-menu-container.show {
    display: block; /* Aparece quando tem a classe show */
    animation: fadeInDown 0.3s ease;
}

.mobile-menu-link {
    display: block;
    padding: 15px 0;
    color: var(--text-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.mobile-menu-link:last-child { border-bottom: none; }

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 2. WHATSAPP FLUTUANTE (RADAR) --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

/* Animação de Radar (Pulsar Claro) */
.whatsapp-pulse::before,
.whatsapp-pulse::after {
    content: '';
    position: absolute;
    border: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.6); /* Verde claro */
    opacity: 0;
    z-index: -1;
    top: 0;
    left: 0;
}

.whatsapp-pulse::before {
    animation: pulse-radar 2s infinite ease-out;
}

.whatsapp-pulse::after {
    animation: pulse-radar 2s infinite ease-out 0.6s; /* Delay para efeito duplo */
}

@keyframes pulse-radar {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5); /* Expande bastante */
        opacity: 0;
    }
}