/* =========================================
   1. RESET E CONFIGURAÇÕES GERAIS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Trava rolagem horizontal no HTML inteiro */
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    padding-top: 85px; /* Compensa o menu fixo novo */
    overflow-x: hidden; /* Trava rolagem horizontal no Body */
    width: 100%;
    max-width: 100vw;
}

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

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

img, svg, canvas {
    max-width: 100% !important;
    height: auto;
}

/* =========================================
   2. CABEÇALHO E NAVEGAÇÃO (NOVO ESTILO)
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: transform .4s ease;
}

.main-header.hide {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1400px;
    height: 100px; /* Aumentado para acomodar o logo maior */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 85px; /* Logo bem maior e mais imponente */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05); /* Pequeno charme ao passar o mouse no logo */
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px; /* Mais espaço para o risco não bater no botão do lado */
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0; /* Removido o estilo de 'pílula' */
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative; /* Necessário para o risco laranja funcionar */
}

/* O risco laranja escondido */
.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0; /* Começa com 0 de largura */
    height: 3px; /* Espessura do risco */
    bottom: -4px; /* Distância do risco para a palavra */
    left: 0;
    background-color: #F58220;
    transition: width 0.3s ease; /* Faz o risco deslizar suavemente */
}

/* O risco cresce e o texto pinta de laranja ao passar o mouse */
.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #F58220; 
}

/* Estilo das Novas Bandeiras */
.language-selector {
    display: flex;
    gap: 15px;
    align-items: center;
}

.language-selector a {
    text-decoration: none;
    font-size: 24px; /* Tamanho da bandeira */
    transition: all 0.2s;
    display: inline-block;
    line-height: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* Sombreado elegante */
}

.language-selector a:hover {
    transform: scale(1.15) translateY(-2px); /* Bandeira sobe um pouco */
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

/* =========================================
   3. HERO SECTION (CAPA PREMIUM)
   ========================================= */
.hero-section {
    position: relative;
    height: calc(100vh - 85px); /* Ocupa exatamente 100% da tela do usuário */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinha o conteúdo à esquerda */
    overflow: hidden; 
}

/* Configuração da Imagem de Fundo */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* A mágica para a imagem preencher tudo sem distorcer */
    z-index: 1;
}

/* A película escura (Degradê: mais escuro na esquerda onde fica o texto) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 17, 21, 0.9) 0%, rgba(15, 17, 21, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3; /* Garante que o texto fique acima da imagem e da película */
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-text {
    max-width: 800px;
}

.hero-quote {
    font-size: 3.8rem; /* Letra imponente */
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-quote strong {
    font-weight: 900;
    color: #F58220; /* Laranja da marca */
}

.hero-author {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* O traço laranja de design antes do nome do Mandela */
.hero-author::before {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #F58220;
}
/* =========================================
   4. GRIDS (SERVIÇOS E IMPRENSA)
   ========================================= */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 950px; /* Mantém o texto num tamanho ideal para leitura */
    margin: 0 auto;
}

.service-row {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 4px solid #eaeaea; /* Borda cinza neutra padrão */
    transition: all 0.4s ease;
}

.service-row:hover {
    border-left: 6px solid #F58220; /* Borda laranja grossa ao passar o mouse */
    transform: translateX(10px); /* O bloco dá um passo elegante para a direita */
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.service-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #F58220;
    opacity: 0.8; /* Número fica como uma "marca d'água" suave */
    margin-right: 35px;
    line-height: 1;
    transition: all 0.4s ease;
}

.service-row:hover .service-number {
    opacity: 1; /* O número acende forte quando passa o mouse */
}

.service-info h3 {
    font-size: 1.35rem;
    color: #111;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.service-info p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* Mantendo a configuração da Imprensa intacta */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.press-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    text-align: left;
    transition: transform 0.3s;
    border-radius: 12px;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.press-source {
    font-size: 0.8rem;
    color: #484646;
    text-transform: uppercase;
}
/* =========================================
   X. PARCEIROS (LETREIRO INFINITO)
   ========================================= */
.section-ticker {
    background-color: #f9f9f9; /* Fundo que combina com o resto do site */
    padding: 80px 0;
    overflow: hidden; /* Esconde o texto que sai da tela */
}

.ticker-header {
    text-align: center;
    margin-bottom: 40px;
}

.ticker-header h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.ticker-header p {
    color: #666;
    font-size: 1.1rem;
}

/* A Faixa Preta do Letreiro */
.ticker-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100%;
    padding: 25px 0;
    background-color: #111; /* Cor super premium */
    display: flex;
    align-items: center;
    border-top: 2px solid #F58220; /* Linha de detalhe em laranja */
    border-bottom: 2px solid #F58220;
}

/* Criando um degradê nas bordas para o texto sumir suavemente */
.ticker-wrapper::before,
.ticker-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #111 0%, transparent 100%);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #111 0%, transparent 100%);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll-ticker 40s linear infinite; /* 40 segundos para dar a volta */
}

