/* Reset simples e fonte base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: #f8f9fa;
    color: #232323;
    line-height: 1.6;
}
/* Fade-in global e up */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(.39,.58,.57,1), transform 0.8s cubic-bezier(.39,.58,.57,1);
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 1s cubic-bezier(.39,.58,.57,1), transform 1s cubic-bezier(.39,.58,.57,1);
}
.fade-in-up.visible {
    opacity: 1;
    transform: none;
}
/* Container centralizador */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header fixo */
header {
    background: #e6e7ef;
    box-shadow: 0 2px 10px 0 rgba(190, 190, 210, 0.07);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    transition: box-shadow 0.2s;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}
/* Logo */
.logo {
    font-size: 1.8rem;
    color: #1b3954;
    font-weight: bold;
    letter-spacing: 1px;
}
.logo strong { color: #9ad1b9; font-weight: bold; }
/* Navegação */
nav { position: relative; }
.nav-list {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav-list li a {
    color: #1b3954;
    text-decoration: none;
    font-size: 1.05rem;
    padding: 8px 6px;
    transition: color 0.2s;
    border-radius: 4px;
}
.nav-list li a:hover, .nav-list li a:focus {
    background: #d2f6e6;
    color: #27846a;
}
/* Menu hambúrguer (mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle .bar { width: 26px; height: 4px; background: #1b3954; border-radius: 2px; transition: 0.3s; }

@media (max-width: 800px) {
    .nav-list {
        position: absolute;
        top: 60px;
        right: 0;
        background: #e6e7ef;
        flex-direction: column;
        gap: 0;
        width: 180px;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 20px rgba(190,190,210,0.10);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s;
        z-index: 5;
    }
    .nav-list.open {
        max-height: 500px;
        border-top: 1px solid #d2f6e6;
    }
    .nav-list li { border-bottom: 1px solid #d2f6e6; }
    .nav-list li a { display: block; padding: 16px; }
    .menu-toggle { display: flex; }
}

/* --- HERO SECTION --- */
#hero {
    padding: 0; /* Hero não usa o padding global da section pois é full-width de imagem */
    margin-bottom: 40px; /* Espaçamento após o hero */
    /* Hero não tem max-width: 1200px nem margin: 0 auto global, pois seu .hero-slider é full-width */
}
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    background: #d2f6e6; /* Cor de fundo caso a imagem demore a carregar */
    border-radius: 0 0 32px 32px; /* Cantos arredondados apenas na base */
    box-shadow: 0 8px 28px 0 rgba(190, 190, 210, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 0.8s;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}
.hero-content {
    background: rgba(255,255,255,0.67);
    padding: 60px 48px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(190,190,210,0.12);
    max-width: 500px;
    margin: 0 auto; /* Centraliza o conteúdo dentro do slide */
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 2.2rem;
    color: #1b3954;
    margin-bottom: 18px;
    font-weight: bold;
}
.hero-content .highlight {
    color: #27846a;
    background: #d2f6e6;
    border-radius: 6px;
    padding: 0 6px;
}
.hero-content p {
    font-size: 1.08rem;
    margin-bottom: 22px;
}
.hero-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(90deg, #9ad1b9 60%, #27846a 100%);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px 0 rgba(39,132,106,0.10);
    transition: background 0.2s, transform 0.17s;
    margin-top: 10px;
}
.hero-btn:hover, .hero-btn:focus {
    background: linear-gradient(90deg, #27846a 70%, #9ad1b9 100%);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
    .hero-slider { min-height: 320px; }
    .hero-content {
        max-width: 98vw;
        padding: 24px 5vw;
        border-radius: 14px;
    }
    .hero-content h1 { font-size: 1.3rem; }
    .hero-btn {
        font-size: 1rem;
        padding: 11px 20px;
    }
}

/* Seções principais - espaçamento básico e max-width */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto; /* Centraliza as seções que não são full-width */
}

/* Benefícios */
#beneficios {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(190,190,210,0.07);
    margin-top: -40px; /* Sobrepõe um pouco a base do hero */
    margin-bottom: 40px; /* Espaçamento padrão entre seções */
    position: relative; /* Para garantir que o z-index funcione se necessário */
    z-index: 10; /* Para ficar acima de elementos anteriores se houver sobreposição */
}
.beneficios-container { /* Container específico se necessário, ou usar .container global */
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px; /* Padding interno da seção */
}
.section-title {
    font-size: 2rem;
    color: #27846a;
    text-align: center;
    margin-bottom: 36px;
    font-weight: bold;
}
.section-subtitle { /* Adicionado para consistência */
    text-align: center;
    font-size: 1.1rem;
    color: #5b5b5b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.subsection-title { /* Adicionado para consistência */
    text-align: center;
    font-size: 1.6rem;
    color: #1b3954;
    margin-bottom: 30px;
    font-weight: bold;
}

