:root {
    --bg-verde: #AFBD77;
    --texto-escuro: #201E1E;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--texto-escuro);
    background-color: #F4F4F4;
    /* Cinza claro da base da imagem */
}

/* Tipografia e Cores Base */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--texto-escuro);
}

.text-escuro {
    color: var(--texto-escuro) !important;
}

.bg-verde {
    background-color: var(--bg-verde) !important;
}

/* Botões */
.btn-outline-escuro {
    color: var(--texto-escuro);
    border: 1px solid var(--texto-escuro);
    background-color: transparent;
    padding: 12px 32px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-escuro:hover {
    background-color: var(--texto-escuro);
    color: var(--bg-verde);
}

/* Hero Section (Avaliando o mockup) */
.hero-section {
    background-color: var(--bg-verde);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px 0;
}

/* Círculos decorativos baseados na imagem */
.circle-decorator {
    position: absolute;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    opacity: 0.8;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -100px;
}

.circle-2 {
    width: 600px;
    height: 600px;
    bottom: -300px;
    left: -200px;
}

/* Seções Padrão */
.section-padding {
    padding: 80px 0;
}

/* Footer */
footer {
    background-color: var(--texto-escuro);
    color: #FFF;
    padding: 40px 0 20px 0;
}