/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    color: #111111;
    background-color: #FFFFFF;
    padding: 0 10px;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.hero {
    /* CORREÇÃO CRÍTICA: Remove a background-image e overlay estática no CSS */
    background-color: #000000; /* Fundo preto para o fallback */
    position: relative; /* Necessário para posicionar a imagem de fundo absoluta */
    min-height: 550px; /* Ajustei a altura mínima para visualização */
    padding: 100px 20px; 
    color: #ffffff; 
    
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    text-align: left; 
    z-index: 1; /* Garante que o conteúdo fique acima da imagem */
}

/* Container da Imagem de Fundo */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Posiciona a imagem atrás do conteúdo */
}

/* Imagem de Fundo (Garante preenchimento sem distorção) */
.hero-bg-img img {
    width: 100%;
    height: 100%;
    /* ESSENCIAL para evitar que a imagem estique/achate */
    object-fit: cover; 
    display: block !important; /* Força a imagem a ser exibida, desfazendo o style="display: none;" */
}

/* Overlay Escuro para Legibilidade (Adicionado via pseudo-elemento) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay escuro */
    z-index: 0; /* Entre o conteúdo (z-index: 1) e a imagem (z-index: -1) */
}


.hero .container {
    max-width: 800px; 
    margin-left: 100px; 
    position: relative; /* Coloca o container acima do overlay (z-index: 0) */
    z-index: 2; 
}

.hero h1 {
    font-family: "DM Serif Display", serif; 
    font-size: 45px; 
    font-weight: 400; 
    line-height: 1.1em;
    letter-spacing: 2px;
    color: #D8C5A8; 
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero p {
    font-family: "Manrope", Sans-serif; /* Use Manrope, já que Work Sans não está importada */
    font-size: 18px; 
    font-weight: 300; 
    line-height: 1.4em; 
    letter-spacing: 0.5px;
    color: #ffffff; 
    margin-bottom: 30px;
}

.hero .btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: "Manrope", Sans-serif; /* Use Manrope */
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase; 
    text-decoration: none;
    color: #D8C5A8; 
    background-color: transparent; 
    border: 2px solid #D8C5A8; 
    border-radius: 0; 
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background-color: #D8C5A8; 
    color: #000000; 
    border-color: #D8C5A8;
}

/* Para dispositivos móveis (exemplo) */
@media (max-width: 767px) {
    .hero {
        min-height: 400px; 
        padding: 50px 15px; 
        justify-content: center; 
        text-align: center; 
    }

    .hero .container {
        margin-left: auto; 
        margin-right: auto; 
        max-width: 90%; 
    }

    .hero h1 {
        font-size: 30px; 
        letter-spacing: 1.5px;
    }

    .hero p {
        font-size: 16px; 
    }
}

/* Áreas de Atuação */
/* --- ESTILO GERAL DA SEÇÃO --- */
/* --- Estilos Fixos de Layout --- */
.areas {
    background-color: #111111;
    padding: 100px 0;
    color: #ffffff;
}
.areas h2 {
    font-family: "DM Serif Display", serif;
    font-size: 35px; 
    font-weight: 400;
    text-align: center;
    color: #D8C5A8;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 2px;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    max-width: 1200px;
    margin: 0 auto;
    
    align-items: start; 
    
    padding: 0 20px;
}

/* --- ESTILO DO CARD DE ÁREA INDIVIDUAL (CORRIGIDO) --- */
.area {
    background-color: #000000;
    border-radius: 5px;
    overflow: hidden;
    
    display: flex;
    flex-direction: column; 
    position: relative; 
    cursor: pointer;
    transition: all 0.3s ease; 
    
    padding-bottom: 0; 
}
.area:hover {
    transform: translateY(-5px);
}

/* --- IMAGEM E OVERLAY --- */
.area img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    display: block;
    z-index: 1;
}

.area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px; 
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
}