.beneficios-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.beneficio-item {
    background: #f7faf9;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(180,220,200,0.06);
    padding: 28px 22px;
    flex: 1 1 220px;
    max-width: 250px;
    min-width: 180px;
    text-align: center;
}
.beneficio-icon { /* Mantido, pois .beneficio-item usa SVGs */
    font-size: 2.2rem; /* Este se aplica se o SVG não tiver tamanho definido, mas é melhor definir no SVG */
    margin-bottom: 16px;
    display: block;
}
.beneficio-icon svg { /* Para controlar SVGs dentro de .beneficio-icon */
    width: 48px;
    height: 48px;
    /* stroke: #27846a;  A cor do stroke já está no SVG */
}
.beneficio-item h3 {
    color: #1b3954;
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: bold;
}
.beneficio-item p {
    color: #5b5b5b;
    font-size: 0.98rem;
}

/* Serviços */
#servicos {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(190,190,210,0.07);
    margin-bottom: 40px; /* Espaçamento padrão */
}
.servicos-container { /* Container específico se necessário */
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}
.servicos-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.servico-item {
    background: #f7faf9;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(180,220,200,0.06);
    padding: 28px 22px;
    flex: 1 1 220px;
    max-width: 250px;
    min-width: 180px;
    text-align: center;
}
.servico-icon { /* Mantido, pois .servico-item usa SVGs */
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}
.servico-icon svg { /* Para controlar SVGs dentro de .servico-icon */
    width: 48px;
    height: 48px;
}
.servico-item h3 {
    color: #27846a;
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: bold;
}
.servico-item p {
    color: #5b5b5b;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .beneficios-list, .servicos-list { flex-direction: column; gap: 18px; align-items: center; }
    .beneficio-item, .servico-item { max-width: 350px; }
}

