/* ==========================================================================
   HERO SECTION (Base Chapada por trás da Top Bar e Header)
   ========================================================================== */
.hero_bg_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    /* Adiciona transição suave de opacidade */
    transition: opacity 1.2s ease-in-out;
    opacity: 1;
}

/* Classe aplicada via JS quando o vídeo termina */
.hero_bg_video.fade-out {
    opacity: 0;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-verde-escuro);

    /* === A MÁGICA ESTÁ AQUI === */
    /* Puxa a Hero para o topo, atrás do Header (70px) e Top Bar (30px) */
    margin-top: -100px;

    /* Empurra o CONTEÚDO (texto/botoes) para baixo, para não colidir */
    padding-top: 100px;
    /* ========================== */

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero_container {
    width: 100%;
    max-width: 1600px;
    padding: 40px 20px 40px 20px;
    position: relative;
    z-index: 20;
    /* Maior que a floresta (1) e o noise (10) */
}

.hero_content {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    /* Vamos controlar o espaçamento individualmente para precisão */
}

/* --- Camada 1: Imagem da Floresta + Máscara de Leitura --- */
.hero_bg_floresta {
    position: absolute;
    inset: 0;
    background-image: url('../assets/img/HERO_BG.webp');
    /* Ajuste o caminho se necessário */
    background-size: cover;
    background-position: center right;
    z-index: 1;

    /* Máscara em ângulo (110deg) + Fade inferior pra matar a quina reta */
    -webkit-mask-image:
        linear-gradient(110deg, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.4) 55%, #000 75%),
        linear-gradient(to top, transparent 0%, #000 25%);
    -webkit-mask-composite: source-in;

    mask-image:
        linear-gradient(110deg, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.4) 55%, #000 75%),
        linear-gradient(to top, transparent 0%, #000 25%);
    mask-composite: intersect;
}

.hero_bg_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* --- Camada 1.5: Poeira / Partículas nos Raios de Luz --- */
.hero_particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    /* Fica sobre a floresta e sob o ruído */
    overflow: hidden;
}

.hero_particles span {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 12s infinite linear;
}

/* Distribuição aleatória e variação de tamanhos/posições */
.hero_particles span:nth-child(1) {
    left: 55%;
    top: 80%;
    width: 3px;
    height: 3px;
    animation-duration: 14s;
    animation-delay: 0s;
}

.hero_particles span:nth-child(2) {
    left: 65%;
    top: 90%;
    width: 4px;
    height: 4px;
    animation-duration: 18s;
    animation-delay: 2s;
}

.hero_particles span:nth-child(3) {
    left: 75%;
    top: 70%;
    width: 2px;
    height: 2px;
    animation-duration: 11s;
    animation-delay: 4s;
}

.hero_particles span:nth-child(4) {
    left: 85%;
    top: 85%;
    width: 5px;
    height: 5px;
    animation-duration: 16s;
    animation-delay: 1s;
}

.hero_particles span:nth-child(5) {
    left: 50%;
    top: 60%;
    width: 3px;
    height: 3px;
    animation-duration: 20s;
    animation-delay: 5s;
}

.hero_particles span:nth-child(6) {
    left: 60%;
    top: 75%;
    width: 2px;
    height: 2px;
    animation-duration: 13s;
    animation-delay: 3s;
}

.hero_particles span:nth-child(7) {
    left: 70%;
    top: 85%;
    width: 4px;
    height: 4px;
    animation-duration: 15s;
    animation-delay: 7s;
}

.hero_particles span:nth-child(8) {
    left: 80%;
    top: 65%;
    width: 3px;
    height: 3px;
    animation-duration: 19s;
    animation-delay: 6s;
}

.hero_particles span:nth-child(9) {
    left: 90%;
    top: 95%;
    width: 2px;
    height: 2px;
    animation-duration: 12s;
    animation-delay: 8s;
}

.hero_particles span:nth-child(10) {
    left: 58%;
    top: 82%;
    width: 3px;
    height: 3px;
    animation-duration: 17s;
    animation-delay: 2s;
}

/* Animação que simula as partículas subindo e derivando na luz */
@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translateY(-120px) translateX(-40px);
        /* Deriva na diagonal acompanhando a luz do sol */
    }
}