/* Pausa a animação se passar o mouse */
.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    color: #fff;
    font-size: 1.5rem;
    white-space: nowrap;
}

.ticker-item strong {
    font-weight: 800;
    letter-spacing: 1px;
}

.ticker-item span {
    color: #F58220; /* O laranja dando o toque institucional */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* O Motor da Animação */
@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move exatamente a metade da faixa duplicada */
}
/* =========================================
   X. SOBRE NÓS (DUAS COLUNAS LADO A LADO)
   ========================================= */
.about-wrapper {
    display: flex;
    flex-direction: row; /* Força ficar lado a lado no PC */
    gap: 50px;
    align-items: center;
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    max-width: 1050px;
    margin: 0 auto;
}

.about-highlight {
    flex: 1;
    border-left: 6px solid #F58220; /* Linha laranja na ESQUERDA */
    padding-left: 25px;
}

.about-highlight h2 {
    text-align: left;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #F58220;
    letter-spacing: 2px;
}

.about-highlight h3 {
    font-size: 1.8rem;
    color: #111;
    line-height: 1.4;
    font-weight: 800;
    margin: 0;
}

.about-text {
    flex: 1.5;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Regra embutida de segurança APENAS para o celular */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column; /* Empilha no celular */
        padding: 30px 20px;
        gap: 25px;
    }

    .about-highlight {
        border-left: none; /* Tira linha da esquerda */
        border-bottom: 4px solid #F58220; /* Bota linha embaixo */
        padding-left: 0;
        padding-bottom: 15px;
        text-align: center;
    }
    
    .about-highlight h2, 
    .about-highlight h3 {
        text-align: center; /* Centraliza tudo no celular */
    }

    .about-highlight h3 {
        font-size: 1.5rem;
    }
}
/* =========================================
   5. EQUIPE
   ========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Força 3 colunas exatas no PC */
    gap: 40px;
    margin-top: 50px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Garante que todos os cartões da linha tenham a mesma altura */
    justify-content: flex-start;
}

/* O cartão "levanta" e ganha uma sombra mais definida ao passar o mouse */
.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.member-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #f4f4f4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

/* Pequeno charme extra: a foto dá um leve zoom ao passar o mouse no cartão */
.team-member:hover .member-photo {
    transform: scale(1.03);
}

.member-name {
    font-size: 1.15rem;
    color: #111;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Cargo em Laranja Institucional e Espaçado */
.member-role {
    font-size: 0.82rem;
    color: #F58220;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    display: block;
}

.member-bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* =========================================
   ESTILO DOS ÍCONES DE REDES SOCIAIS
   ========================================= */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(245, 130, 32, 0.1);
    color: #F58220;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    background-color: #F58220;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(245, 130, 32, 0.3);
}

.social-icon-link:hover svg {
    transform: scale(1.1);
}
/* =========================================
   NOVO: BOX CONEXÃO BRASIL-ÁFRICA
   ========================================= */
