/* Variáveis CSS */
:root {
    --primary-color: #003366; /* Azul escuro para seriedade e educação */
    --secondary-color: #f4f4f4;
    --text-color: #333;
    --light-text-color: #fff;
    --accent-color: #FFD700; /* Dourado para destaque */
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--secondary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--primary-color);
    color: var(--light-text-color);
    padding: 1rem 0;
    border-bottom: 3px solid var(--accent-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px; /* Ajuste conforme necessário */
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: var(--light-text-color);
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Botões CTA */
.btn-cta {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.btn-cta:hover {
    background: #e6c200;
}

/* Seção Hero */
.hero {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--light-text-color);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7); /* Overlay para legibilidade */
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Seções de Conteúdo Geral */
.content-section {
    padding: 40px 0;
    background: var(--light-text-color);
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.content-section h1,
.content-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.content-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.content-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section ul li {
    margin-bottom: 5px;
}

/* Seção Benefícios */
.beneficios {
    padding: 40px 0;
    background: var(--light-text-color);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.beneficios h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.beneficio-item {
    background: var(--secondary-color);
    padding: 20px;
    margin: 0 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: inline-block;
    width: 30%;
    vertical-align: top;
}

.beneficio-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Seção Depoimentos */
.depoimentos {
    background: var(--primary-color);
    color: var(--light-text-color);
    padding: 40px 0;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.depoimentos h2 {
    color: var(--accent-color);
    margin-bottom: 30px;
}

.depoimento-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin: 0 10px 20px;
    border-radius: 8px;
    display: inline-block;
    width: 45%;
    vertical-align: top;
}

.depoimento-item p {
    font-style: italic;
    margin-bottom: 10px;
}

.depoimento-item span {
    font-weight: bold;
}

/* Seção CTA Educativo */
.cta-educativo {
    background: var(--accent-color);
    color: var(--primary-color);
    text-align: center;
    padding: 50px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.cta-educativo h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.cta-educativo p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Formulários de Contato */
.contact-form {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 30px auto;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-cta {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .beneficio-item,
    .depoimento-item {
        width: 90%;
        margin: 0 auto 20px;
        display: block;
    }
}

@media (max-width: 480px) {
    header nav ul li {
        display: block;
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2em;
    }

    .btn-cta {
        width: 90%;
    }
}

