/* ---- GERAL E VARIÁVEIS ---- */
:root {
    --primary-color: #cd9849; /* Azul oficial FNV */
    --secondary-color: #f4f4f4;
    --dark-bg: #2c3e50;
    --text-color: #333;
    --light-text: #ecf0f1;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0px auto;
    padding: auto;
}

/* ---- HEADER ---- */
.header {
    background-color:#1c2e50;
    padding: 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    transition: color 0.3s ease;
}

.header nav a:hover {
    color: var(--primary-color);
}

/* ---- BOTÕES ---- */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    font-family: var(--font-primary);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #365a6a; /* Um tom mais escuro do azul */
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ---- SEÇÃO HERO ---- */
#hero {
    background: url('/img/heroi-trabalhador.jpg') no-repeat center center/cover; /* Caminho para IMAGEM 1 */
    background-color: #555; /* Cor de fallback */
    background-blend-mode: multiply;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}
#hero-btn {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0;
}

.hero-content {
    max-width: 1000px; /* Largura mais fina, conforme solicitado */
    text-color:#ffffff;
    vertical-align: center;
}
.texto-topo{
    text-color:#ffffff;
}
#hero h1 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    margin-top:0;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* ---- SEÇÕES DE CONTEÚDO ---- */
.content-section {
    padding: 40px 0;
}

.content-section-dark {
    padding: 40px 0;
    background-color: #f7f9fa;
}

.section-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-layout.reverse {
    flex-direction: row-reverse;
}

.section-layout .text-content,
.section-layout .image-content {
    flex: 1;
    font-size: 16px;
}

.content-section h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    vertical-align: top;
}

.content-section p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.image-content img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ---- SEÇÃO FAQ (DÚVIDAS) ---- */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: var(--font-primary);
    color: var(--text-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: left;
}

.faq-item h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* ---- SEÇÃO CTA FINAL ---- */
.cta-final {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0;
    text-align: center;
}

.cta-final h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- FOOTER ---- */
.footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
}

/* ---- RESPONSIVIDADE ---- */
@media(max-width: 768px) {
    .section-layout {
        flex-direction: column;
        text-align: center;
    }

    .section-layout.reverse {
        flex-direction: column;
    }

    .image-content {
        margin-top: 20px;
    }
    
    #hero h1 {
        font-size: 2.2rem;
    }

    #hero {
        height: 60vh;
    }

    .header .container {
        flex-direction: column;
        gap: 10px;
    }
}