/* --- Variáveis --- */
:root {
    --primary-blue: #002F5D;
    --accent-teal: #009CA6;
    --accent-green-leaf: #548C2F; /* Verde estilo "Folha" da imagem original */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F9FBF2; /* Um fundo levemente bege/creme como na imagem */
    --bg-white: #FFFFFF;
    --whatsapp-green: #25D366;
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-bottom: 80px;
}

.container { width: 90%; max-width: 1000px; margin: 0 auto; }

/* --- Cabeçalho --- */
.main-header {
    background-color: var(--bg-white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.header-logo { max-width: 500px; height: auto; }

/* --- Títulos e Botões --- */
.page-header { text-align: center; margin: 2rem 0; }
.page-title { color: var(--primary-blue); font-size: 2.2rem; margin-bottom: 0.5rem; }
.subtitle { color: var(--text-light); }

.menu-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.switch-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.switch-btn.active, .switch-btn:hover {
    background-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 47, 93, 0.3);
}

/* --- Cartões de Dia --- */
.lunch-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.lunch-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column; /* Mobile first */
    gap: 1.5rem;
    border-left: 6px solid transparent;
    transition: transform 0.3s;
}

@media (min-width: 768px) {
    .lunch-card {
        flex-direction: row;
        align-items: center;
    }
}

/* Destaque para o dia atual */
.lunch-card.today {
    border-left-color: var(--accent-teal);
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 156, 166, 0.2);
    transform: scale(1.02);
}

.day-badge {
    background-color: var(--accent-green-leaf);
    color: white;
    width: 100%;
    min-width: 120px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(84, 140, 47, 0.3);
}

@media (min-width: 768px) {
    .day-badge { width: 150px; height: 100px; border-radius: 50%; /* Bolinha no desktop */ }
}

.meal-details { flex-grow: 1; }

.meal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.meal-item i {
    color: var(--accent-teal);
    margin-right: 10px;
    margin-top: 4px;
    width: 20px;
}

.label { font-weight: 700; color: var(--primary-blue); margin-right: 5px; }

/* --- WhatsApp --- */
.whatsapp-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: #FFF;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.3s;
    z-index: 100;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.footer-note { text-align: center; color: #999; margin-top: 2rem; }