:root {
    --azul-goiabeiras: #00AEEF;/* Extraído da logo [cite: 2] */
    --amarelo-goiabeiras: #FFF200;/* Extraído da logo [cite: 2] */
    --branco-puro: whitesmoke;
    --texto-escuro: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Arial, sans-serif; }

body { 
    background-color: var(--branco-puro); 
    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: 260px; 
    margin-bottom: 30px;
}

h1 { 
    color: var(--azul-goiabeiras); 
    font-size: 2.2rem; 
    margin-bottom: 10px; 
}

p { 
    font-size: 1.1rem; 
    color: #777; 
    margin-bottom: 40px; 
}

.action-buttons { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

/* Botão Catálogo - Azul com borda Amarela */
.btn-catalog {
    background-color: var(--azul-goiabeiras);
    color: white;
    padding: 20px;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 4px solid var(--amarelo-goiabeiras);
    transition: 0.3s;
}

/* Botão WhatsApp - Verde Padrão */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 20px;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-catalog:hover, .btn-whatsapp:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.contact-info {
    margin-top: 30px;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.contact-info p {
    margin-bottom: 5px;
}