/* --- Camada 2: Textura de Noise (Overlay) --- */
.hero_bg_noise {
    position: absolute;
    inset: 0;
    background-image: url('../assets/img/NOISE.webp');
    background-repeat: repeat;
    background-size: auto;
    mix-blend-mode: overlay;
    /* Ou multiply se a textura for clara */
    pointer-events: none;
    z-index: 10;
    /* Sempre no topo de todo o background */
}

/* --- Badge Oficial (Fundo Escuro Translúcido + Borda Sutil) --- */
.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    background-color: rgba(0, 20, 10, 0.45);
    /* Verde escuro profundo e translúcido */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Linha refinada de 1px */
    border-radius: 6px;
    /* Cantos levemente arredondados idênticos ao layout do PS */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 80px;
    /* Respiro entre a Badge e o H1 */
}

/* Ícone de Escudo em SVG */
.hero_badge_icon {
    width: 16px;
    height: 16px;
    fill: #04f504;
    /* Verde neon aceso combinando com os detalhes da marca */
    flex-shrink: 0;
}

/* Texto da Badge */
.hero_badge_text {
    font-size: 0.6rem;
    /* ~13px */
    font-weight: 400;
    color: var(--color-offwhite);
    letter-spacing: 0.08em;
    /* Espaçamento refinado em caixa alta */
    text-transform: uppercase;
}

/* --- Título Principal (H1) --- */
.hero_title {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 4.2vw, 3.5rem);
    /* Fonte fluída para encaixar no layout */
    font-weight: 700;
    /* Black (Poppins) */
    color: var(--color-offwhite);
    line-height: 1.22;
    letter-spacing: -0.02em;
    max-width: 1100px;
    /* Garante o alinhamento com a guia do PS */
    margin-bottom: 28px;

    /* Drop Shadow sutil em camadas */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6),
        0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Destaque: "proteger e regularizar" (Playfair Display Bold Italic + Marrom Claro) */
.hero_title_highlight {
    font-family: var(--font-title);
    /* Playfair Display */
    font-weight: 700;
    font-style: italic;
    color: var(--color-marrom-claro);
    /* #deb790 */

    /* Mantém a mesma sombra para consistência */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6),
        0 2px 6px rgba(0, 0, 0, 0.4);
}

/* --- Subtítulo / Descrição da Hero --- */
.hero_subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.125rem, 1.8vw, 1.55rem);
    /* ~15px a 17px */
    font-weight: 400;
    /* Regular */
    color: var(--color-offwhite);
    line-height: 1.6;
    max-width: 1000px;
    margin-bottom: 40px;
    opacity: 0.9;
    /* Leve suavização para dar hierarquia em relação ao H1 */

    /* Drop Shadow sutil para garantir legibilidade sobre a imagem */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7),
        0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Palavras em Negrito dentro do Subtítulo */
.hero_subtitle strong {
    font-weight: 700;
    color: var(--color-branco-puro);
    /* Ganha um leve destaque em relação ao offwhite */
}

/* --- Container dos Botões de Ação --- */
.hero_actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
}


/* ==========================================================================
   ABOUT SECTION - BACKGROUND & ATMOSPHERE
   ========================================================================== */
