/*
--- CSS Base para Landing Pages ELM Topografia ---
Autor: [Seu Nome/IA]
Versão: 1.0
*/

/* --- FONTES (Exemplo com Google Fonts) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

/* --- VARIÁVEIS DE CORES (Fácil de alterar) --- */
:root {
    --cor-primaria: #0d2c54;     /* Azul escuro corporativo */
    --cor-secundaria: #145da0;  /* Azul médio */
    --cor-acento: #ffc107;      /* Amarelo/Dourado para CTAs e destaques */
    --cor-texto: #333333;       /* Cinza escuro para texto principal */
    --cor-texto-claro: #f4f7f5; /* Quase branco para textos em fundos escuros */
    --cor-fundo-claro: #f9f9f9;  /* Fundo para seções alternadas */
    --cor-branco: #ffffff;
}

/* --- RESET & CONFIGURAÇÕES GLOBAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Para a rolagem suave dos links do menu */
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-branco);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- TIPOGRAFIA --- */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--cor-primaria);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3rem); /* Fonte responsiva */
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.25rem;
    color: var(--cor-secundaria);
}

p {
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -1rem auto 2.5rem auto;
    font-size: 1.1rem;
}

/* --- BOTÕES (CTAs) --- */
.btn-cta, .btn-header-cta, .btn-submit-form {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--cor-acento);
    color: var(--cor-primaria);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cta:hover, .btn-header-cta:hover, .btn-submit-form:hover {
    background-color: #ffca2c;
    transform: translateY(-3px);
}

.btn-header-cta {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* --- HEADER --- */
header {
    background-color: var(--cor-branco);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

header .logo img {
    height: 50px;
    width: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

header nav a {
    text-decoration: none;
    color: var(--cor-secundaria);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
}

header nav a:not(.btn-header-cta):hover {
    color: var(--cor-acento);
}

/* --- SEÇÃO HERO --- */
#hero {
    background: url('../images/hero-background.jpg') no-repeat center center/cover; /* Imagem de fundo padrão */
    color: var(--cor-texto-claro);
    padding: 8rem 0;
    position: relative;
    text-align: center;
}

/* Overlay para escurecer o fundo e dar legibilidade */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 44, 84, 0.4); /* Clareado */
}

#hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

#hero h1 {
    color: var(--cor-branco);
}

#hero h2 {
    color: var(--cor-texto-claro);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
}


/* --- ESTILOS DAS SEÇÕES --- */
section {
    /* A linha padding: 4rem 0; continua aqui */
    padding: 4rem 0;

    /* NOVAS LINHAS - Substitua a scroll-margin-top por estas: */
    padding-top: 120px; /* <<-- Altura do seu header + um respiro */
    margin-top: -80px;  /* <<-- Valor negativo para "puxar" a seção para cima */
}

#problema-solucao .container {
    max-width: 800px;
    text-align: center;
}

/* --- LAYOUTS DE GRID (Serviços, Produtos, Vantagens) --- */
.servicos-list, .produtos-list, .vantagens-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico-item, .produto-item, .vantagem-item {
    background-color: var(--cor-branco);
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.servico-item:hover, .produto-item:hover, .vantagem-item:hover {
    transform: translateY(-5px);
}

.servico-item img, .produto-item img {
    border-radius: 8px;
    margin-bottom: 1rem;
}

.vantagem-item img {
    height: 60px;
    margin: 0 auto 1rem auto;
}

/* --- SEÇÃO COMO FUNCIONA --- */
.passos-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.passo-item span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--cor-acento);
    color: var(--cor-primaria);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* --- SEÇÃO DEPOIMENTOS --- */
.depoimentos-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.depoimento-item {
    background: var(--cor-fundo-claro);
    padding: 2rem;
    border-left: 5px solid var(--cor-acento);
    border-radius: 0 8px 8px 0;
}

.depoimento-item .autor {
    font-weight: 600;
    color: var(--cor-secundaria);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* --- SEÇÃO CONTATO --- */
.contato-flex {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.contato-form {
    flex: 1;
}

.contato-info {
    flex: 0 0 40%; /* Ocupa 40% do espaço */
}

/* Estilos do Formulário */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea, .form-group input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--cor-secundaria);
    box-shadow: 0 0 5px rgba(20, 93, 160, 0.5);
}

.btn-submit-form {
    width: 100%;
    font-size: 1.1rem;
}

/* Campo anti-spam (Honeypot) - ESSENCIAL */
.honeypot-field {
    display: none;
}

/* Informações de Contato */
.contato-info h3 {
    margin-top: 0;
}

.contato-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}
.contato-info p strong {
    min-width: 80px;
}

.contato-info img {
    width: 24px;
    height: 24px;
}

.contato-info a {
    color: var(--cor-secundaria);
    text-decoration: none;
}
.contato-info a:hover {
    text-decoration: underline;
}

/* O container do mapa */
#mapa {
    position: relative; /* Essencial para o posicionamento do iframe */
    width: 100%;
    height: 0;          /* A altura será controlada pelo padding */
    padding-bottom: 75%;/* Proporção 4:3 (3 dividido por 4 = 0.75). Para um quadrado, use 100% */
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;   /* Garante que o iframe respeite o border-radius */
}

/* O iframe dentro do container */
#mapa iframe {
    position: absolute; /* Posiciona o iframe dentro do espaço criado pelo padding */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- FOOTER --- */
footer {
    background-color: var(--cor-primaria);
    color: var(--cor-texto-claro);
    padding: 2rem 0 1rem 0;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

footer .footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1); /* Deixa a logo branca */
}

footer a {
    color: var(--cor-texto-claro);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid var(--cor-secundaria);
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* --- RESPONSIVIDADE --- */

/* Tablets e telas menores */
@media (max-width: 992px) {
    header nav ul {
        gap: 1rem;
    }
    .contato-flex {
        flex-direction: column;
    }
    .contato-info {
        flex: 1;
    }
}

/* Tablets em modo retrato e celulares grandes */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    #hero {
        padding: 6rem 0;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Celulares */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    .container {
        width: 95%;
    }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .btn-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* --- AJUSTE PARA 2 COLUNAS EM SEÇÕES COM 4 ITENS --- */
/* Esta regra se aplica apenas às listas de serviços e produtos/entregáveis */
@media (min-width: 768px) {
    .servicos-list, .produtos-list {
        /* Em telas de tablet para cima, força um grid de 2 colunas */
        grid-template-columns: repeat(2, 1fr);
    }
}