.brazil-box {
    background: linear-gradient(135deg, #fdfbf7 0%, #fff9f2 100%);
    border: 1px solid #fce3ce;
    border-left: 4px solid #F58220;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.05);
    transition: all 0.3s ease;
}

.brazil-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 130, 32, 0.12);
}
/* =========================================
   6. MAPA INTERATIVO E DASHBOARD EXECUTIVO
   ========================================= */
#africa-map {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.dashboard-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.map-section {
    flex: 6;
    width: 100%;
}

.info-section {
    flex: 4;
    width: 100%;
    position: sticky;
    top: 120px;
}

#svg-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

#svg-container svg {
    width: 100%;
    max-width: 650px;
    height: auto !important;
    display: block;
}

/* =========================================
   CORREÇÃO: GRADE DE 2 COLUNAS PARA OS BOTÕES
   ========================================= */
.blocos-filtros {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.filtros-titulo {
    grid-column: span 2 !important;
    font-size: 0.85rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    text-align: center;
}

.blocos-filtros button {
    padding: 10px 12px;
    border: 2px solid #F58220;
    background: transparent;
    color: #F58220;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.blocos-filtros button:hover {
    background: rgba(245, 130, 32, 0.1);
    transform: translateY(-1px);
}

.blocos-filtros button.ativo {
    background: #F58220 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(245, 130, 32, 0.3);
}

.blocos-filtros .btn-limpar {
    grid-column: span 2 !important;
    border-color: #d1d5db;
    color: #4b5563;
    background: #f9fafb;
}

.blocos-filtros .btn-limpar:hover {
    background: #e5e7eb;
    color: #1f2937;
}
/* =========================================
   CORREÇÃO: EAC CENTRALIZADO NA GRADE
   ========================================= */
.blocos-filtros button.btn-centro {
    grid-column: span 2 !important;
}

.btn-limpar {
    border-color: #999 !important;
    color: #999 !important;
}

.btn-limpar:hover {
    background-color: #999 !important;
    color: #fff !important;
}

.country-info {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #eaeaea;
}

.card-title {
    color: #F58220;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.4rem;
    color: #212529;
    font-weight: 900;
    margin: 0;
}

.insight-box {
    background-color: #fff4ea;
    border-left: 4px solid #F58220;
    border-radius: 0 12px 12px 0;
    padding: 18px;
    margin-bottom: 20px;
}

.insight-text {
    margin: 8px 0 0 0;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}
/* =========================================
   X. EMPRESAS PARCEIRAS (DARK GRID)
   ========================================= */
.section-trust {
    background-color: #ffffff; /* Fundo super escuro */
    padding: 100px 0;
    color: #fff;
    font-family: system-ui, -apple-system, sans-serif;
}

.trust-header {
    text-align: left;
    margin-bottom: 50px;
    max-width: 800px;
}

.trust-header h2 {
    text-align: left;
    color: #000000;
    margin-bottom: 15px;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: none; /* Tira o tudo maiúsculo para ficar igual à foto */
    letter-spacing: -0.5px;
}

.trust-header p {
    color: #8b949e; /* Cinza azulado elegante */
    font-size: 1.15rem;
    line-height: 1.6;
}

/* O truque da Grade Conectada */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Exatamente 5 colunas */
    background-color: #21262d; /* Essa cor vai vazar pelo 'gap' virando as linhas */
    gap: 1px; /* A espessura da linha divisória */
    border: 1px solid #21262d; /* Borda ao redor de tudo */
    border-radius: 8px; /* Cantos levemente arredondados */
    overflow: hidden;
}