.about {
    position: relative;
    width: 100%;
    padding: 120px 0;
    min-height: 100vh;
    /* Fundo base quase preto/verde bem escuro */
    background-color: #06180a;

    /* Gradientes radiais focados com opacidade menor e transição rápida para o tom escuro */
    background-image:
        radial-gradient(circle at 25% 55%, rgba(15, 219, 76, 0.068) 0%, rgba(3, 8, 4, 0) 25%),
        radial-gradient(circle at 95% 10%, rgba(15, 219, 76, 0.075) 0%, rgba(3, 8, 4, 0) 25%);
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Se o noise estiver clareando a tela, ajuste a opacidade dele na seção */
.about .hero_bg_noise {
    opacity: 0.85;
    /* Aumentamos para destacar o grão */
    mix-blend-mode: soft-light;
    /* Preserva o tom escuro enquanto acentua a textura */
    pointer-events: none;
}

/* Container responsivo centralizado */
.about_container {
    width: 100%;
    max-width: 1600px;
    /* Ou a largura máxima padrão do seu layout */
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Grid Principal em 2 Colunas Lado a Lado */
.about_grid {
    display: grid;
    grid-template-columns: 383px 1fr;
    /* Coluna 1 cravada no tamanho da foto (383px), Coluna 2 ocupa o resto */
    gap: 64px;
    /* Espaçamento horizontal entre as duas colunas */
    align-items: start;
    /* Alinha o topo da mídia com o topo do texto */
}

/* Container da Mídia */
/* Container Geral da Esquerda */
/* Container de mídia da esquerda */
.about_media {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 383px;
    /* Largura exata da camada no PS */
}

/* Card da Foto Principal (Wrapper com Position Relative para as Badges) */
.about_main_photo_card {
    position: relative;
    width: 100%;
    border-radius: 16px;

    /* Stroke 1px cor --color-marrom-claro com 60% de opacidade */
    border: 1px solid color-mix(in srgb, var(--color-marrom-claro) 60%, transparent);

    /* Drop Shadow idêntico ao Photoshop (Multiply 60%, 129°, Dist 15px, Size 51px) */
    box-shadow: -9px 12px 51px rgba(0, 0, 0, 0.6);

    /* Garante que o raio de 16px corte os cantos da imagem interna */
    overflow: visible;
}

/* A Imagem em si */
.about_main_photo_img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    /* Ligeiramente menor que o card para casar com o border de 1px */
    object-fit: cover;
}

/* Badge Vertical "10+ Anos de Atuação" */
.about_badge_exp {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 3;

    /* Fundo verde claro com 68% de opacidade */
    background-color: color-mix(in srgb, var(--color-verde-claro) 60%, transparent);

    /* Borda/Stroke de 1px branco com 60% de opacidade */
    border: 1px solid rgba(255, 255, 255, 0.5);

    /* Arredondamento exato de 5px */
    border-radius: 5px;

    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    /* Drop shadow sutil no bloco e no texto */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.about_badge_num {
    font-size: 2.2rem;
    font-weight: 700;
    /* Bold */
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Drop shadow sutil no texto */
}

.about_badge_txt {
    font-size: 0.8rem;
    font-weight: 400;
    /* Regular */
    color: #ffffff;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    /* Drop shadow sutil no texto */
}

/* Tag de Nome Centralizada Embaixo (Vazando Borda Inferior) */
.about_name_tag {
    position: absolute;
    bottom: -12px;
    right: -12px;
    /* Afastada do canto direito */
    left: auto;
    transform: none;
    /* Remove a centralização */
    z-index: 3;

    background-color: color-mix(in srgb, var(--color-verde-claro) 68%, transparent);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    padding: 6px 16px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about_name_tag span {
    font-size: 0.85rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Thumbs de Baixo */
/* Grid de Thumbs com Desalinhamento */
.about_thumbs_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    align-items: flex-start;
    /* Permite que cada thumb tenha seu próprio alinhamento vertical */
}

.about_thumbs_grid div {
    overflow: hidden;
    border-radius: 16px;
}

/* Estilo Individual das Thumbs */
.about_thumb_img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    /* Mantém a proporção exata do PSD */
    object-fit: cover;
    display: block;
    border-radius: 16px;

    /* Stroke 1px cor --color-marrom-claro com 60% de opacidade */
    border: 1px solid color-mix(in srgb, var(--color-marrom-claro) 60%, transparent);

    /* Drop Shadow idêntico ao Photoshop (Multiply 60%, 129°, Dist 15px, Size 51px) */
    box-shadow: -9px 12px 51px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.about_thumb_img:hover {
    transform: scale(1.05) !important;
    /* Discreto zoom interno */
}

/* Deslocamento Vertical da Segunda Thumb (Análise/Exército) */
.about_thumbs_grid .about_thumb_img:nth-child(2) {
    transform: translateY(28px);
    /* Empurra a segunda foto para baixo exatamente como no PS */
}

.about_tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    /* Fundo verde claro da root com 20% de opacidade */
    background-color: color-mix(in srgb, var(--color-verde-claro) 20%, transparent);

    /* Stroke de 1px do bege mais claro da root com 60% de opacidade */
    border: 1px solid color-mix(in srgb, var(--color-bege-claro, #f5f2eb) 10%, transparent);
    padding: 6px 14px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.about_tag_icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.about_tag:hover {
    border-color: var(--color-bege-claro);
    background-color: color-mix(in srgb, var(--color-verde-claro) 35%, transparent);
}

.about_tag:hover .about_tag_icon {
    transform: translateY(-2px) rotate(-5deg);
}

.about_tag span {
    font-size: 0.75rem;
    font-weight: 400;
    /* Regular */
    color: var(--color-bege-claro, #f5f2eb);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.about_tag span strong {
    font-weight: 700;
    /* Negrito em MANTIQUEIRA ENGENHARIA */
}

/* Ajuste Fino para a Coluna de Conteúdo */
.about_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about_title {
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--color-offwhite);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* Destaque em Playfair Display Itálico + Bege Claro */
.about_title_display {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 700;
    color: var(--color-marrom-claro);
    text-transform: uppercase;
}

.about_lead {
    font-size: 1.125rem;
    /* ~18px no desktop para destacar do corpo */
    font-weight: 700;
    /* Bold */
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.about_text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Espaçamento entre os parágrafos */
    margin-bottom: 32px;
}

.about_text p {
    font-size: 0.95rem;
    /* ~15px */
    font-weight: 400;
    color: var(--color-offwhite);
    /* Ligeiramente suavizado do branco puro */
    line-height: 1.7;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.about_text p strong {
    font-weight: 700;
    color: var(--color-offwhite);
    /* O negrito ganha destaque em branco puro */
    transition: color 0.3s ease;
}

/* No hover do parágrafo, acendemos a cor sem alterar a opacidade do elemento (evita conflito com GSAP) */
.about_text p:hover {
    color: var(--color-offwhite);
    /* Texto normal fica branco puro ao passar o mouse */
}

.about_text p:hover strong {
    color: var(--color-marrom-claro);
    /* O negrito acende no bege claro */
}

.about_feature_pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    /* Background #0a1f18 com 60% de opacidade */
    background-color: rgba(10, 31, 24, 0.6);

    /* Borda de 1px com 60% da cor --color-marrom-claro */
    border: 1px solid color-mix(in srgb, var(--color-marrom-claro) 60%, transparent);

    /* Arredondamento exato de 20px */
    border-radius: 20px;

    padding: 8px 18px;
    margin-top: 8px;
}

.about_pill_icon {
    width: 30px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.about_feature_pill span {
    font-size: 0.8rem;
    font-weight: 400;
    /* Regular */
    color: var(--color-bege-claro, #f5f2eb);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Prepara os elementos da coluna da direita e mídia para a entrada suave */
.about_media,
.about_tag,
.about_title,
.about_lead,
.about_text p,
.about_feature_pill {
    will-change: transform, opacity;
}

/* ==========================================================================
   LIGHTBOX MODAL (100% Isolado)
   ========================================================================== */
.about_thumb_img {
    cursor: pointer;
}

.about_lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.about_lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.about_lightbox_backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 8, 4, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about_lightbox_content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.about_lightbox.active .about_lightbox_content {
    transform: scale(1);
}

.about_lightbox_content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--color-marrom-claro) 60%, transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.about_lightbox_close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
}

/* SOLUÇÕES */
.solucoes {
    position: relative;
    width: 100%;
    background-color: var(--color-verde-escuro);
    overflow: hidden;
    padding: 120px 0;
    min-height: 100vh;
}

.solucoes_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.solucoes_bg_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    display: block;
}

.solucoes_bg_overlay_radial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%,
            var(--color-verde-claro) 0%,
            transparent 50%);
    opacity: 0.6;
}

.solucoes_bg_overlay_linear {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom,
            #000000 0%,
            transparent 100%);
}

.solucoes_container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.solucoes_header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
}

.solucoes_tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    /* Fundo verde claro da root com 20% de opacidade */
    background-color: color-mix(in srgb, var(--color-verde-claro) 20%, transparent);

    /* Stroke de 1px do bege mais claro da root com 60% de opacidade */
    border: 1px solid color-mix(in srgb, var(--color-bege-claro, #f5f2eb) 10%, transparent);
    padding: 6px 14px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.solucoes_tag_icon {
    width: 31px;
    height: 13px;
    object-fit: contain;
    display: block;
}

.solucoes_tag_text {
    font-size: 0.75rem;
    font-weight: 400;
    /* Regular */
    color: var(--color-bege-claro, #f5f2eb);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.solucoes_tag_text span {
    font-weight: 700;
}

.solucoes_title {
    font-size: 2.5rem;
    /* 40px */
    font-weight: 400;
    color: var(--color-offwhite);
    line-height: 1.2;
    margin: 0;
}

.solucoes_title em {
    font-family: var(--font-title);
    font-style: normal;
    color: var(--color-marrom-claro);
}

.solucoes_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    width: 100%;
}

/* Primeira linha: 2 cards (cada um ocupa 3 colunas) */
.solucoes_card:nth-child(1),
.solucoes_card:nth-child(2) {
    grid-column: span 3;
}

/* Segunda linha: 3 cards (cada um ocupa 2 colunas) */
.solucoes_card:nth-child(3),
.solucoes_card:nth-child(4),
.solucoes_card:nth-child(5) {
    grid-column: span 2;
}

.solucoes_card {
    background-color: rgba(8, 23, 17, 0.8);
    border: 1px solid color-mix(in srgb, var(--color-marrom-claro) 60%, transparent);
    border-radius: 16px;
    padding: 32px;
    box-shadow: -9px 12px 51px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.3s ease, transform 0.3s ease,
        transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.3s ease;
}

.solucoes_card:hover {
    transform: translateY(-6px);
    border-color: var(--color-marrom-claro);
    box-shadow: -9px 18px 60px rgba(0, 0, 0, 0.75);
}

.solucoes_card_header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.solucoes_card_icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.solucoes_card_title {
    font-size: 1.25rem;
    /* 20px */
    font-weight: 700;
    color: var(--color-offwhite);
    line-height: 1.3;
    margin: 0;
}

.solucoes_card_text {
    font-size: 1rem;
    /* 16px */
    font-weight: 400;
    color: var(--color-offwhite);
    line-height: 1.5;
    margin-bottom: 32px;
}

.solucoes_card_text strong {
    font-weight: 700;
}

.solucoes_card_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    /* 14px */
    font-weight: 400;
    color: var(--color-marrom-claro);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.solucoes_card_btn_icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Interação do Hover */
.solucoes_card_btn:hover {
    opacity: 0.75;
}

.solucoes_card_btn:hover .solucoes_card_btn_icon {
    transform: rotate(45deg);
}

/* Estado base para animação via JS */
.solucoes_tag,
.solucoes_title,
.solucoes_card {
    will-change: transform, opacity;
}


/* SETORES */
.setores {
    position: relative;
    width: 100%;
    padding: 120px 0;
    min-height: 100vh;
    /* Fundo base quase preto/verde bem escuro */
    background-color: #06180a;

    /* Gradientes radiais focados com opacidade menor e transição rápida para o tom escuro */
    background-image:
        radial-gradient(circle at 25% 55%, rgba(15, 219, 76, 0.068) 0%, rgba(3, 8, 4, 0) 25%),
        radial-gradient(circle at 95% 10%, rgba(15, 219, 76, 0.075) 0%, rgba(3, 8, 4, 0) 25%);
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Ajuste de opacidade e blend mode do noise para a seção */
.setores .hero_bg_noise {
    opacity: 0.85;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.setores_container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 64px;
    align-items: center;
}

.setores_content {
    flex: 0 0 calc(65% - 41.6px);
    max-width: calc(65% - 41.6px);
    width: 100%;
}

.setores_tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background-color: color-mix(in srgb, var(--color-verde-claro) 20%, transparent);
    /* --color-verde-claro com 20% opacity */
    border: 1px solid color-mix(in srgb, var(--color-marrom-claro) 40%, transparent);
    /* --color-marrom-claro com 60% opacity */
    border-radius: 0;
    width: fit-content;
    cursor: text;
    transition: border-color 0.3s ease;
}

.setores_tag_icon {
    width: 14px;
    height: 17px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.setores_tag_text {
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--color-offwhite);
    text-transform: uppercase;
    font-weight: 400;
}

.setores_tag_text strong {
    font-weight: 700;
}

/* Micro-interação Hover */
.setores_tag:hover {
    border-color: #FFFFFF;
}

.setores_tag:hover .setores_tag_icon {
    transform: translateY(-2px) rotate(-8deg);
}

.setores_title {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.25;
    color: var(--color-offwhite);
    margin-top: 24px;
    margin-bottom: 48px;
    text-transform: none;
}

.setores_title span {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 700;
    color: var(--color-marrom-claro);
}

.setores_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Respiro vertical entre cada bloco numerado */
    width: 100%;
}

.setores_item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    width: 100%;
    cursor: text;
}

.setores_item_number {
    font-family: var(--font-title);
    font-weight: 400;
    font-style: normal;
    font-size: 104px;
    line-height: 0.3;
    color: color-mix(in srgb, var(--color-marrom-claro) 40%, transparent);
    user-select: none;
    transition: color 0.3s ease;
    /* Transição suave na cor/opacidade */
}

/* Micro-interação: Hover no item pai afeta o número */
.setores_item:hover .setores_item_number {
    color: var(--color-marrom-claro);
    /* Vai para 100% de opacidade */
}

.setores_item_info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.setores_item_title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-offwhite);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.setores_item_text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-offwhite);
}

