/* RESET E CONFIGURAÇÕES GLOBAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #2c2c2c;
    color: #f4f4f4;
    line-height: 1.6;
    padding-top: 80px;
}

/* CABEÇALHO E NAVEGAÇÃO (igual em todas as páginas) */
header {
    background-color: #1e1e1e;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #f4f4f4;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00aaff;
}

/* ESTILO DA PÁGINA INICIAL (HERO) */
.hero {
    height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #333;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}
.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #f4f4f4;
    border-radius: 5px;
    color: #f4f4f4;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #f4f4f4;
    color: #333;
}

/* ESTILO DAS PÁGINAS DE CONTEÚDO */
.content-section {
    padding: 40px 10%;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #00aaff;
}

.content-section p {
    font-size: 1.1rem;
    max-width: 1100px; /* ALTERADO de 800px para 1100px */
    margin: 0 auto 1rem auto;
    text-align: justify;
}

/* Estilo para Subtítulos dentro do conteúdo */
.content-section h3, .content-section h4 {
    font-size: 1.5rem;
    color: #e0e0e0;
    max-width: 1100px; /* ALTERADO de 800px para 1100px */
    margin: 2rem auto 1rem auto;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #555;
}

.content-section h4 {
    font-size: 1.2rem;
    border: none;
    margin-top: 1.5rem;
}

/* Estilo CORRIGIDO para listas (ordenadas e não ordenadas) */
.content-section ul, .content-section ol {
    max-width: 1100px; /* ALTERADO de 800px para 1100px */
    margin: 0 auto 1rem auto;
    padding-left: 40px;
}

.content-section li {
    margin-bottom: 0.75rem;
    text-align: justify;
}

/* ESTILO PARA LAYOUT DE TEXTO AO LADO DE IMAGEM */
.text-image-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px; /* ALTERADO de 800px para 1100px */
    margin: 2rem auto;
}

.text-block {
    flex: 1.5; /* ALTERADO de 2 para 1.5 (dá mais espaço para a imagem) */
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .text-image-container {
        flex-direction: column;
    }
}

/* ESTILOS PARA A SEÇÃO DE QUESTÕES (FAQ) */
.faq-question {
    background-color: #3a3a3a;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #444;
}

.faq-question:hover, .faq-question.active {
    background-color: #444;
}

.faq-question::before {
    content: '+';
    font-size: 1.2rem;
    color: #00aaff;
    font-weight: 600;
    float: left;
    margin-right: 15px;
}

.faq-question.active::before {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #2c2c2c;
}

.faq-answer p {
    padding: 20px;
    border-bottom: 1px solid #444;
}

/* --- MODIFICADOR PARA ALTERNAR A POSIÇÃO DA IMAGEM --- */

.text-image-container.image-left {
    flex-direction: row-reverse; /* Inverte a ordem (imagem vem primeiro) */
}

/* Garante que em telas pequenas a inversão seja desfeita e tudo fique em coluna */
@media (max-width: 768px) {
    .text-image-container.image-left {
        flex-direction: column;
    }
}
/* --- ESTILO PARA IMAGEM GRANDE E HORIZONTAL --- */

.image-full-width {
    width: 100%; /* Ocupa 100% da largura do .content-section */
    max-width: 1100px; /* Alinha com a largura máxima do texto */
    margin: 2rem auto; /* Centraliza o bloco e adiciona espaço */
}

.image-full-width img {
    width: 100%; /* Faz a imagem preencher o container */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.image-full-width figcaption {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #b0b0b0;
    text-align: center;
    font-style: italic;
    line-height: 1.4;
}