/* --- Métricas e Prova Social --- */
#metricas {
    background-color: #fff;
    padding-top: 60px; /* Já definido pela regra global 'section' */
    padding-bottom: 60px; /* Já definido pela regra global 'section' */
    border-radius: 24px;
}
.metricas-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
}
.metrica-item {
    flex: 1 1 200px;
    max-width: 280px;
    padding: 20px;
    background-color: #f7faf9;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(180,220,200,0.06);
}
.metrica-icon svg { /* Mantido */
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    /* stroke: #27846a; A cor do stroke já está no SVG */
}
.metrica-numero {
    display: block;
    font-size: 2.8rem;
    font-weight: bold;
    color: #1b3954;
    margin-bottom: 8px;
    line-height: 1.1;
}
.metrica-item p {
    font-size: 1rem;
    color: #5b5b5b;
}
.depoimentos-wrapper {
    margin-top: 50px;
}
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.depoimento-card {
    background-color: #f7faf9;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(190,190,210,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.depoimento-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #d2f6e6;
}
.depoimento-card h4 {
    font-size: 1.15rem;
    color: #27846a;
    margin-bottom: 5px;
    font-weight: bold;
}
.depoimento-avaliacao {
    margin-bottom: 10px;
    color: #f0ad4e;
    font-size: 1.2rem;
}
.depoimento-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}
.parceiros-wrapper {
    margin-top: 60px;
    text-align: center;
}
.parceiros-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.parceiros-logos img {
    max-height: 60px;
    max-width: 150px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.parceiros-logos img:hover {
    opacity: 1;
}
@media (max-width: 768px) {
    .metricas-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .metrica-item {
        max-width: 350px;
        width: 100%;
    }
    .metrica-numero {
        font-size: 2.2rem;
    }
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Galeria de Projetos --- */
#galeria {
    background-color: #fff; /* Confirmando fundo branco conforme discussão */
    /* padding já vem da regra 'section' */
    border-radius: 24px;
}
.galeria-filtros {
    text-align: center;
    margin-bottom: 40px;
}
.filtro-btn {
    background-color: transparent;
    border: 2px solid #d2f6e6;
    color: #27846a;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    font-size: 0.95rem;
}
.filtro-btn:hover,
.filtro-btn.active {
    background-color: #27846a;
    color: #fff;
    border-color: #27846a;
}
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(190,190,210,0.08);
    background-color: #fff;
    transition: transform 0.3s ease;
}
.galeria-item:hover {
    transform: translateY(-5px);
}
.galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.galeria-item:hover img {
    transform: scale(1.05);
}
.galeria-legenda {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    padding: 20px 15px 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: left;
}
.galeria-item:hover .galeria-legenda {
    opacity: 1;
    transform: translateY(0);
}
.galeria-legenda h3 {
    font-size: 1.1rem;
    margin: 0 0 3px 0;
    font-weight: bold;
}
.galeria-legenda p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}
.galeria-item.hide {
    display: none;
}
/* --- Estilos do Lightbox --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.lightbox-overlay.show {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
.lightbox-content {
    position: relative;
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 8px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}
#lightbox-img {
    max-width: 100%;
    max-height: calc(90vh - 100px);
    display: block;
    border-radius: 4px;
    object-fit: contain;
}
.lightbox-caption-display {
    color: #ccc;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    padding: 5px 10px;
    max-width: 70vw;
}
.lightbox-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #27846a;
    color: white;
    border: none;
    font-size: 28px;
    line-height: 30px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(40, 40, 40, 0.7);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
    z-index: 1001;
}
.lightbox-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}
.lightbox-nav-btn.prev {
    left: 25px;
}
.lightbox-nav-btn.next {
    right: 25px;
}
@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .galeria-item img {
        height: 200px;
    }
    .lightbox-nav-btn.prev {
        left: 5px;
    }
    .lightbox-nav-btn.next {
        right: 5px;
    }
    .lightbox-content {
        padding: 10px;
    }
    #lightbox-img {
        max-height: calc(90vh - 80px);
    }
}

/* --- Seção Preço --- */
#preco {
    background-color: #fff;
    /* padding já da section global */
    padding-bottom: 80px; /* Aumentado para mais espaço para o CTA */
    border-radius: 24px;
}
.preco-destaque {
    text-align: center;
    margin-bottom: 50px;
    background-color: #d2f6e6;
    padding: 30px 20px;
    border-radius: 18px;
    border: 2px dashed #9ad1b9;
}
.preco-destaque p {
    font-size: 1.1rem;
    color: #1b3954;
    margin-bottom: 8px;
}
.valor-inicial {
    font-size: 2.2rem;
    font-weight: bold;
    color: #27846a;
    margin-bottom: 10px;
}
.valor-inicial .numero-preco {
    font-size: 3.2rem;
}
.nota-preco {
    font-size: 0.9rem !important;
    color: #5b5b5b !important;
    font-style: italic;
}
.diferenciais-preco {
    margin-bottom: 60px;
}
.diferenciais-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.diferencial-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(190,190,210,0.07);
}
.diferencial-icon svg { /* Mantido */
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    /* stroke: #27846a; A cor do stroke já está no SVG */
}
.diferencial-item h4 {
    font-size: 1.2rem;
    color: #1b3954;
    margin-bottom: 8px;
    font-weight: bold;
}
.diferencial-item p {
    font-size: 0.95rem;
    color: #5b5b5b;
    line-height: 1.5;
}
.planos-preco-wrapper {
    margin-bottom: 60px;
}
.planos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}
.plano-card {
    background-color: #f7faf9;
    border: 1px solid #e6e7ef;
    border-radius: 12px;
    padding: 30px 25px;
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(190,190,210,0.1);
}
.plano-card.destaque {
    border: 2px solid #27846a;
    box-shadow: 0 6px 20px rgba(39,132,106,0.15);
}
.selo-destaque {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #27846a;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
}
.plano-titulo {
    font-size: 1.5rem;
    color: #1b3954;
    margin-bottom: 10px;
    font-weight: bold;
}
.plano-preco-base {
    font-size: 1.1rem;
    color: #27846a;
    font-weight: bold;
    margin-bottom: 20px;
}
.plano-beneficios {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    flex-grow: 1;
}
.plano-beneficios li {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.plano-beneficios .check-icon {
    color: #27846a;
    margin-right: 8px;
    font-weight: bold;
}
.plano-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1b3954;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s;
    margin-top: auto;
}
.plano-btn:hover {
    background-color: #27846a;
}
.plano-card.destaque .plano-btn {
    background-color: #27846a;
}
.plano-card.destaque .plano-btn:hover {
    background-color: #1f6853;
}
.preco-cta {
    text-align: center;
    margin-top: 40px;
    background-color: #e6e7ef;
    padding: 40px 20px;
    border-radius: 12px;
}
.preco-cta p {
    font-size: 1.2rem;
    color: #1b3954;
    margin-bottom: 25px;
    font-weight: 500;
}
.btn-preco-orcamento {
    padding: 16px 35px;
    font-size: 1.15rem;
}