.setores_item_text+.setores_item_text {
    margin-top: 4px;
}

.setores_media {
    flex: 0 0 calc(35% - 22.4px);
    max-width: calc(35% - 22.4px);
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

/* Wrapper que trava o tamanho exato da imagem */
.setores_media_wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 594px;
}

/* Imagem principal */
.setores_media_img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border: 1px solid color-mix(in srgb, var(--color-offwhite) 60%, transparent);
    filter: drop-shadow(-4px 4px 10px rgba(0, 0, 0, 0.5));
}

/* Card flutuante */
.setores_card {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 3;
    padding: 12px 18px;
    background-color: color-mix(in srgb, var(--color-verde-claro) 60%, transparent);
    border: 1px solid color-mix(in srgb, var(--color-offwhite) 60%, transparent);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    filter: drop-shadow(-4px 4px 10px rgba(0, 0, 0, 0.5));
}

.setores_card_number {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    color: var(--color-offwhite);
}

.setores_card_text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    color: var(--color-offwhite);
}

/* CONTATO */
.contato {
    position: relative;
    width: 100%;
    padding: 120px 0;
    min-height: 50vh;
    /* Fundo base quase preto/verde bem escuro */
    background-color: #06180a;

    /* Gradientes radiais focados com opacidade menor e transição rápida para o tom escuro */
    background-image:
        radial-gradient(circle at 25% 55%, rgba(15, 219, 76, 0.068) 0%, rgba(3, 8, 4, 0) 25%),
        radial-gradient(circle at 95% 10%, rgba(15, 219, 76, 0.075) 0%, rgba(3, 8, 4, 0) 25%);
    background-repeat: no-repeat;
    overflow: hidden;
}

