/* Paleta de Cores Oficial - Sítio Gaya */
:root {
    --creme: #F8F6EF;
    --verde-escuro: #1E392E;
    --laranja: #DF9E52;
    --verde-claro: #486952;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--creme); color: var(--verde-escuro); line-height: 1.6; 
/* Truque mágico para o rodapé ficar no fundo: */
    display: flex; 
    flex-direction: column; 
    min-height: 100vh;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(30, 57, 46, 0.6), rgba(30, 57, 46, 0.6)), url('/gaya.jpg') center/cover;
    color: var(--creme);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px; /* Compensa o menu fixo */
    border-bottom: 5px solid var(--laranja);
}
.hero h1 { font-size: 3.5rem; margin-bottom: 15px; letter-spacing: 2px; z-index: 2; position: relative; color: white; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; z-index: 2; position: relative; color: white; }
.btn-hero { background-color: var(--laranja); color: white; padding: 15px 35px; text-decoration: none; border-radius: 5px; font-size: 1.1rem; font-weight: bold; transition: 0.3s; z-index: 2; position: relative; }
.btn-hero:hover { background-color: #c78b45; }

/* Seções */
section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; text-align: center; }
section h2 { color: var(--verde-escuro); font-size: 2.5rem; margin-bottom: 20px; }
p.subtitle { color: var(--verde-claro); font-size: 1.1rem; margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Grid e Cards */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: left; transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card img { width: 100%; height: 220px; object-fit: cover; border-bottom: 1px solid #eee; }
.card-content { padding: 25px; }
.card h3 { color: var(--verde-escuro); margin-bottom: 10px; font-size: 1.3rem; }
.card p { color: #666; font-size: 0.95rem; margin-bottom: 8px; }
.card ul { list-style: none; margin-top: 10px; }
.card ul li { font-size: 0.9rem; color: #555; padding-left: 20px; position: relative; margin-bottom: 5px; }
.card ul li::before { content: "•"; color: var(--laranja); font-weight: bold; position: absolute; left: 0; }

/* Responsividade Básica */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    section h2 { font-size: 2rem; }
}