/* --- Seção Contato --- */
#contato {
    background-color: #d2f6e6;
    /* padding já da section global */
    padding-bottom: 80px; /* Aumentado para mais espaço para o CTA */
    text-align: center;
    border-radius: 24px; /* Adicionado para arredondar a seção */
}
/* .contato-container já está centralizado pela section global */
.contato-container .section-title { /* herdado */ }
.contato-container .section-subtitle { /* herdado */ }

.promocao-timer-wrapper {
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(39,132,106,0.1);
    max-width: 600px;
    margin: 0 auto 40px auto;
    border: 2px solid #9ad1b9;
}
.timer-content {
    text-align: center;
    width: 100%;
}
.promocao-texto {
    font-size: 1.1rem;
    color: #1b3954;
    margin-bottom: 15px;
}
.promocao-texto strong {
    color: #27846a;
}
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}
.timer-unidade {
    background-color: #1b3954;
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    min-width: 60px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.timer-unidade span {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
}
.timer-unidade small {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
}
.promocao-aviso {
    font-size: 0.9rem;
    color: #5b5b5b;
    font-style: italic;
}
.contato-botao-wrapper {
    margin-top: 30px;
}
.btn-whatsapp {
    display: inline-block;
    padding: 18px 35px;
    background-color: #25D366;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: background-color 0.3s, transform 0.2s;
    animation: pulseAnimation 2s infinite;
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
    background-color: #1DAE54;
    transform: translateY(-2px) scale(1.03);
    animation-play-state: paused;
}
@keyframes pulseAnimation {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (min-width: 576px) {
    .promocao-timer-wrapper {
        text-align: center;
        gap: 0;
        padding: 30px;
    }
    .timer-content { text-align: center; }
    .countdown-timer { justify-content: center; }
    .promocao-aviso { text-align: center; }
}
@media (max-width: 400px) {
    .timer-unidade {
        min-width: 50px;
        padding: 8px 8px;
    }
    .timer-unidade span { font-size: 1.5rem; }
}

/* --- Seção FAQ --- */
#faq {
    background-color: #fff;
    /* padding já da section global */
    border-radius: 24px;
}
#faq .section-subtitle { /* Herdado, mas pode ser ajustado */ }
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e6e7ef;
    border-radius: 12px;
    overflow: hidden;
}
.faq-item {
    border-bottom: 1px solid #e6e7ef;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    background-color: #f8f9fa;
    color: #1b3954;
    cursor: pointer;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover,
.faq-question:focus {
    background-color: #e9ecef;
}
.faq-icon {
    font-size: 1.4rem;
    font-weight: bold;
    color: #27846a;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}
.faq-icon::before { content: '+'; }
.faq-item.active .faq-question .faq-icon::before { content: '−';}
.faq-answer {
    padding: 0 25px;
    background-color: white;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.1, 0.25, 1.0),
                padding-top 0.35s cubic-bezier(0.25, 0.1, 0.25, 1.0),
                padding-bottom 0.35s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}
.faq-item.active .faq-answer {
    padding-top: 20px;
    padding-bottom: 20px;
}
.faq-answer p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}
.faq-answer p:last-child { margin-bottom: 0; }