.contato_container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Card Container */
.contato_card {
    width: 100%;
    background-color: color-mix(in srgb, #000a05 50%, transparent);
    border: 1px solid color-mix(in srgb, var(--color-offwhite) 60%, transparent);
    border-radius: 24px;
    filter: drop-shadow(-4px 4px 10px rgba(0, 0, 0, 0.5));
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Wrapper para centralizar a Badge no topo */
.contato_tag_wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 48px;
    /* Espaço entre a badge e o grid */
}

/* Tag / Badge */
.contato_tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background-color: color-mix(in srgb, var(--color-verde-claro) 20%, transparent);
    border: 1px solid color-mix(in srgb, var(--color-marrom-claro) 40%, transparent);
    border-radius: 0;
    width: fit-content;
    cursor: text;
    transition: border-color 0.3s ease;
}

.contato_tag:hover {
    border-color: #FFFFFF;
}

/* Ícone da Tag */
.contato_tag_icon {
    width: 17px;
    height: 17px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.contato_tag:hover .contato_tag_icon {
    transform: translateY(-2px) rotate(-8deg);
}

/* Texto da Tag */
.contato_tag_text {
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--color-offwhite);
    text-transform: uppercase;
    font-weight: 400;
}

/* Grid Interna do Card */
.contato_grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