.trust-card {
    background-color: #ffac05; /* Mesma cor do fundo da página */
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.trust-card:hover {
    background-color: #fefeff; /* Dá uma leve clareada ao passar o mouse */
}

.trust-card h4 {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.trust-card span {
    color: #050505;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* =========================================
   7. CONTATO E RODAPÉ
   ========================================= */
.contact-wrapper {
    background: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra elegante */
    border: 1px solid #eaeaea;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    margin-bottom: 10px;
}

.contact-header p {
    color: #666;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Coloca os campos lado a lado no PC */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #F58220;
    font-size: 1.1rem;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eef0f2;
    background-color: #fcfcfc;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

/* Efeito moderno ao clicar no campo (Glow laranja) */
.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #F58220;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.1);
    outline: none;
}

.btn-submit {
    padding: 16px;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 30px; /* Botão formato pílula combinando com o menu */
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #F58220; /* Fica laranja ao passar o mouse */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 130, 32, 0.3);
}

.main-footer {
    background-color: #111;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* =========================================
   MENSAGENS DE FEEDBACK (JAVASCRIPT)
   ========================================= */
.feedback-msg {
    display: none; /* Começa escondido */
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 15px;
    animation: fadeIn 0.4s ease;
}

.feedback-msg.sucesso {
    background-color: #e8f7ee;
    color: #12793d;
    border: 1px solid #c2ebd1;
}

.feedback-msg.erro {
    background-color: #fdeeee;
    color: #b71c1c;
    border: 1px solid #f8c9c9;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* =========================================
   8. MEDIA QUERIES (RESPONSIVIDADE MÁXIMA)
   ========================================= */

/* Para Tablets e Celulares (telas até 992px) */
@media (max-width: 992px) {
    
    /* 1. Cabeçalho e Navegação */
    .header-container {
        flex-direction: column !important;
        height: auto !important;
        padding: 20px 15px !important;
        gap: 15px;
    }
    
    body {
        padding-top: 160px; /* Compensa o tamanho do menu empilhado */
    }
    
    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0;
    }

    /* 2. Hero Section Premium (Capa) */
    .hero-section {
        height: calc(100vh - 160px) !important; /* Ajusta a altura da capa com o novo menu */
        min-height: 400px;
    }
    
    .hero-content {
        padding: 0 20px !important;
        text-align: center;
    }
    
    .hero-text {
        align-items: center; /* Centraliza o texto no celular */
        margin: 0 auto;
    }
    
    .hero-quote {
        font-size: 2.2rem !important; /* Reduz a fonte da citação */
    }
    
    .hero-overlay {
        /* O degradê vem de baixo para cima para garantir leitura no celular */
        background: linear-gradient(to top, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.4) 100%) !important;
    }

    /* 3. Serviços (Lista) */
    .service-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 25px 20px !important;
    }
    
    .service-number {
        margin-bottom: 15px !important;
        font-size: 2.5rem !important;
    }

    /* 4. Equipe e Imprensa */
    .team-grid, 
    .press-grid {
        grid-template-columns: 1fr !important; /* Força 1 coluna */
    }

    /* 5. Dashboard e Mapa Interativo */
    .dashboard-wrapper {
        flex-direction: column !important;
        padding: 15px !important;
        gap: 30px;
    }
    
    .map-section, 
    .info-section {
        width: 100% !important;
        flex: none !important;
    }
    
    /* Desliga o painel "grudento" para não quebrar a rolagem vertical */
    .info-section {
        position: relative !important;
        top: 0 !important;
    }
    
    .blocos-filtros {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .blocos-filtros button {
        width: 100%;
        margin: 0;
        padding: 12px;
    }

    /* 6. Letreiro (Ticker) e Parceiros (Trust Grid) */
    .ticker-header {
        padding: 0 20px;
    }
    
    .ticker-header h2 {
        font-size: 1.6rem;
    }
    
    .ticker-item {
        font-size: 1.2rem;
        padding: 0 25px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 colunas no tablet */
    }

    /* 7. Contato */
    .form-row {
        grid-template-columns: 1fr !important; /* Empilha os campos Nome/Email */
    }
    
    .contact-wrapper {
        padding: 30px 20px !important;
    }
}

/* Para Celulares Menores (telas até 600px) */