/* --- Rodapé (Footer) --- */
#footer {
    background-color: #1b3954; /* Cor escura do tema */
    color: #adb5bd; /* Cinza claro para o texto principal */
    padding-top: 50px;
    /* padding-bottom é gerenciado pelo .footer-bottom */
    /* Rodapé não usa a regra 'section' de max-width, é full-width por natureza */
}

/* Remove o max-width e margin: auto da regra 'section' APENAS para o #footer */
#footer.container, /* Caso a classe container seja adicionada ao footer */
#footer {
    max-width: none; /* Garante que o footer seja full-width */
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px; /* Adiciona padding laterais diretamente */
    padding-right: 20px;
    border-radius: 0; /* Footer geralmente não é arredondado se for full-width */
}

.footer-container { /* Este container interno é que vai centralizar o conteúdo do footer */
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; Não precisa, pois #footer já tem */
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #34495e;
    margin-bottom: 20px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-logo {
    font-size: 1.8rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.footer-logo strong {
    color: #9ad1b9;
    font-weight: bold;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 350px;
}

.footer-social-media a {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s, transform 0.2s;
}
.footer-social-media a:hover {
    color: #fff;
    transform: scale(1.05);
}

.footer-social-media .social-emoji {
    font-size: 1.5rem;
    margin-right: 6px;
    line-height: 1;
}

.footer-col h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #27846a;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}
.footer-contact .contact-icon {
    margin-right: 10px;
    color: #9ad1b9;
    font-size: 1.1rem;
    min-width: 20px;
}
.footer-contact a {
    color: #adb5bd;
    text-decoration: none;
}
.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
}
.footer-bottom p {
    margin: 5px 0;
}
.footer-optional-links a {
    color: #adb5bd;
    text-decoration: none;
    margin: 0 5px;
}
.footer-optional-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsividade do Rodapé */
@media (max-width: 992px) {
    .footer-col {
        flex-basis: calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }
    .footer-col {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    .footer-about p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact p {
        justify-content: center;
    }
    .footer-social-media {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .footer-social-media a {
        margin-right: 0;
    }
    .footer-bottom {
        /* flex-direction: column; Não é necessário, os <p> já são block */
    }
}

/* Regra para arredondar seções específicas (manter esta regra, pois ela sobrepõe a geral se necessário) */
/* As seções já têm max-width: 1200px e margin: 0 auto pela regra global 'section' */
/* #beneficios e #servicos já têm border-radius aplicados individualmente */
/* #faq já tem border-radius aplicado individualmente */

/* Aplicando border-radius a seções adicionais que são blocos centrados e têm fundo distinto */
#metricas,
#preco,
#galeria, /* Assumindo que #galeria agora tem fundo #fff */
#contato {
    border-radius: 24px;
}

/* O #hero tem seu próprio border-radius no .hero-slider (apenas na base) */
/* O header é sticky e full-width, então não aplicamos border-radius global nele */