/* Coluna Esquerda */
.contato_col_left {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
}

/* Título */
.contato_title {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.25;
    color: var(--color-offwhite);
    margin-top: 0;
    margin-bottom: 48px;
    text-transform: none;
}

.contato_title_highlight {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 700;
    color: var(--color-marrom-claro);
}

.contato_description {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
    /* ou 1.636 */
    color: var(--color-offwhite);
}

.contato_divider {
    width: 1px;
    align-self: stretch;
    background-color: color-mix(in srgb, var(--color-marrom-claro) 60%, transparent);
}

/* Coluna Direita */
.contato_col_right {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
}

/* Subtítulo */
.contato_subtitle {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-offwhite);
    margin-top: 0;
    margin-bottom: 32px;
}

/* Lista de Passos */
.contato_steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contato_steps li {
    display: flex;
    gap: 12px;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-offwhite);
}

.step_num {
    font-weight: 700;
}

.step_text {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--color-offwhite);
}

/* Destaque em negrito na mesma linha */
.step_highlight {
    font-weight: 700;
    color: var(--color-offwhite);
}

/* Nota na linha de baixo (*SEM CUSTO E SEM COMPROMISSO) */
.step_note {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-marrom-claro);
    margin-top: 4px;
}

/* Container para centralizar o botão */
.contato_btn_wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 64px;
}

