* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADER */
header {
    background-color: #111827;
    color: white;
    padding: 24px 0;
    text-align: center;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 4px;
}

header p {
    color: #d1d5db;
    margin-bottom: 18px;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #f59e0b;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 70px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #f7f7f7;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: #e5e7eb;
}

.hero-imagem img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
}

/* BOTÕES */
.btn {
    display: inline-block;
    background-color: #f59e0b;
    color: #111;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 10px;
    margin-top: 10px;
}

.btn:hover {
    background-color: #d97706;
    color: white;
}

.btn-secundario {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secundario:hover {
    background-color: white;
    color: #111827;
}

/* SEÇÕES GERAIS */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #111827;
}

section p {
    margin-bottom: 14px;
}

/* TOPO DAS PÁGINAS INTERNAS */
.pagina-topo {
    background-color: #e5e7eb;
    text-align: center;
    padding: 50px 0;
}

.pagina-topo p {
    max-width: 700px;
    margin: 0 auto;
    color: #4b5563;
}

/* APRESENTAÇÃO */
.apresentacao,
.metodologia,
.informacoes-adicionais,
.faq,
.cta-contato,
.cta-final {
    background-color: white;
}

/* SOBRE */
.sobre-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.sobre-imagem img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.metodologia-itens,
.lista-diferenciais,
.beneficios-grid,
.faq-itens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.item-metodologia,
.item,
.beneficio,
.faq-item {
    background-color: #f3f4f6;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
}

.item-metodologia h3,
.item h3,
.beneficio h3,
.faq-item h3 {
    margin-bottom: 10px;
    color: #111827;
}

/* CARDS */
.cards,
.cards-valores,
.cards-cursos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card,
.card-valor,
.card-curso {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding-bottom: 20px;
}

.card img,
.card-valor img,
.card-curso img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 18px;
}

.card h3,
.card-valor h3,
.card-curso h3 {
    font-size: 1.3rem;
    margin: 0 20px 12px;
    color: #111827;
}

.card p,
.card-valor p,
.card-curso p {
    margin: 0 20px 14px;
    color: #4b5563;
}

.card .btn,
.card-curso .btn,
.card-valor .btn {
    margin-left: 20px;
}

/* CONTATO */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.info-contato,
.formulario-contato {
    background-color: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.info-contato img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 20px;
}

.contato-itens p {
    margin-bottom: 12px;
}

.contato-itens a {
    color: #d97706;
    font-weight: bold;
}

form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #f59e0b;
}

/* RODAPÉ */
footer {
    background-color: #111827;
    color: white;
    padding: 28px 0;
    text-align: center;
}

.redes {
    margin-top: 12px;
}

.redes a {
    color: #fbbf24;
    margin: 0 10px;
    font-weight: bold;
}

.redes a:hover {
    color: white;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .hero .container,
    .sobre-grid,
    .contato-grid,
    .cards,
    .cards-valores,
    .cards-cursos,
    .metodologia-itens,
    .lista-diferenciais,
    .beneficios-grid,
    .faq-itens {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
    }

    .hero-imagem img,
    .sobre-imagem img {
        height: auto;
    }

    .btn {
        margin-right: 0;
    }
}

@media (max-width: 600px) {
    header h1 {
        font-size: 1.7rem;
    }

    .hero h2 {
        font-size: 1.9rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    nav ul {
        gap: 14px;
    }

    .container {
        width: 92%;
    }
}