:root {
    --verde-escuro: #1a5f3f;
    --verde-claro: #2ecc71;
    --verde-sessao: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Sessões alternadas */
.sessao-preta {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
}

.sessao-branca {
    background-color: #fff;
    color: #000;
    padding: 80px 0;
}

.sessao-verde {
    background-color: var(--verde-sessao);
    color: #fff;
    padding: 80px 0;
}

/* Títulos grandes e centralizados */
h1, h2, h3 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.3;
}

h3 {
    font-size: 2.2rem;
    line-height: 1.4;
}

/* Textos normais */
p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-justify {
    text-align: justify;
}

/* Classe para texto verde escuro */
.text-secondary-custom {
    color: var(--verde-escuro) !important;
}

/* Botão grande com degradê */
.btn-gradient-green {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-claro) 100%);
    border: none;
    color: white;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-gradient-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
    color: white;
}

/* Centralização de botões */
.btn-container {
    text-align: center;
    margin-top: 40px;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.7rem; }
    .sessao-preta, .sessao-branca, .sessao-verde {
        padding: 50px 0;
    }
}