/* Botão Estilizado */
.contato_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background-color: var(--color-marrom-claro);
    color: var(--color-verde-escuro);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast);
}

/* Ícone de Seta SVG */
.contato_btn .contato_btn_icon {
    width: 16px;
    height: 16px;
    stroke: var(--color-verde-escuro);
    transition: transform var(--transition-smooth);
}

/* Micro-Interação: Varredura de Brilho Translúcido (Shimmer Hover) */
.contato_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

/* Hover e Active */
.contato_btn:hover {
    transform: translateY(-3px);
    background-color: #e5c3a0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(222, 183, 144, 0.3);
}

.contato_btn:hover .contato_btn_icon {
    transform: rotate(45deg);
}

.contato_btn:hover::before {
    left: 140%;
}

.contato_btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ */
.faq {
    position: relative;
    width: 100%;
    background-color: var(--color-verde-escuro);
    padding: 120px 0;
}

.faq_container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Wrapper para centralização */
.faq_tag_wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 48px;
}

/* Badge / Tag */
.faq_tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background-color: color-mix(in srgb, var(--color-verde-claro) 20%, transparent);
    border: 1px solid color-mix(in srgb, var(--color-marrom-claro) 40%, transparent);
    border-radius: 0;
    width: fit-content;
    cursor: text;
    transition: border-color 0.3s ease;
}

.faq_tag_icon {
    width: 18px;
    height: 17px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.faq_tag_text {
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--color-offwhite);
    text-transform: uppercase;
    font-weight: 400;
}

/* Hover State */
.faq_tag:hover {
    border-color: #FFFFFF;
}

.faq_tag:hover .faq_tag_icon {
    transform: translateY(-2px) rotate(-8deg);
}

