:root {
    --vermelho-sabor: #E30613; /* Cor principal da logo Sabor Goiano */
    --amarelo-sabor: #FFD400;   /* Fundo da logo */
    --branco-puro: #ffffff;
    --texto-escuro: #333333;
    --cinza-fundo: #f4f4f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Arial, sans-serif; }

body { 
    background-color: var(--cinza-fundo); 
    color: var(--texto-escuro); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh;
}

.container { 
    text-align: center; 
    max-width: 450px; 
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.main-logo { 
    width: 100%; 
    max-width: 280px; 
    margin-bottom: 20px;
}

h1 { 
    color: var(--vermelho-sabor); 
    font-size: 1.8rem; 
    margin-bottom: 10px; 
}

p { 
    font-size: 1rem; 
    color: #666; 
    margin-bottom: 30px; 
}

.action-buttons { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

/* Botão Catálogo - Vermelho com detalhe Amarelo */
.btn-catalog {
    background-color: var(--vermelho-sabor);
    color: white;
    padding: 18px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 4px solid #b3050f;
    transition: 0.3s;
}

/* Botão WhatsApp */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 18px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 4px solid #128C7E;
    transition: 0.3s;
}

.btn-catalog:hover, .btn-whatsapp:hover { 
    transform: scale(1.02);
}

.contact-info {
    margin-top: 30px;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.contact-info p {
    margin-bottom: 5px;
}