/* --- TÍTULO DA ÁREA --- */
.area h3 {
    padding: 15px 20px 0px; 
    z-index: 3;
    font-family: "Manrope", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #D8C5A8;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* --- CONTAINER DO BOTÃO (.accordion) --- */
.accordion {
    width: 100%;
    z-index: 4;
    margin-top: auto; 
    
    padding: 0 20px 30px; 
}

/* --- ESTILO DO BOTÃO (.accordion-toggle) --- */
.accordion-toggle {
    background-color: #3a3838;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 20px; 
    color: #ffffff; 
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    cursor: pointer;
    margin-top: 15px; 
}
.accordion-toggle::after {
    content: '›';
    font-size: 20px;
    font-weight: normal;
    color: #ffffff; 
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.accordion-toggle.active::after {
    transform: rotate(90deg);
}

/* --- CONTEÚDO RECOLHÍVEL (CORRIGIDO) --- */
.accordion-content {
    background-color: #000000;
    color: #cccccc;
    font-family: "Manrope", Sans-serif;
    line-height: 1.5;

    max-height: 0; 
    overflow: hidden;
    margin-top: 0;
    
    padding: 0 20px; 
    
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

/* Adiciona o padding vertical APENAS quando o conteúdo está aberto (ativado pelo JS) */
.accordion-content[style*="max-height"] {
    padding-top: 10px;
    padding-bottom: 20px; 
}

/* Por que escolher */
/* --- CONFIGURAÇÃO GERAL DA SEÇÃO --- */
.why-choose {
    background-color: #000000;
    padding: 0 0; 
    color: #ffffff;
    width: 100%; 
}

/* --- LAYOUT DE DUAS COLUNAS --- */
.why-choose .container {
    display: flex;
    align-items: stretch; 
    
    max-width: none; 
    margin: 0 auto;
    padding: 0; 
}

.why-choose .content-wrapper {
    flex: 1; 
    max-width: 50%; 
    
    padding-left: 100px; 
    padding-right: 50px; 
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    padding-top: 100px;
    padding-bottom: 100px;
    
    text-align: left;
}

/* --- TÍTULO (H2) --- */
.why-choose h2 {
    font-family: "DM Serif Display", serif;
    font-size: 38px; 
    font-weight: 400; 
    line-height: 1.2;
    color: #D8C5A8; 
    margin-bottom: 30px;
}

/* --- PARÁGRAFO (P) --- */
.why-choose p {
    font-family: "Manrope", Sans-serif; 
    font-size: 16px;
    font-weight: 300; 
    line-height: 1.6;
    color: #cccccc; 
    margin-bottom: 40px;
    padding-right: 20px; 
}

/* --- ESTILO DO BOTÃO --- */
.why-choose .btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: "Manrope", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    
    color: #D8C5A8; 
    background-color: transparent; 
    border: 1px solid #D8C5A8; 
    border-radius: 0; 
    transition: all 0.3s ease;
}

.why-choose .btn:hover {
    background-color: #D8C5A8; 
    color: #000000; 
}

/* --- IMAGEM DE FUNDO/LATERAL --- */
.why-choose .image-wrapper {
    flex: 1; 
    text-align: right;
    overflow: hidden; 
}

.why-choose .image-wrapper img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    max-width: none; 
}

/* FAQ */
/* --- CONFIGURAÇÃO GERAL DA SEÇÃO FAQ --- */

.faq {
    background-color: #111111; 
    padding: 100px 20px; 
    color: #ffffff;
    text-align: center; 
}

/* Garante que o container interno não seja muito largo */
.faq .container {
    max-width: 1200px; 
    margin: 0 auto;
}

/* --- TÍTULO PRINCIPAL H2 (Ajustado) --- */
.faq h2 {
    font-family: "DM Serif Display", serif;
    font-size: 35px; 
    font-weight: 400;
    text-align: center;
    color: #D8C5A8; 
    text-transform: uppercase;
    
    margin-bottom: 70px; 
    
    letter-spacing: 2px;
}

/* --- ESTILO DO ITEM ACORDEÃO (DIV .accordion) (Ajustado) --- */
.faq .accordion {
   
    margin-bottom: 1px; 
    
    overflow: hidden;
}

/* --- ESTILO DO BOTÃO DE PERGUNTA (.accordion-toggle) --- */
.faq .accordion-toggle {
    background-color: #222222; 
    border: none;
    width: 100%;
    
    color: #ffffff;
    font-family: "Manrope", Sans-serif; 
    font-size: 16px; 
    font-weight: 400;
    
    padding: 15px 20px; 
    
    display: flex;
    justify-content: space-between; 
    align-items: center;
    text-align: left; 
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Seta de Expansão (Ícone) */
.faq .accordion-toggle::after {
    content: '›';
    font-size: 20px;
    font-weight: bold;
    color: #ffffff; 
    margin-left: 10px;
    transition: transform 0.3s;
}

/* Efeito ao passar o mouse: Sutilmente muda de cor */
.faq .accordion-toggle:hover {
    background-color: #333333; 
}

/* Estilo para quando a pergunta está aberta */
.faq .accordion-toggle.active {
    background-color: #333333;
}

/* Rotação da seta quando ativo (necessita de JavaScript) */
.faq .accordion-toggle.active::after {
    transform: rotate(90deg);
}

/* --- CONTEÚDO DE RESPOSTA (.accordion-content) --- */
.faq .accordion-content {
    background-color:transparent;
    color: #cccccc;
    font-family: "Manrope", Sans-serif;
    font-size: 14px;
    line-height: 1.6;
    
    max-height: 0; 
    overflow: hidden;
    padding: 0 20px; 
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    text-align: left; 
}

/* Correção JavaScript: Adiciona padding vertical apenas quando aberto */
.faq .accordion-content[style*="max-height"] {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Atendimentos */
/* --- 1. CONFIGURAÇÃO GERAL DA SEÇÃO --- */
.atendimentos {
    background-color: #000000; 
    padding: 100px 0; 
    color: #ffffff;
}

/* --- 2. LAYOUT DE DUAS COLUNAS (FLEXBOX) --- */
.atendimentos .container {
    display: flex; 
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start; 
    gap: 30px; 
}

.atendimentos .info-wrapper {
    flex: 1; 
    padding-right: 50px;
}

.atendimentos iframe {
    flex: 1; 
    max-width: 50%;
    height: 450px; 
    border-radius: 8px; 
}

/* --- 3. ESTILO DO TÍTULO H2 --- */
.atendimentos h2 {
    font-family: "DM Serif Display", serif;
    font-size: 40px; 
    font-weight: 400;
    color: #D8C5A8; 
    margin-bottom: 40px;
}

/* --- 4. ESTILO DA LISTA DE LOCAIS (COM ÍCONE PIN) --- */
/* --- 1. ESTILO GERAL DA LISTA --- */
.atendimentos ul {
    list-style: none; 
    padding: 0;
    margin-bottom: 40px; 
}

/* --- 2. ESTILO DE CADA ITEM DA LISTA (LI) --- */
.atendimentos li {
    font-family: "Manrope", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #ffffff; 
    margin-bottom: 15px; 
    
    position: relative; 
    padding-left: 30px; 
    text-align: left;
}

/* --- 3. INSERÇÃO E ESTILO DO ÍCONE DE LOCALIZAÇÃO (::before) --- */
.atendimentos li::before {
    content: '📍'; 
    
    font-size: 20px;
    color: #D8C5A8; 
    
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.5;
}

/* --- 5. ESTILO DOS BOTÕES SOCIAIS --- */
.atendimentos .social {
    display: flex;
    gap: 15px; 
    margin-top: 30px;
}

.atendimentos .social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; 
    height: 40px;
    background-color: #1a1a1a; 
    border: 1px solid #D8C5A8; 
    border-radius: 8px; 
    transition: background-color 0.3s;
}

.atendimentos .social a img {
    width: 30px; 
    height: 30px;
    filter: invert(100%); 
}

/* Efeito Hover */
.atendimentos .social a:hover {
    background-color: #D8C5A8; 
}
.atendimentos .social a:hover img {
    filter: invert(0%); 
}

/*antes depois*/

/* --- Seção Antes X Depois --- */
.before-after {
    background-color: #000000; 
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.before-after .container {
    max-width: 1200px; 
    margin: 0 auto;
}

/* Título da seção */
.before-after h2 {
    font-family: "DM Serif Display", serif;
    font-size: 38px;
    font-weight: 400;
    color: #D8C5A8; 
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* Container dos casos de antes e depois (GRID para desktop, SCROLL para mobile) */
.before-after-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
    justify-content: center; 
}

/* Estilo de cada item de caso de estudo */
.case-item {
    background-color: #1a1a1a; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex; 
    flex-direction: column;
}

.case-item h3 {
    font-family: "Manrope", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #D8C5A8; 
    padding: 20px 15px 15px;
    text-transform: uppercase;
    text-align: center;
}

/* Galeria de imagens (Antes e Depois) */
.image-gallery {
    display: flex;
    gap: 10px; 
    padding: 0 15px 15px; 
    flex-grow: 1; 
}

.image-gallery figure {
    flex: 1; 
    margin: 0;
    position: relative;
    border-radius: 4px; 
    overflow: hidden; 
}

/* CORREÇÃO CRÍTICA: Garante que as imagens se ajustem e tenham altura fixa em desktop */
.image-gallery img {
    width: 100%;
    height: 350px; 
    object-fit: cover; 
    display: block;
}

/* Legendas ANTES / DEPOIS */
.image-gallery figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7); 
    color: #ffffff;
    font-family: "Manrope", Sans-serif;
    font-size: 14px;
    padding: 8px 12px;
    border-top-right-radius: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- ESTILO DO RODAPÉ (FOOTER) --- */
footer {
    background-color: #000000; 
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #1a1a1a; 
}

footer p {
    font-family: 'Roboto', 'Manrope', Sans-serif; 
    font-size: 14px; 
    font-weight: 300;
    color: #cccccc; 
    margin: 0;
}

/* Estilo do link do desenvolvedor */
footer p a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
    margin-right: 5px; 
}

/* Efeito Hover */
footer p a:hover {
    color: #D8C5A8; 
}

/* Container do link e ícone */
.developer-link {
    display: inline-flex; 
    align-items: center;
}

/* --- INSERÇÃO DO ÍCONE DO INSTAGRAM --- */
/* O ícone será inserido após o link <a> usando um pseudo-elemento */
.developer-link a::after {
    /* Ícone do Instagram (fa-brands fa-instagram) */
    content: '\f16d'; 
    
    font-family: 'Font Awesome 6 Brands'; 
    font-weight: 400; 
    
    font-size: 14px; 
    color: #cccccc; 
    margin-left: 5px; 
    transition: color 0.3s;
}

/* Ícone muda de cor no hover (junto com o texto) */
.developer-link a:hover::after {
    color: #D8C5A8;
}

/* --- RESPONSIVIDADE (MEDIA QUERIES) --- */

@media (max-width: 767px) {
    /* HERO */
    .hero {
        min-height: 400px; 
        padding: 50px 15px; 
        justify-content: center; 
        text-align: center; 
    }

    .hero .container {
        margin-left: auto; 
        margin-right: auto; 
        max-width: 90%; 
    }

    .hero h1 {
        font-size: 30px; 
        letter-spacing: 1.5px;
    }

    .hero p {
        font-size: 16px; 
    }

    /* ÁREAS DE ATUAÇÃO (CORREÇÃO) */
    .areas {
        padding: 50px 0; /* Menos padding vertical em mobile */
    }
    
    .areas-grid {
        /* CORREÇÃO: Muda a grade para uma única coluna */
        grid-template-columns: 1fr; 
        gap: 40px; 
        
        padding: 0 20px; 
    }
    
    .areas h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .area {
        border-radius: 8px;
    }

    /* POR QUE ESCOLHER */
    .why-choose {
        padding: 50px 0;
    }
    
    .why-choose .container {
        flex-direction: column; 
        text-align: center;
    }

    .why-choose .content-wrapper {
        max-width: 100%;
        padding-left: 20px; 
        padding-right: 20px; 
        padding-top: 50px;
        padding-bottom: 50px;
        text-align: center;
        order: 2; 
    }

    .why-choose .image-wrapper {
        order: 1;
        margin-bottom: 0;
    }
    
    .why-choose h2 {
        font-size: 30px;
    }

    .why-choose p {
        padding: 0;
    }

    /* ANTES X DEPOIS */
    .before-after h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .before-after-cases {
        display: flex; 
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        -webkit-overflow-scrolling: touch; 
        padding-bottom: 20px; 
        gap: 20px; 
        padding-left: 20px; 
        padding-right: 20px; 
    }

    /* Esconde a barra de rolagem nativa */
    .before-after-cases::-webkit-scrollbar {
        display: none;
    }
    
    .case-item {
        flex: 0 0 85vw; 
        scroll-snap-align: start; 
        margin-right: 0; 
        margin-left: 0; 
    }

    .case-item h3 {
        font-size: 20px;
        padding: 15px 10px 10px;
    }

    .image-gallery {
        gap: 8px;
        padding: 0 10px 10px;
    }

    .image-gallery img {
        height: 200px; 
    }
    
    /* FAQ */
    .faq {
        padding: 50px 15px;
    }
    .faq h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .faq .accordion-toggle {
        font-size: 15px;
        padding: 12px 15px;
    }

    /* ATENDIMENTOS */
    .atendimentos {
        padding: 50px 0;
    }
    .atendimentos .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .atendimentos .info-wrapper {
        padding-right: 0;
        text-align: center;
    }
    .atendimentos li {
        text-align: center;
        padding-left: 0;
    }
    .atendimentos li::before {
        content: none; 
    }
    .atendimentos h2 {
        font-size: 30px;
    }
    .atendimentos iframe {
        max-width: 100%;
        height: 300px;
    }
    .atendimentos .social {
        justify-content: center;
    }
}

/*
 * --------------------------------
 * SEÇÃO: CHAMADA PARA RESULTADOS (ESTILO REVITALIZADO)
 * --------------------------------
 */

.call-to-action-results {
    /* Fundo mais escuro ou de contraste sutil para dar elegância */
    background-color: #e5e5e5; /* Um cinza médio mais sofisticado */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* Garantir que nada vaze */
}

/* Container do conteúdo central, usando um 'card' sutil */
.call-to-action-results .content-card {
    background-color: #ffffff; /* Fundo branco puro dentro do card */
    padding: 40px;
    border-radius: 8px; /* Cantos levemente arredondados */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Sombra suave para profundidade */
    max-width: 700px;
    margin: 0 auto; /* Centraliza o card */
    border-top: 5px solid #8c7851; /* Linha de destaque na cor principal (ajuste se a cor for diferente) */
}

.call-to-action-results h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    color: #333333; /* Cor escura forte */
    margin-bottom: 15px;
    line-height: 1.2;
}

.call-to-action-results p {
    font-family: 'Manrope', 'Roboto', sans-serif;
    font-size: 1.05rem;
    color: #666666;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Estilo do Botão (Reutilizado e adaptado para o contexto) */
.call-to-action-results .btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #8c7851; 
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
}

.call-to-action-results .btn:hover {
    background-color: #6d5b40;
    transform: translateY(-2px); /* Efeito sutil ao passar o mouse */
}

/*
 * --------------------------------
 * MEDIA QUERIES PARA RESPONSIVIDADE
 * --------------------------------
 */

@media (max-width: 768px) {
    .call-to-action-results {
        padding: 60px 20px;
    }
    
    .call-to-action-results .content-card {
        padding: 30px 20px;
        border-radius: 6px;
    }

    .call-to-action-results h2 {
        font-size: 2.2rem;
    }
    
    .call-to-action-results p {
        font-size: 1rem;
    }

    .call-to-action-results .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}