/* Container da Lista */
.faq_list {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Base do Item */
.faq_item {
    width: 100%;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Estado Aberto */
.faq_item.faq_item_active {
    background-color: var(--color-verde-claro);
    border-color: color-mix(in srgb, var(--color-marrom-claro) 60%, transparent);
}

/* Botão da Pergunta */
.faq_question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--color-offwhite);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

/* Ícone + / X */
.faq_icon {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq_item.faq_item_active .faq_icon {
    transform: rotate(45deg);
    /* Gira o + em 45º para virar um X */
}

/* Container de Resposta com Transição Suave */
.faq_answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.3s ease-in-out,
        padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0 24px;
    overflow: hidden;
}

.faq_item.faq_item_active .faq_answer {
    grid-template-rows: 1fr;
    opacity: 1;
    padding: 0 24px 20px 24px;
}

/* Texto da Resposta com Efeito de Revelação (Slide + Fade) */
.faq_answer_text {
    min-height: 0;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-offwhite);
    margin: 0;
    transform: translateY(-8px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq_item.faq_item_active .faq_answer_text {
    transform: translateY(0);
}




/* 1. Laptops / Screens menores e Tablet Landscape (<= 1199px) */
@media (max-width: 1199px) {
    .about_grid {
        grid-template-columns: 320px 1fr;
        /* Suave redução na foto principal */
        gap: 40px;
        /* Reduz o espaço entre colunas */
    }

    .about_media {
        max-width: 320px;
    }

    /* Traz as badges para dentro pra não estourarem no viewport */
    .about_badge_exp {
        top: -12px;
        left: -10px;
        padding: 10px 14px;
    }

    .about_badge_num {
        font-size: 1.8rem;
    }

    .about_name_tag {
        bottom: -10px;
        right: -8px;
    }

    .about_title {
        font-size: 1.85rem;
    }
}

/* --- BREAKPOINT TABLET LANDSCAPE / LAPTOP (<= 1024px) --- */
@media (max-width: 1024px) {
    .solucoes_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solucoes_card:nth-child(1),
    .solucoes_card:nth-child(2),
    .solucoes_card:nth-child(3),
    .solucoes_card:nth-child(4) {
        grid-column: span 1;
    }

    /* O 5º card ocupa as 2 colunas para ficar centralizado embaixo */
    .solucoes_card:nth-child(5) {
        grid-column: span 2;
    }

    /* SETORES */
    .setores_container {
        flex-direction: column;
        gap: 48px;
    }

    .setores_content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .setores_media {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
    }

    .setores_media_wrapper {
        max-width: 480px;
        /* Limita a imagem no tablet/mobile */
    }

    .setores_card {
        top: -16px;
        left: 12px;
        /* Ajuste para não cortar na borda da tela em telas menores */
    }
}


/* 2. Tablets Verticais e Dispositivos Móveis (<= 991px) */
@media (max-width: 991px) {
    .about_grid {
        grid-template-columns: 1fr;
        /* Quebra para 1 única coluna */
        gap: 48px;
    }

    .about_media {
        max-width: 380px;
        /* Trava uma largura legal e centraliza */
        margin: 0 auto;
    }

    .about_content {
        align-items: flex-start;
    }

    /* Remove o offset exagerado das thumbs para não colidir com o texto abaixo */
    .about_thumbs_grid .about_thumb_img:nth-child(2) {
        transform: translateY(16px);
    }
}


/* --- BREAKPOINT TABLET PORTRAIT / MOBILE (<= 768px) --- */
@media (max-width: 768px) {
    .solucoes_grid {
        grid-template-columns: 1fr;
    }

    .solucoes_card:nth-child(n) {
        grid-column: span 1;
    }

    /* CONTATO */
    .contato_card {
        padding: 32px 20px;
    }

    .contato_grid {
        flex-direction: column;
        gap: 32px;
    }

    .contato_col_left,
    .contato_col_right {
        max-width: 100%;
    }

    /* Esconde a linha vertical e vira uma linha horizontal */
    .contato_divider {
        width: 100%;
        height: 1px;
        background-color: color-mix(in srgb, var(--color-marrom-claro) 60%, transparent);
    }

    .contato_title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .contato_description {
        font-size: 18px;
        line-height: 1.5;
    }

    .contato_btn_wrapper {
        margin-top: 40px;
    }

}


/* 3. Smartphones (<= 576px) */
@media (max-width: 576px) {
    .about_container {
        padding: 0 16px;
    }

    .about_media {
        max-width: 100%;
    }

    /* Zera os vazados para não estourar a tela do celular */
    .about_badge_exp {
        top: -10px;
        left: 0;
    }

    .about_name_tag {
        bottom: -10px;
        right: 0;
    }

    .about_title {
        font-size: 1.5rem;
    }

    .about_lead {
        font-size: 1rem;
    }

    .about_text p {
        font-size: 0.9rem;
    }

    .about_feature_pill {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }
}


/* ==========================================================================
   RESPONSIVO MOBILE (<= 480px)
   ========================================================================== */
@media (max-width: 480px) {

    /* 1. Redução de paddings do container */
    .hero {
        min-height: auto;
        /* Deixa o conteúdo definir a altura naturalmente no mobile */
        padding-top: 30px;
        /* Dá o espaço necessário abaixo do Header mobile */
        padding-bottom: 30px;
        /* Respiro confortável no fim da Hero */
    }

    .hero_container {
        padding: 70px 16px 20px 16px;
    }

    /* 2. Ajuste na Badge */
    .hero_badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        /* ~12px */
        margin-bottom: 60px;
    }

    /* 3. Ajuste no Título (H1) */
    .hero_title {
        font-size: 1.85rem;
        /* Tamanho cravado para mobile */
        line-height: 1.25;
        margin-bottom: 40px;
    }

    /* 4. Subtítulo */
    .hero_subtitle {
        font-size: 0.95rem;
        /* ~15px */
        line-height: 1.5;
        margin-bottom: 28px;
    }

    /* 5. Empilhamento dos Botões */
    .hero_actions {
        flex-direction: column;
        align-items: stretch;
        /* Faz os botões ocuparem a largura total se desejado */
        gap: 16px;
        width: 100%;
    }

    /* SETORES */
    .setores_item {
        flex-direction: column;
        gap: 12px;
    }

    .setores_item_number {
        font-size: 72px;
        /* Reduz levemente para não tomar a tela inteira */
        line-height: 1;
        margin-top: 0;
        /* Reseta o offset negativo do desktop */
    }

    .setores_list {
        gap: 32px;
        /* Espaçamento ajustado entre cada bloco no mobile */
    }
}