/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Brand Colors */
    --color-navy-primary: #1a2e4a;
    --color-navy-secondary: #2c4663;
    --color-blue-accent: #3a5f8f;
    --color-blue-light: #7db3ff;
    
    /* Sub-brands */
    --color-neoprag: #72A724;
    --color-neoagro: #8ABE49;
    --color-pulsar: #26538F;

    /* Neutrals */
    --color-white: #ffffff;
    --color-gray-50: #f8f9fa;
    --color-gray-100: #e9ecef;
    --color-gray-600: #6c757d;
    --color-gray-800: #343a40;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 100px;
    --border-radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* =========================================
   AJUSTE DE LOGO (CORREÇÃO DEFINITIVA)
   ========================================= */

/* 1. Contentor da Logo */
.header__brand {
    height: 100%;
    display: flex;
    align-items: center; 
    justify-content: flex-start;
    overflow: hidden; /* Corta o excesso de margem branca */
    max-width: 600px; 
    flex-shrink: 0;
}

/* 2. A Imagem da Logo */
.header__logo-img {
    /* Forçamos uma altura GRANDE para que o texto fique visível */
    /* Como o pai tem 'overflow: hidden', as bordas vazias somem */
    height: 160px !important; /* !important garante que nada sobrescreva */
    width: auto;
    
    /* Filtro para deixar branco */
    filter: brightness(0) invert(1);
    
    /* Garante nitidez */
    object-fit: contain; 
    transition: opacity 0.3s ease;
}

.header__logo-img:hover {
    opacity: 0.8;
}

/* Ajuste para Telemóveis */
@media (max-width: 1024px) {
    .header__logo-img {
        height: 120px !important; /* Ajuste proporcional */
    }
}

/* =========================================
   2. UTILITIES & LAYOUT
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid { display: grid; gap: 2rem; }
.text-center { text-align: center; }
.bg-light { background-color: var(--color-gray-50); }
.mb-large { margin-bottom: 4rem; }

/* Grid Systems */
@media (min-width: 768px) {
    .grid--2-cols { grid-template-columns: repeat(2, 1fr); }
    .grid--3-cols { grid-template-columns: repeat(3, 1fr); }
    .grid--4-cols { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================
   3. HEADER & NAVEGAÇÃO
   ========================================= */
.header {
    position: fixed;
    top: 0; width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(26, 46, 74, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
}

.header__subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #b8c9dd;
    letter-spacing: 1px;
}

/* --- COMPORTAMENTO MOBILE E TABLET (Padrão) --- */

/* Esconde o menu de links escrito por padrão */
.nav-desktop { 
    display: none; 
}

/* Configuração do botão Hambúrguer (Visível por padrão) */
.hamburger {
    background: none; 
    border: none; 
    cursor: pointer;
    display: flex; 
    flex-direction: column; 
    gap: 5px;
    z-index: 1001; /* Garante que fique sobre o menu */
}

.hamburger span {
    display: block; 
    width: 28px; 
    height: 3px;
    background: var(--color-white); 
    transition: 0.3s;
    border-radius: 3px;
}

/* Animação do X quando ativo */
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Menu Mobile Overlay */
.mobile-menu {
    position: fixed; 
    top: 0; 
    left: 0; /* Agora cobre a tela toda ou vem da direita, ajuste conforme preferência */
    width: 100%;
    height: 100vh;
    background: var(--color-navy-primary);
    padding-top: 100px; /* Espaço para não ficar atrás do header */
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu.active { 
    transform: translateY(0); 
}

.mobile-nav-link {
    color: white; 
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 80%;
    text-align: center;
}

/* --- COMPORTAMENTO DESKTOP (Telas acima de 1024px) --- */
@media (min-width: 1024px) {
    
    /* Mostra o menu de links */
    .nav-desktop { 
        display: flex; 
        align-items: center;
    }

    .nav-desktop__list { 
        display: flex; 
        gap: 2.5rem; 
        align-items: center;
    }

    .nav-link {
        color: var(--color-white);
        font-weight: 500;
        position: relative;
        font-size: 1rem;
    }

    .nav-link::after {
        content: ''; position: absolute; bottom: -5px; left: 0;
        width: 0; height: 2px; background: var(--color-blue-light);
        transition: width 0.3s;
    }
    
    .nav-link:hover::after { width: 100%; }

    /* ESCONDE O HAMBURGUER NO COMPUTADOR */
    .hamburger { 
        display: none !important; 
    }
    
    /* Garante que o menu mobile não apareça no desktop mesmo se ativo */
    .mobile-menu {
        display: none !important;
    }
}

/* =========================================
   4. HERO SECTION (CORRIGIDO PARA CENTRALIZADO)
   ========================================= */

.hero {
    position: relative;
    min-height: 100vh; /* Altura total da tela */
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza tudo verticalmente */
    overflow: hidden;
    text-align: center; /* Garante que o texto fique no meio */
    
    /* Mantenha sua imagem de fundo no HTML ou adicione aqui se preferir */
    /* background-image: url('../img/sua-foto-hero.jpg'); */
    background-size: cover;
    background-position: center;
}

/* Camada escura para o texto brilhar em cima da foto */
.hero__overlay {
    position: absolute; 
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Escurece a foto em 50% */
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2; /* Fica acima da sombra */
    max-width: 900px; /* Limita a largura para o texto não espalhar demais */
    margin: 0 auto;
    padding: 0 20px;
    
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza os itens (título, texto, botões) */
    gap: 2rem;
}

/* Tipografia */
.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Letra Grande Responsiva */
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.hero__description {
    color: #f0f0f0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    max-width: 700px;
    line-height: 1.6;
}

/* --- BOTÕES ALINHADOS --- */
/* (Use a classe .hero-btns-container no HTML ou .hero__actions) */
.hero-btns-container, 
.hero__actions { 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Estilo dos Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
    font-size: 1rem;
    border: 2px solid transparent; /* Evita pulos */
}

/* Botão Verde */
.btn--neoprag-primary {
    background-color: #7AB800;
    color: white;
    box-shadow: 0 4px 20px rgba(122, 184, 0, 0.4);
}
.btn--neoprag-primary:hover {
    background-color: #6a9e00;
    transform: translateY(-3px);
}

/* Botão Transparente */
.btn--outline-white {
    background: transparent;
    border: 2px solid white; /* Borda Branca Grossa */
    color: white;
}
.btn--outline-white:hover {
    background: white;
    color: #003366; /* Azul escuro no hover */
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 600px) {
    .hero-btns-container, .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    .btn { width: 100%; }
}

/* =========================================
   5. COMPONENTS (Cards & Features)
   ========================================= */
.section { padding: 5rem 0; }
.section-title {
    font-size: 2.5rem; color: var(--color-navy-primary);
    margin-bottom: 1rem; display: inline-block; position: relative;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: var(--color-blue-accent); margin: 10px auto 0;
}
.section-description {
    max-width: 700px; margin: 0 auto 3rem; color: var(--color-gray-600);
}

/* Company Cards */
.company-card {
    background: white; padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--color-gray-100);
    transition: transform 0.3s;
    display: flex; flex-direction: column;
}
.company-card:hover { transform: translateY(-10px); }

/* AJUSTE FINAL: Container da Logo (Centralizado e Limpo) */
.company-card__icon {
    width: 100%;          /* Ocupa a largura total para centralizar */
    height: auto;
    background: none;     /* Sem fundo colorido */
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    
    /* Centralização Flexbox */
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-bottom: 2rem; /* Espaço extra já que removemos o título */
}

/* AJUSTE FINAL: Imagem da Logo (Maior) */
.card-logo-img {
    height: 90px;         /* Aumentado de 60px para 90px */
    width: auto;
    max-width: 80%;       /* Garante que não encoste nas bordas laterais */
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

/* Efeito suave ao passar o mouse */
.company-card:hover .card-logo-img {
    transform: scale(1.1);
}

/* Títulos (Mantido caso decida usar, mas não é necessário se removeu do HTML) */
.company-card__title { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* Categoria (Texto pequeno "CONTROLE URBANO") - Centralizado */
.company-card__category {
    display: block; 
    text-align: center; /* Centraliza o texto */
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; color: var(--color-gray-600); 
    margin-bottom: 1.5rem;
    margin-top: -0.5rem; /* Ajuste fino para aproximar da logo */
}

.company-card__text { font-size: 0.95rem; color: var(--color-gray-600); margin-bottom: auto; }

/* Themes (Apenas cores de texto/botão) */
.theme-neoprag .company-card__title { color: #3C5518; }
.btn--neoprag { background: var(--color-neoprag); color: white; margin-top: 1.5rem; text-align: center;}

.theme-neoagro .company-card__title { color: #537524; }
.btn--neoagro { background: var(--color-neoagro); color: white; margin-top: 1.5rem; text-align: center;}

.theme-pulsar .company-card__title { color: var(--color-pulsar); }
.btn--pulsar { background: var(--color-pulsar); color: white; margin-top: 1.5rem; text-align: center;}

/* Check List */
.check-list li {
    font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--color-gray-600);
    display: flex; align-items: center; gap: 8px;
}
.check-list li::before {
    content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
}
.theme-neoprag .check-list li::before { color: var(--color-neoprag); }
.theme-neoagro .check-list li::before { color: var(--color-neoagro); }
.theme-pulsar .check-list li::before { color: var(--color-pulsar); }

/* Feature Box */
.feature-box { text-align: center; padding: 1.5rem; }
.feature-box__icon {
    width: 70px; height: 70px; background: var(--color-blue-accent);
    color: white; border-radius: 50%; margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}

/* Animations */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */

/* Base: hidden before reveal */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

[data-animate].revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1) !important;
}

/* Direction variants */
[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(-50px);
}

[data-animate="fade-right"] {
    transform: translateX(50px);
}

[data-animate="scale-in"] {
    transform: scale(0.85);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

/* Stagger delays for children */
[data-stagger] > *:nth-child(1) { transition-delay: 0.1s; }
[data-stagger] > *:nth-child(2) { transition-delay: 0.2s; }
[data-stagger] > *:nth-child(3) { transition-delay: 0.3s; }
[data-stagger] > *:nth-child(4) { transition-delay: 0.4s; }
[data-stagger] > *:nth-child(5) { transition-delay: 0.5s; }
[data-stagger] > *:nth-child(6) { transition-delay: 0.6s; }

/* Stagger children inherit hidden state */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-stagger].revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Speed variants */
[data-speed="fast"] { transition-duration: 0.4s; }
[data-speed="slow"] { transition-duration: 1.1s; }

/* Enhanced Card Hover Interactions */
.service-card,
.card--neoagro,
.diff-card,
.pricing-card,
.loc-card,
.company-link-card,
.feature-tech {
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.service-card:hover,
.card--neoagro:hover,
.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.feature-tech:hover {
    transform: translateY(-8px);
}

/* Button Shine Effect */
.btn--neoprag-primary,
.btn--neoagro-primary,
.btn--pulsar-primary,
.btn-corporate-primary {
    position: relative;
    overflow: hidden;
}

.btn--neoprag-primary::after,
.btn--neoagro-primary::after,
.btn--pulsar-primary::after,
.btn-corporate-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn--neoprag-primary:hover::after,
.btn--neoagro-primary:hover::after,
.btn--pulsar-primary:hover::after,
.btn-corporate-primary:hover::after {
    left: 120%;
}

/* Process Step Number Pulse */
.process-number {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Section Title Underline Animation */
.section-title::after,
.section-title-corporate::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: currentColor;
    margin: 10px auto 0;
    border-radius: 2px;
    transition: width 0.6s ease;
    opacity: 0.4;
}

[data-animate].revealed .section-title::after,
[data-animate].revealed .section-title-corporate::after {
    width: 60px;
}

/* Icon Float on Hover */
.service-card i,
.card--neoagro .icon-wrapper i,
.pillar-icon i {
    transition: transform 0.4s ease;
}

.service-card:hover i,
.card--neoagro:hover .icon-wrapper i {
    transform: translateY(-5px) scale(1.1);
}

.pillar-card:hover .pillar-icon i {
    transform: rotateY(180deg);
}

/* Stat Counter Glow */
.stat-value {
    transition: text-shadow 0.3s ease;
}

.stat-card:hover .stat-value {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Parallax-lite for hero backgrounds */
.hero--neoprag,
.hero--neoagro,
.hero--pulsar,
.hero-corporate {
    background-attachment: fixed;
}

/* Smooth header transition */
.header {
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    [data-animate],
    [data-stagger] > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================================
   6. NEOPRAG IDENTITY & VARIANTS
   ========================================= */
:root {
    /* Neoprag Palette */
    --color-neoprag-primary: #B3FF5E;
    --color-neoprag-green: #8ABE49;
    --color-neoprag-dark: #72A724;
    --color-neoprag-forest: #3C5518;
    --color-neoprag-gray: #585858;

    /* Fonts specific to Neoprag */
    --font-neoprag-display: 'Bree Serif', serif;
    --font-neoprag-body: 'Ruda', sans-serif;
}

/* Page Modifier */
.page-neoprag {
    font-family: var(--font-neoprag-body);
    color: var(--color-neoprag-gray);
}

.page-neoprag h1, 
.page-neoprag h2, 
.page-neoprag h3 {
    font-family: var(--font-neoprag-display);
    color: var(--color-neoprag-forest);
}

/* Header Variant (White) */
.header--white {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header--white .nav-link { color: var(--color-gray-600); }
.header--white .nav-link:hover,
.header--white .nav-link.active { color: var(--color-neoprag-dark); }
.header--white .nav-link.active::after { background: var(--color-neoprag-dark); width: 100%; }

/* --- CORREÇÃO DA LOGO NO HEADER BRANCO --- */
.header--white .header__logo-img {
    filter: none !important; /* Remove o filtro branco para mostrar a cor original */
    height: 90px !important; /* Tamanho ajustado para a logo da Neoprag */
    object-fit: contain;
}
/* ----------------------------------------- */

/* Buttons Variant */
.btn--neoprag-primary {
    background: var(--color-neoprag-dark);
    color: white; 
    border: 2px solid transparent; 
    transition: all 0.3s ease;
}
.btn--neoprag-primary:hover {
    background: var(--color-neoprag-forest);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 167, 36, 0.4);
}

.btn--neoprag-secondary {
    background: transparent;
    color: var(--color-neoprag-dark);
    border: 2px solid var(--color-neoprag-dark);
    transition: all 0.3s ease;
}
.btn--neoprag-secondary:hover {
    background: var(--color-neoprag-dark);
    color: white;
}

/* =========================================
   7. NEOPRAG SECTIONS (HERO & OTHERS)
   ========================================= */

/* Hero Premium */
.hero--neoprag {
    position: relative;
    min-height: 85vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%, #3c5518 0%, #1a2e05 100%);
    color: white;
}

/* --- CORREÇÃO: Posicionamento da Cidade (SVG do HTML) --- */
.hero__cityscape {
    position: absolute;
    bottom: -1px; /* Garante que cola no fundo sem linhas brancas */
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

/* Estilo para o desenho SVG dentro da div */
.hero__cityscape svg {
    width: 100%;
    height: auto;
    min-height: 150px; /* Garante que os prédios apareçam mesmo em telas largas */
    display: block;
}

/* Texturas e Conteúdo */
.hero--neoprag::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.3; z-index: 1;
}

.hero__container-center {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding-bottom: 50px; /* Espaço extra para não ficar em cima dos prédios */
}

.hero__title {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero__description {
    font-size: 1.25rem; line-height: 1.6; color: #e2e8f0;
    max-width: 800px; text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--color-neoprag-primary);
}
/* =========================================
   AJUSTE DE LOGO INTERNA (FUNDO BRANCO)
   ========================================= */

/* Quando o header for branco (Neoprag), a logo precisa ter cores originais */
.header--white .header__logo-img {
    /* Remove o filtro que deixava branco */
    filter: none !important; 
    
    /* Ajuste de tamanho específico para esta logo */
    /* Como as logos costumam ter formatos diferentes, talvez 180px seja muito aqui */
    /* Tente começar com 90px ou 100px e aumente se precisar */
    height: 100px !important; 
    
    /* Garante que não distorça */
    object-fit: contain;
}

/* Ajuste do container para centralizar */
.header--white .header__brand {
    display: flex;
    align-items: center;
    /* Removemos o limite de largura estrito para a logo interna respirar */
    max-width: none; 
}

/* =========================================
   7. NEOPRAG SECTIONS (HERO COM LEITURA MELHORADA)
   ========================================= */

/* Hero Premium */
.hero--neoprag {
    position: relative;
    height: 100vh; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    
    /* FOTO DE FUNDO */
    background-image: url('../img/hero-neoprag.jpg'); 
    background-size: cover;       
    background-position: center center;  
    background-repeat: no-repeat;
    background-color: #3c5518;
    color: white;
}

/* --- CORREÇÃO DE LEITURA (PELÍCULA MAIS ESCURA) --- */
.hero--neoprag::before {
    content: ''; 
    position: absolute; 
    inset: 0;
    /* Aumentei a opacidade para 0.9 (90%) e 0.85 (85%) para escurecer bem */
    background: linear-gradient(
        to bottom, 
        rgba(45, 66, 15, 0.92),   /* Verde Musgo quase sólido em cima */
        rgba(26, 46, 74, 0.85)    /* Azul Profundo em baixo */
    );
    z-index: 1;
}

.hero__container-center {
    position: relative; 
    z-index: 2;
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* --- CORREÇÃO DE LEITURA (SOMBRA NO TEXTO) --- */
.hero__title {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    color: #ffffff; /* Garante que o texto principal seja Branco Puro */
    
    /* Sombra preta forte atrás das letras para separar da foto */
    text-shadow: 0 4px 20px rgba(0,0,0,0.8); 
    margin-bottom: 1.5rem;
}

/* Garante que o destaque (span) seja verde limão brilhante para contrastar com o fundo escuro */
.hero__title span {
    color: #B3FF5E !important; /* Força a cor verde neon */
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.hero__description {
    font-size: 1.25rem; 
    line-height: 1.6; 
    color: #f1f1f1; /* Branco levemente off-white */
    max-width: 800px; 
    /* Sombra também na descrição */
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.hero__badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.4); /* Fundo preto transparente para o badge */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: #B3FF5E; /* Verde Neon */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .hero--neoprag {
        background-position: center top; 
    }
}
/* =========================================
   8. NEOPRAG: SERVIÇOS, PROCESSO E CONTEÚDO
   ========================================= */

/* --- SERVIÇOS (Os Cards com Ícones) --- */
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra suave */
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Garante que todos tenham a mesma altura */
}

.service-card:hover {
    transform: translateY(-10px); /* Sobe um pouco ao passar o mouse */
    box-shadow: 0 15px 40px rgba(114, 167, 36, 0.15); /* Sombra verde suave */
    border-color: var(--color-neoprag-primary);
}

.service-card i {
    font-size: 3rem;
    color: var(--color-neoprag-dark);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-neoprag-forest);
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* --- NOSSO PROCESSO (As Bolinhas Numeradas) --- */
.process-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--color-neoprag-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-neoprag-display);
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(114, 167, 36, 0.4);
    transition: transform 0.3s;
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(10deg);
    background: var(--color-neoprag-forest);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-neoprag-forest);
}

/* --- POR QUE ESCOLHER (Ícones laterais) --- */
.differential-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--color-neoprag-primary);
    transition: transform 0.3s;
}

.differential-item:hover {
    transform: translateX(10px);
    background: #fcfffe;
}

.differential-item i {
    font-size: 1.8rem;
    color: var(--color-neoprag-dark);
    margin-right: 1.5rem;
    min-width: 40px;
    text-align: center;
    margin-top: 5px;
}

.differential-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-neoprag-forest);
}

/* --- DEPOIMENTOS / CLIENTES --- */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    height: 100%;
}

.stars {
    color: #FFB800; /* Cor amarela das estrelas */
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    font-weight: 700;
    color: var(--color-neoprag-forest);
    display: block;
    font-style: normal;
}

.testimonial-card span {
    font-size: 0.85rem;
    color: #888;
}

/* --- AJUSTE DE TITULOS DAS SEÇÕES --- */
.section-title {
    color: var(--color-neoprag-forest);
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-neoprag-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* =========================================
   9. NEOPRAG: AVALIAÇÕES & FORMULÁRIO (CORREÇÃO DE LAYOUT)
   ========================================= */

/* --- CORREÇÃO DO GRID (Para "Por que escolher" e "Avaliações") --- */
/* Garante que fiquem lado a lado corretamente e alinhados ao topo */
.grid--2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; /* Espaço maior entre as colunas */
    align-items: start; /* Impede que uma coluna estique a outra */
}

/* Em telas menores, volta a ser uma coluna só */
@media (max-width: 900px) {
    .grid--2-cols {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- ESTILO DOS DEPOIMENTOS (CARTÕES INDIVIDUAIS) --- */
/* Container da direita onde ficam os depoimentos */
.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Espaço entre cada avaliação */
}

/* O Cartão de cada cliente */
.testimonial-card {
    background: #fdfdfd; /* Branco levemente off-white */
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--color-neoprag-primary); /* Linha verde na esquerda */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateX(5px); /* Efeito sutil ao passar o mouse */
    background: #fff;
    box-shadow: 0 8px 25px rgba(114, 167, 36, 0.15);
}

.stars {
    color: #FFB800;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: block;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-neoprag-forest);
    font-size: 0.9rem;
}

.testimonial-author span {
    display: block;
    font-weight: 400;
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

/* --- SEÇÃO DE FORMULÁRIO (SOLICITE ORÇAMENTO) --- */
/* Adicionamos margem no topo para separar das avaliações */
#contato {
    margin-top: 6rem; 
    padding-top: 4rem;
    border-top: 1px solid #eee; /* Linha sutil para separar */
    position: relative;
    background: white; /* Garante fundo branco limpo */
}

/* Container do Formulário */
.form-box {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Sombra elegante */
    border: 1px solid #e0e0e0;
}

.form-neoprag .form-group {
    margin-bottom: 1.5rem;
}

.form-neoprag label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-neoprag-forest);
}

.form-neoprag input,
.form-neoprag select,
.form-neoprag textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: var(--font-body);
}

.form-neoprag input:focus,
.form-neoprag select:focus,
.form-neoprag textarea:focus {
    outline: none;
    border-color: var(--color-neoprag-primary);
    background-color: #faffff;
}

/* Botão do Formulário - Largo e Verde */
.form-neoprag button[type="submit"] {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--color-neoprag-dark);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s, transform 0.2s;
}

.form-neoprag button[type="submit"]:hover {
    background: var(--color-neoprag-forest);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(60, 85, 24, 0.3);
} 
/* =========================================
   10. NEOAGRO IDENTITY & VARIANTS
   ========================================= */
:root {
    /* Neoagro Palette */
    --color-neoagro-primary: #8ABE49;
    --color-neoagro-light: #B3FF5E;
    --color-neoagro-medium: #72A724;
    --color-neoagro-dark: #3C5518;
    --color-neoagro-gray: #585858;

    /* Fonts specific to Neoagro */
    --font-neoagro-body: 'Open Sans', sans-serif;
}

/* Page Modifier */
.page-neoagro {
    font-family: var(--font-neoagro-body);
    color: var(--color-gray-800);
}

.page-neoagro h1, 
.page-neoagro h2, 
.page-neoagro h3 {
    font-family: var(--font-neoprag-display); /* Shared Bree Serif */
    color: var(--color-neoagro-dark);
}

/* Header Variant (Neoagro Gradient) */
.header--neoagro {
    background: linear-gradient(135deg, var(--color-neoagro-dark) 0%, var(--color-neoagro-medium) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border-bottom: none;
}
/* Force white text on this specific header */
.header--neoagro .header__logo,
.header--neoagro .nav-link, 
.header--neoagro .hamburger span { 
    color: white !important; 
}
.header--neoagro .nav-link::after { background: var(--color-neoagro-light); }
.header--neoagro .hamburger span { background: white; }

/* Buttons Variant */
.btn--neoagro-primary {
    background: var(--color-neoagro-primary);
    color: white; border: none;
}
.btn--neoagro-primary:hover {
    background: var(--color-neoagro-medium);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138,190,73,0.4);
}

.btn--neoagro-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn--neoagro-secondary:hover {
    background: white;
    color: var(--color-neoagro-dark);
}
/* =========================================
   AJUSTE LOGO NEOAGRO (CABEÇALHO VERDE)
   ========================================= */

.header--neoagro .header__logo-img {
    /* Altura ajustada para o cabeçalho da Neoagro */
    height: 90px !important;
    width: auto;
    
    /* O TRUQUE: Como o fundo é verde, pintamos a logo de BRANCO */
    /* brightness(0) deixa preto -> invert(1) vira branco puro */
    filter: brightness(0) invert(1) !important;
    
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header--neoagro .header__logo-img:hover {
    transform: scale(1.05); /* Leve zoom ao passar o mouse */
    opacity: 0.9;
}

/* Ajuste do container para centralizar verticalmente */
.header--neoagro .header__brand {
    display: flex;
    align-items: center;
    max-width: none; /* Remove restrições antigas se houver */
}
/* =========================================
   SEÇÃO HERO NEOAGRO (AGRO + TECH)
   ========================================= */

.hero--neoagro {
    position: relative;
    /* Define tela cheia (Full Screen) */
    height: 100vh;
    min-height: 100vh;
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    
    /* FOTO DE FUNDO */
    /* Certifique-se de salvar a imagem como 'hero-neoagro.jpg' na pasta img */
    background-image: url('../img/hero-neoagro.jpg'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    background-color: #4a6fa5; 
    color: white;
}

/* PELÍCULA ESCURA (OVERLAY) - TONS DE AGRO */
/* Essencial para ler o texto branco em cima da foto */
.hero--neoagro::before {
    content: ''; 
    position: absolute; 
    inset: 0;
    /* Gradiente: Verde Folha escuro em cima -> Marrom/Terra escuro em baixo */
    background: linear-gradient(
        to bottom, 
        rgba(65, 105, 20, 0.9),   /* Verde Agro Escuro */
        rgba(40, 30, 20, 0.85)    /* Tom Terroso Escuro */
    );
    z-index: 1;
}

/* Garante que o texto fique acima da imagem */
.hero--neoagro .hero__container-center {
    position: relative; 
    z-index: 2;
    width: 100%;
}

/* Estilos de Texto Específicos */
.hero--neoagro .hero__title {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    color: white;
    /* Sombra forte para destacar do fundo */
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.hero--neoagro .hero__description {
    font-size: 1.25rem; 
    color: #f0f0f0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

/* Botão Verde (Primary) */
.btn--neoagro-primary {
    background-color: #8ABE49; 
    color: white;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn--neoagro-primary:hover {
    background-color: #72A724;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Botão Transparente (Secondary) */
.btn--neoagro-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    transition: all 0.3s;
}

.btn--neoagro-secondary:hover {
    background: white;
    color: #3C5518 !important; /* Texto fica verde escuro ao passar o mouse */
}
/* =========================================
   11. NEOAGRO SECTIONS (CORRIGIDO)
   ========================================= */

/* AVISO: Mantenha apenas esta definição de hero--neoagro nesta seção */
.hero--neoagro {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    
    /* FOTO DE FUNDO */
    background-image: url('../img/hero-neoagro.jpg'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    background-color: #4a6fa5; 
    color: white;
}

/* PELÍCULA ESCURA (OVERLAY) */
.hero--neoagro::before {
    content: ''; 
    position: absolute; 
    inset: 0;
    /* Gradiente Verde/Terra para leitura */
    background: linear-gradient(
        to bottom, 
        rgba(65, 105, 20, 0.9),
        rgba(40, 30, 20, 0.85)
    );
    z-index: 1;
}

/* Garante que o texto fique acima da imagem */
.hero--neoagro .hero__container-center {
    position: relative; 
    z-index: 2;
    width: 100%;
}

/* Badge (Etiqueta) específica desta Hero */
.hero__badge {
    display: inline-block;
    background: rgba(179, 255, 94, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--color-neoagro-light);
    font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(179, 255, 94, 0.3);
}

/* Cards de Ícones (Destaques) */
.icon-wrapper {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--color-neoagro-light) 0%, var(--color-neoagro-primary) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem; color: white;
    box-shadow: 0 8px 20px rgba(138,190,73,0.3);
}

/* Efeitos nos Cards */
.card--neoagro {
    border-top: 4px solid var(--color-neoagro-primary);
    transition: 0.3s;
}
.card--neoagro:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(138,190,73,0.15);
}

/* Cards de Diferenciais (Laterais) */
.diff-card {
    background: white; padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex; gap: 1.5rem; align-items: flex-start;
    height: 100%;
}
.diff-card__icon {
    background: rgba(138, 190, 73, 0.15);
    padding: 1rem; border-radius: 12px;
    color: var(--color-neoagro-dark); font-size: 1.5rem;
}

/* Caixa de Citação */
.quote-box {
    background: white; padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center; position: relative;
    margin-top: 3rem;
}
.quote-box i { color: var(--color-neoagro-primary); font-size: 2.5rem; margin-bottom: 1.5rem; }
.quote-box p { font-size: 1.2rem; font-style: italic; color: var(--color-gray-600); margin-bottom: 2rem; }
.quote-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.quote-avatar {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--color-neoagro-primary), var(--color-neoagro-dark));
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: bold;
}

/* Rodapé Neoagro */
.footer--neoagro {
    background: #2a3b15;
    color: #e0e0e0; padding: 4rem 0 2rem;
}
.footer--neoagro a:hover { color: var(--color-neoagro-light); }
/* =========================================
   12. PULSAR-X IDENTITY & VARIANTS
   ========================================= */
:root {
    /* Pulsar Palette */
    --color-pulsar-blue: #26538F;
    --color-pulsar-dark: #101825; /* Darker navy, almost black */
    --color-pulsar-mid: #373E68;
    --color-pulsar-accent: #4cc9f0; /* Cyan for glow effects */
    --color-pulsar-text: #e2e8f0;

    /* Fonts specific to Pulsar */
    --font-pulsar-display: 'Orbitron', sans-serif;
    --font-pulsar-body: 'Poppins', sans-serif;
}

/* Page Modifier */
.page-pulsar {
    font-family: var(--font-pulsar-body);
    background-color: #f8fafc;
    color: var(--color-gray-800);
}

.page-pulsar h1, 
.page-pulsar h2, 
.page-pulsar h3 {
    font-family: var(--font-pulsar-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header Variant (Dark Tech) */
.header--pulsar {
    background: rgba(16, 24, 37, 0.95);
    border-bottom: 1px solid rgba(76, 201, 240, 0.3); /* Subtle cyan border */
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.header--pulsar .nav-link { color: white; font-family: var(--font-pulsar-body); font-size: 0.9rem; }
.header--pulsar .nav-link:hover,
.header--pulsar .nav-link.active { color: var(--color-pulsar-accent); }
.header--pulsar .nav-link::after { background: var(--color-pulsar-accent); }
.header--pulsar .hamburger span { background: white; }

/* Buttons Variant */
.btn--pulsar-primary {
    background: var(--color-pulsar-blue);
    color: white; 
    border: 1px solid rgba(255,255,255,0.1);
    font-family: var(--font-pulsar-display);
    letter-spacing: 2px;
    position: relative; overflow: hidden;
}
.btn--pulsar-primary:hover {
    background: var(--color-pulsar-mid);
    box-shadow: 0 0 15px rgba(38, 83, 143, 0.6);
    border-color: var(--color-pulsar-accent);
}

.btn--pulsar-secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--color-pulsar-accent);
    font-family: var(--font-pulsar-display);
    letter-spacing: 1px;
}
.btn--pulsar-secondary:hover {
    background: var(--color-pulsar-accent);
    color: var(--color-pulsar-dark);
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.4);
}

/* =========================================
   13. PULSAR-X SECTIONS (HERO TELA CHEIA)
   ========================================= */

/* Hero Pulsar */
.hero--pulsar {
    /* MUDANÇA PRINCIPAL: Ocupa 100% da altura da tela */
    height: 100vh;
    min-height: 100vh;

    /* Centraliza o conteúdo perfeitamente no meio da tela cheia */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Espaço para o cabeçalho fixo não cobrir o texto */
    padding-top: var(--header-height);

    /* Fundo Tech Escuro */
    background: linear-gradient(135deg, #000000 0%, var(--color-pulsar-dark) 60%, #1a2e4a 100%);
    position: relative;
    color: white;
    overflow: hidden;
}

/* Efeito de Grid Cibernético (Overlay) */
.hero--pulsar::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(76, 201, 240, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(76, 201, 240, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Garante que o texto fique acima do grid */
.hero--pulsar .container {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center; /* Garante que tudo fique centralizado */
}

/* Animação do Ícone de Robô/Tech */
.tech-pulse-icon {
    font-size: 4rem; color: var(--color-pulsar-accent);
    margin-bottom: 2rem; display: inline-block;
    filter: drop-shadow(0 0 10px rgba(76, 201, 240, 0.5));
    animation: pulseGlow 3s infinite;
}
@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 10px rgba(76, 201, 240, 0.5)); }
    50% { opacity: 0.8; transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(76, 201, 240, 0.8)); }
}

/* --- ESTILOS DAS SEÇÕES SEGUINTES (Equipamentos) --- */

/* Tech Cards (Dark or Light variant) */
.card--tech {
    background: white; border: 1px solid #e2e8f0;
    padding: 2.5rem; border-radius: 8px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}
.card--tech::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--color-pulsar-blue), var(--color-pulsar-accent));
    transform: scaleX(0); transform-origin: left; transition: 0.4s;
}
.card--tech:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(38, 83, 143, 0.15);
}
.card--tech:hover::before { transform: scaleX(1); }

/* Specs Tags */
.spec-tag {
    display: inline-block; padding: 4px 12px;
    background: rgba(38, 83, 143, 0.1);
    color: var(--color-pulsar-blue);
    font-size: 0.75rem; font-weight: 600;
    border-radius: 4px; margin: 0 4px 8px 0;
    border: 1px solid rgba(38, 83, 143, 0.2);
}

/* Coming Soon Box */
.coming-soon-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    border: 1px solid rgba(38, 83, 143, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.coming-soon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(38, 83, 143, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-pulsar-accent), var(--color-pulsar-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(38, 83, 143, 0.4); }
    50% { box-shadow: 0 0 40px rgba(38, 83, 143, 0.7); }
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(38, 83, 143, 0.2);
    color: var(--color-pulsar-accent);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(38, 83, 143, 0.4);
    margin-bottom: 1.5rem;
}

.coming-soon-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 1rem;
}

.coming-soon-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coming-soon-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.coming-soon-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(38, 83, 143, 0.15);
    border: 1px solid rgba(38, 83, 143, 0.3);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.coming-soon-tag i {
    color: var(--color-pulsar-accent);
    font-size: 1.1rem;
}

.coming-soon-tag:hover {
    background: rgba(38, 83, 143, 0.3);
    border-color: var(--color-pulsar-accent);
    transform: translateY(-2px);
}

.coming-soon-sub {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

@media (max-width: 600px) {
    .coming-soon-box {
        padding: 40px 20px;
    }
    .coming-soon-tag {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* Catálogo Neoagro - Coming Soon */
.catalog-coming-soon {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(179, 255, 94, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.catalog-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #72A724, #B3FF5E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a3a1a;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 20px rgba(179, 255, 94, 0.4); }
    50% { box-shadow: 0 0 40px rgba(179, 255, 94, 0.7); }
}

.catalog-badge {
    display: inline-block;
    background: rgba(179, 255, 94, 0.2);
    color: #B3FF5E;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(179, 255, 94, 0.4);
    margin-bottom: 1.5rem;
}

.catalog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #B3FF5E;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.catalog-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.catalog-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.catalog-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(179, 255, 94, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.catalog-feature i {
    color: #B3FF5E;
    font-size: 1.5rem;
}

.catalog-feature:hover {
    background: rgba(179, 255, 94, 0.15);
    border-color: #B3FF5E;
    transform: translateY(-3px);
}

.catalog-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.catalog-sub i {
    color: #B3FF5E;
    margin-right: 8px;
}

@media (max-width: 600px) {
    .catalog-coming-soon {
        padding: 40px 20px;
    }
    .catalog-feature {
        padding: 15px 20px;
    }
}

/* Botão outline Neoagro */
.btn--neoagro-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    color: #B3FF5E;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid #B3FF5E;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--neoagro-outline:hover {
    background: #B3FF5E;
    color: #1a3a1a;
}

/* Feature Grid Dark */
.bg-tech-dark {
    background: var(--color-pulsar-dark);
    color: white; position: relative;
}
.feature-tech { text-align: center; padding: 2rem; }
.feature-tech i {
    font-size: 3rem; margin-bottom: 1.5rem;
    background: -webkit-linear-gradient(45deg, var(--color-pulsar-accent), var(--color-pulsar-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* =========================================
   14. SEÇÃO PREMIUM: CONSULTORIA
   ========================================= */

.premium-consulting {
    position: relative;
    background: #0b1623; /* Azul Quase Preto (Sofisticado) */
    padding: 6rem 0;
    overflow: hidden;
    color: white;
}

/* Padrão de fundo sutil (Grid tecnológica) */
.consulting-bg-pattern {
    position: absolute; inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

/* Layout Grid */
.consulting-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .consulting-grid { grid-template-columns: 1fr; text-align: center; }
}

/* Tipografia e Badge */
.consulting-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15); /* Fundo Dourado Transparente */
    color: #d4af37; /* Dourado */
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.consulting-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gold {
    color: #d4af37; /* Cor Ouro */
    font-style: italic;
    font-family: var(--font-neoprag-display); /* Usa a fonte serifada para elegância */
}

.consulting-desc {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 550px;
}

@media (max-width: 900px) { .consulting-desc { margin: 0 auto 2.5rem; } }

/* Botão Premium (Dourado) */
.btn--gold {
    background: linear-gradient(135deg, #d4af37, #b49023);
    color: #0b1623;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 6px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ecc962;
}

.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    color: #000;
}

/* Card Visual (Efeito de Vidro) */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.glass-card h3 {
    font-size: 1.3rem; margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

/* Lista de Benefícios */
.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.premium-list li:last-child { margin-bottom: 0; }

.icon-gold {
    width: 45px; height: 45px; flex-shrink: 0;
    background: linear-gradient(135deg, #2a3b4c, #15202b);
    border: 1px solid #d4af37;
    color: #d4af37;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

.premium-list strong {
    display: block; color: white; font-size: 1.1rem; margin-bottom: 0.3rem;
}

.premium-list p {
    font-size: 0.9rem; color: #a0aec0; margin: 0;
}

/* =========================================
   15. RODAPÉ PADRONIZADO (MULTI-TEMAS)
   ========================================= */

.main-footer {
    color: #e2e8f0;
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

/* --- VARIAÇÕES DE CORES DO RODAPÉ --- */
.footer--fs {
    background: #0f1c2e; /* Azul Quase Preto */
    border-top: 4px solid var(--color-blue-accent);
}

.footer--neoprag {
    background: #23330d; /* Verde Floresta Profundo */
    border-top: 4px solid var(--color-neoprag);
}

.footer--neoagro {
    background: linear-gradient(to bottom, #2a3b15, #1a1a1a); /* Agro Dark */
    border-top: 4px solid var(--color-neoagro);
}

.footer--pulsar {
    background: #050a14; /* Tech Black */
    border-top: 4px solid var(--color-pulsar-accent);
}

/* --- LAYOUT DO RODAPÉ --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

/* Colunas */
.footer-col h4 {
    color: white; font-size: 1.1rem; margin-bottom: 1.5rem;
    text-transform: uppercase; letter-spacing: 1px;
}

.footer-logo-img {
    height: 100px; width: auto; object-fit: contain;
    filter: brightness(0) invert(1); /* Deixa a logo branca */
    margin-bottom: 1rem;
}

.footer-slogan {
    opacity: 0.7; font-style: italic; margin-bottom: 1.5rem; display: block;
}

.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: #b0b0b0; transition: 0.3s; }
.footer-links a:hover { color: white; padding-left: 5px; }

.footer-contact li {
    margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 10px; color: #b0b0b0;
}
.footer-contact i { margin-top: 4px; color: white; }

.footer-social { display: flex; gap: 15px; margin-top: 1rem; }
.social-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: white; transition: 0.3s;
}
.social-btn:hover { background: white; color: #000; transform: translateY(-3px); }

/* Botão Licenciados */
.btn-licenciados {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.2rem;
    padding: 10px 20px;
    background: linear-gradient(135deg, #72A724, #8ABE49);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(114, 167, 36, 0.3);
}

.btn-licenciados:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(114, 167, 36, 0.5);
    background: linear-gradient(135deg, #8ABE49, #72A724);
}

.btn-licenciados i {
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem; opacity: 0.6;
}
/* =========================================
   CRÉDITOS DO DESENVOLVEDOR (FOOTER)
   ========================================= */

.dev-credits {
    margin-top: 0.5rem; /* Espaço entre o copyright e o crédito */
    font-size: 0.8rem;
    opacity: 0.8;
}

.dev-credits a {
    color: inherit; /* Usa a cor do texto do rodapé */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.dev-credits a:hover {
    color: #ffffff; /* Fica branco brilhante ao passar o mouse */
    text-decoration: underline;
}
/* =========================================
   CORREÇÃO: TÍTULO DA CAPA NEOPRAG (BRANCO)
   ========================================= */

/* Forçamos a cor branca APENAS no título da capa */
.hero--neoprag .hero__title {
    color: #ffffff !important; /* O !important garante que o branco vença o verde escuro */
    text-shadow: 0 4px 20px rgba(0,0,0,0.9); /* Sombra forte para destacar da foto */
}

/* Mantém a parte de baixo (Controle de Pragas) em verde claro neon */
.hero--neoprag .hero__title span {
    color: #B3FF5E !important;
}
/* =========================================
   15. SEÇÃO DE PLANOS & PREÇOS (PREMIUM)
   ========================================= */

/* Títulos de Categoria (Residencial vs Empresarial) */
.pricing-category-title {
    font-family: var(--font-neoprag-display);
    font-size: 1.8rem;
    color: var(--color-neoprag-forest);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pricing-category-title i {
    font-size: 2rem;
    color: var(--color-neoprag-dark);
}

.pricing-category-title .subtitle {
    font-family: var(--font-neoprag-body);
    font-size: 0.9rem;
    color: #666;
    background: #eef5e5;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.combo-title {
    text-align: center;
    font-size: 1.4rem;
    color: var(--color-neoprag-gray);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Divisor de Seção */
.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    margin: 4rem 0;
}

.mt-large { margin-top: 4rem; }

/* --- CARTÕES SIMPLES (Serviços Individuais) --- */
.pricing-card.simple {
    background: white;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.pricing-card.simple:hover {
    border-color: var(--color-neoprag-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-card.simple h4 {
    font-size: 1.1rem;
    color: var(--color-neoprag-forest);
    margin-bottom: 0.5rem;
}

.pricing-card.simple .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-neoprag-dark);
    margin-bottom: 0.5rem;
}

.pricing-card.simple p {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1rem;
}

/* Botão Outline (Borda Apenas) */
.btn--outline-neoprag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--color-neoprag-dark);
    color: var(--color-neoprag-dark);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    width: 100%;
}

.btn--outline-neoprag:hover {
    background: var(--color-neoprag-dark);
    color: white;
}

/* --- CARTÕES DESTAQUE (COMBOS) --- */
.pricing-card.featured {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2.5rem;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(114, 167, 36, 0.2);
}

/* Bordas coloridas para identificar os planos */
.pricing-card.featured.bronze { border-top: 6px solid #cd7f32; }
.pricing-card.featured.silver { border-top: 6px solid #a0a0a0; }
.pricing-card.featured.gold   { border-top: 6px solid #d4af37; }
.pricing-card.featured.full-power { border-top: 6px solid #000; background: #fafafa; }

.card-header { text-align: center; margin-bottom: 1.5rem; }
.card-header h3 {
    font-size: 1.5rem;
    color: var(--color-neoprag-forest);
    margin-bottom: 0.5rem;
}

/* Badge (Tag de destaque) */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: #f0f0f0;
    color: #666;
}

.badge.popular { background: var(--color-neoprag-primary); color: #3C5518; }
.badge.premium { background: #d4af37; color: white; }

/* Preço Grande */
.price-box {
    text-align: center;
    color: var(--color-neoprag-gray);
    margin-bottom: 2rem;
}

.price-box .currency { font-size: 1.2rem; vertical-align: top; font-weight: 600; }
.price-box .amount { font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--color-neoprag-dark); }
.price-box .cents { font-size: 1.2rem; font-weight: 600; }

/* Lista de Benefícios */
.features-list {
    margin-bottom: 2rem;
    flex-grow: 1; /* Empurra o botão para baixo para alinhar todos */
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed #eee;
}

.features-list li:last-child { border-bottom: none; }

.features-list i {
    color: var(--color-neoprag-dark);
    font-size: 1.1rem;
}

/* Botão Cheio */
.full-width { width: 100%; text-align: center; display: block; }
/* =========================================
   AJUSTE LOGO PULSAR-X (CABEÇALHO DARK)
   ========================================= */

.header--pulsar .header__brand {
    display: flex;
    align-items: center;
}

.header--pulsar .header__logo-img {
    height: 90px !important; /* Tamanho ajustado */
    width: auto;
    object-fit: contain;
    
    /* TRUQUE: Inverte as cores para ficar BRANCO PURO no fundo escuro */
    filter: brightness(0) invert(1) !important;
    
    transition: all 0.3s ease;
}

/* Efeito Tech ao passar o mouse: Brilho Neon Ciano */
.header--pulsar .header__logo-img:hover {
    transform: scale(1.05);
    /* Mantém branco e adiciona uma sombra luminosa azul/ciano */
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(76, 201, 240, 0.8)) !important;
    opacity: 1;
}
/* =========================================
   AJUSTES FINAIS RODAPÉ PULSAR-X
   ========================================= */

/* Força a cor Ciano nos ícones e hover dos links */
.footer--pulsar .footer-contact i,
.footer--pulsar .footer-links a:hover,
.footer--pulsar .social-btn:hover {
    color: #4cc9f0 !important; /* Ciano Neon */
}

.footer--pulsar .footer-col h4 {
    color: #4cc9f0; /* Títulos em Ciano */
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
}

/* Garante que a logo fique branca brilhante no fundo preto */
.footer--pulsar .footer-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(76, 201, 240, 0.5));
}
/* =========================================
   BOTÃO ÁREA DO CLIENTE (HEADER) - ATUALIZADO
   ========================================= */

.btn-client-area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    
    /* MUDANÇA NAS MARGENS: */
    margin-left: 20px;   /* Afasta do botão de orçamento que está à esquerda */
    margin-right: 0;     /* Não precisa de margem na direita pois é o último item */
    
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap; /* Garante que o texto não quebre linha */
}

.btn-client-area i {
    font-size: 1.3rem; /* Ícone levemente maior */
}

.btn-client-area:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}
/* =========================================
   BOTÃO "IA ESPECIALISTA" (CORRIGIDO)
   ========================================= */

.btn--ia {
    margin-left: 30px;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    
    /* Gradiente Azul Tech */
    background: linear-gradient(135deg, var(--color-blue-accent), #2a4b7c);
    color: white;
    
    font-weight: 600;
    font-size: 0.95rem; /* Aumentei levemente para ficar legível em minúsculas */
    border: 1px solid rgba(255,255,255,0.2);
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    
    /* AQUI ESTÁ A CORREÇÃO: Removemos o uppercase */
    text-transform: none; 
    letter-spacing: normal;
}

.btn--ia:hover {
    background: white;
    color: var(--color-navy-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(58, 95, 143, 0.6);
}
/* =========================================
   SEÇÃO MAPA (CORRIGIDO FINAL)
   ========================================= */

.section-map {
    padding: 6rem 0;
    background: #ffffff; 
    border-top: 1px solid #f0f0f0;
}

.map-header {
    margin-bottom: 3rem; 
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 2rem;
    align-items: center; 
}

@media (max-width: 900px) {
    .map-grid { grid-template-columns: 1fr; }
    .map-visual { margin-top: 2rem; }
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.loc-card {
    display: flex; 
    align-items: center; 
    gap: 1.5rem;
    background: #fff; 
    padding: 1.5rem;
    border-radius: 12px; 
    border: 1px solid #eee; 
    transition: transform 0.3s, box-shadow 0.3s;
}

.loc-card:hover { 
    transform: translateX(10px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
}

.loc-card.highlight { 
    border-left: 4px solid var(--color-blue-accent); 
}

/* --- BADGES (BOLINHAS) --- */
.state-badge {
    width: 50px; 
    height: 50px; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-weight: 800; 
    color: white !important; /* Texto Branco Obrigatório */
    flex-shrink: 0;
}

/* CLASSE MATRIZ (VERDE) */
.state-badge.matriz { 
    background-color: #3C5518 !important; 
}

/* CLASSE FILIAL (AZUL) */
.state-badge.filial { 
    background-color: #26538F !important; 
}
/* ------------------------- */

.unit-type { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    color: #999; 
    font-weight: 600; 
}

.section-subtitle-sm { 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 1px; 
    color: #888; 
    font-weight: 700; 
    display: block; 
    margin-bottom: 0.5rem; 
}

.section-title-map { 
    font-size: 2.2rem; 
    color: var(--color-navy-primary); 
    margin-bottom: 0.5rem; 
}

.map-visual {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 0; 
}

.map-img {
    width: 100%;       
    height: auto;
    max-height: 650px; 
    object-fit: contain;
    mix-blend-mode: multiply; 
}
/* =========================================
   NOTIFICAÇÃO DE SUCESSO (TOAST)
   ========================================= */

.toast {
    /* Estado Inicial: Escondido */
    visibility: hidden;
    opacity: 0;
    
    /* Posição: Flutuante no centro inferior da tela */
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 10000; /* Fica acima de tudo */
    
    /* Estilo Visual */
    background-color: #4caf50; /* Verde Sucesso */
    color: white;
    min-width: 300px;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    font-weight: 600;
    font-size: 0.95rem;
    
    /* Animação Suave */
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.toast i {
    font-size: 1.2rem;
}

/* Classe que o JavaScript adicionará para mostrar a mensagem */
.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px; /* Sobe um pouquinho ao aparecer */
}
/* =========================================
   LINKS LEGAIS NO RODAPÉ (AJUSTE)
   ========================================= */

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Espaço entre as linhas do final */
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1); /* Linha divisória sutil */
    margin-top: 2rem;
}

/* Container dos links (Política e Termos) */
.footer-legal-row {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
}

.footer-legal-row a {
    color: rgba(255, 255, 255, 0.6); /* Cor discreta */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal-row a:hover {
    color: white; /* Fica branco ao passar o mouse */
    text-decoration: underline;
}

/* Separador "|" entre os links (opcional, fica elegante) */
.footer-legal-row span.separator {
    color: rgba(255, 255, 255, 0.3);
}
/* =========================================
   BANNER DE COOKIES (LGPD)
   ========================================= */

.cookie-banner {
    position: fixed;
    bottom: -100%; /* Começa escondido lá embaixo */
    left: 20px;
    right: 20px;
    z-index: 99999; /* Acima de tudo */
    display: flex;
    justify-content: center;
    transition: bottom 0.5s ease-in-out; /* Animação suave ao subir */
}

/* Quando o JS ativar, ele sobe */
.cookie-banner.show {
    bottom: 20px;
}

.cookie-content {
    background: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 900px;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--color-blue-accent);
    font-weight: 700;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.btn-accept-cookies {
    background-color: var(--color-neoprag-forest); /* Verde da marca */
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap; /* Não quebra o texto do botão */
    transition: transform 0.2s, background 0.2s;
}

.btn-accept-cookies:hover {
    background-color: #2e4412; /* Verde mais escuro */
    transform: scale(1.05);
}

/* Ajuste para Celular */
@media (max-width: 768px) {
    .cookie-banner.show { bottom: 0; left: 0; right: 0; }
    .cookie-content {
        flex-direction: column;
        border-radius: 20px 20px 0 0; /* Arredonda só em cima */
        gap: 1rem;
        text-align: center;
    }
    .btn-accept-cookies { width: 100%; }
}
/* =========================================
   CHATBOT WIDGET (INTEGRADO COM N8N)
   ========================================= */

/* Botão Flutuante */
.chat-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #72A724, #8ABE49);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(114, 167, 36, 0.4);
    transition: all 0.3s ease;
    z-index: 9998;
    font-size: 1.5rem;
}

.chat-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 35px rgba(114, 167, 36, 0.6);
}

.chat-button i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Janela do Chat */
.chat-window {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
    overflow: hidden;
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header do Chat */
.chat-header {
    background: linear-gradient(135deg, #3C5518, #72A724);
    color: white;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px 16px 0 0;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.chat-header-info i {
    font-size: 1.3rem;
}

.close-chat-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.close-chat-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* Área de Mensagens */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

/* Mensagens */
.message {
    display: flex;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #72A724, #8ABE49);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.message-content {
    max-width: 70%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.bot-message .message-content {
    background: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.user-message .message-content {
    background: linear-gradient(135deg, #72A724, #8ABE49);
    color: white;
    border-bottom-right-radius: 4px;
}

/* Indicador de Digitação */
.typing-indicator .message-content {
    padding: 0.8rem 1.5rem;
}

.typing-dots {
    display: flex;
    gap: 5px;
    align-items: center;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #72A724;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Input de Mensagem */
.chat-input-container {
    display: flex;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e5e7eb;
    gap: 10px;
}

#chatInput {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

#chatInput:focus {
    border-color: #72A724;
}

.send-message-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #72A724, #8ABE49);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    font-size: 1rem;
}

.send-message-btn:hover {
    transform: scale(1.1);
}

.send-message-btn:active {
    transform: scale(0.95);
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .chat-window {
        width: calc(100% - 20px);
        right: 10px;
        left: 10px;
        bottom: 90px;
        height: 500px;
    }

    .chat-button {
        bottom: 20px;
        right: 20px;
    }
}
/* =================================================================
   HERO FINAL: IDÊNTICO AO VÍDEO E FOTO 2
   ================================================================= */

/* 1. O Fundo Exato (Azul Petróleo Muito Escuro e Fosco) */
#hero-video-ref {
    background-color: #182432 !important; /* Azul Navy profundo e fosco */
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    font-family: 'Montserrat', sans-serif !important;
}

/* 2. Layout Lado a Lado Rígido */
#hero-video-ref .container-video {
    width: 100%;
    max-width: 1250px; /* Um pouco mais largo para o texto caber */
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- TEXTO (ESQUERDA) --- */
#hero-video-ref .content-video {
    flex: 1;
    text-align: left;
}

#hero-video-ref h1 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700; 
    font-size: 4.2rem; /* FONTE GIGANTE */
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

#hero-video-ref h1 strong {
    font-weight: 800; /* Extra Bold */
    color: #ffffff;   /* Branco Puro (Sem verde) */
    display: block;   
}

.subtitle-video {
    color: #5680b0; /* Azul acinzentado */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.desc-video {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Botões do Vídeo */
.btns-video {
    display: flex;
    gap: 15px;
}

.btn-video-solid {
    background-color: #264a7a; /* Azul sólido */
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #264a7a;
}

.btn-video-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4); /* Borda cinza clara */
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
}
.btn-video-outline:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.05);
}

/* --- CARDS (DIREITA) --- */
#hero-video-ref .cards-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; 
    width: 380px; 
}

.card-video {
    background: rgba(30, 45, 60, 0.4); /* Fundo escuro sutil */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda muito fina */
    border-radius: 6px; /* Cantos pouco arredondados (quadrados) */
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s;
}

.card-video:hover {
    background: rgba(40, 55, 70, 0.6);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-video .val {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem; /* Número grande */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1;
}

.card-video .lbl {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #A0B0C0; /* Cinza azulado */
    line-height: 1.3;
    font-weight: 500;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    #hero-video-ref .container-video {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    #hero-video-ref .content-video {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .desc-video { text-align: center; }
    .btns-video { justify-content: center; }
}

/* =================================================================
   FS CONSULTORIA - CORPORATE PREMIUM (B2B)
   Estilo: Limpo, Sério, Moderno, Tecnológico
   ================================================================= */

/* Variáveis Corporate */
.page-fs-corporate {
    --corp-bg: #182432;
    --corp-bg-light: #1e2d3d;
    --corp-text: #ffffff;
    --corp-text-muted: #a0aec0;
    --corp-gold: #D4AF37;
    --corp-gold-light: #e8c547;
    --corp-cyan: #4CC9F0;
    --corp-cyan-light: #72d4f4;
    --corp-glass-bg: rgba(30, 45, 60, 0.6);
    --corp-glass-border: rgba(255, 255, 255, 0.1);
}

/* Header Corporate */
.header--corporate {
    background: rgba(24, 36, 50, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header--corporate .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.header--corporate .nav-link:hover {
    color: #D4AF37;
}

.btn-corporate-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #D4AF37, #e8c547);
    color: #182432;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.btn-corporate-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* HERO CORPORATE */
.hero-corporate {
    background: var(--corp-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-corporate__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(76, 201, 240, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-corporate__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-corporate__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--corp-gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-corporate__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--corp-text);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #D4AF37, #e8c547, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-corporate__subtitle {
    font-size: 1.1rem;
    color: var(--corp-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-corporate__desc {
    font-size: 1.1rem;
    color: var(--corp-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-corporate__actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Botões Corporate */
.btn-corporate-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #D4AF37, #e8c547);
    color: #182432;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-corporate-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-corporate-primary.large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-corporate-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--corp-text);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-corporate-outline:hover {
    border-color: var(--corp-gold);
    color: var(--corp-gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Stats Grid (Hero Visual) */
.hero-corporate__visual {
    display: flex;
    justify-content: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 400px;
}

.stat-card {
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
}

.stat-icon.gold {
    background: rgba(212, 175, 55, 0.2);
    color: var(--corp-gold);
}

.stat-icon.cyan {
    background: rgba(76, 201, 240, 0.2);
    color: var(--corp-cyan);
}

.stat-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--corp-text);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--corp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Glass Card */
.glass-card {
    background: var(--corp-glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--corp-glass-border);
    border-radius: 16px;
}

.glass-card-dark {
    background: rgba(24, 36, 50, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

/* SECTION SOLUTIONS (3 Pilares) */
.section-solutions {
    background: var(--corp-bg);
    padding: 100px 0;
}

.section-header-corporate {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--corp-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-badge.dark {
    background: rgba(24, 36, 50, 0.8);
    color: var(--corp-gold);
    border-color: rgba(212, 175, 55, 0.5);
}

.section-title-corporate {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--corp-text);
    margin-bottom: 1rem;
}

.section-title-corporate.dark {
    color: #182432;
}

.section-desc-corporate {
    font-size: 1.1rem;
    color: var(--corp-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-desc-corporate.dark {
    color: #555;
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pillar-card.featured {
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(24, 36, 50, 0.8) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--corp-gold);
    color: #182432;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.pillar-icon.gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--corp-gold);
}

.pillar-icon.cyan {
    background: rgba(76, 201, 240, 0.15);
    color: var(--corp-cyan);
}

.pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--corp-text);
    margin-bottom: 15px;
}

.pillar-desc {
    font-size: 0.95rem;
    color: var(--corp-text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--corp-text-muted);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-list li:last-child {
    border-bottom: none;
}

.pillar-list li i {
    color: var(--corp-gold);
    font-size: 0.8rem;
}

.pillar-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-accent.gold {
    background: linear-gradient(90deg, var(--corp-gold), transparent);
}

.pillar-accent.cyan {
    background: linear-gradient(90deg, var(--corp-cyan), transparent);
}

.pillar-card:hover .pillar-accent {
    opacity: 1;
}

/* SECTION DIFFERENTIALS */
.page-fs-corporate .section-differentials {
    background: var(--corp-bg-light);
    padding: 100px 0;
}

.page-fs-corporate .differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.page-fs-corporate .differential-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(24, 36, 50, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: none;
    box-shadow: none;
    margin-bottom: 0;
}

.page-fs-corporate .differential-item:hover {
    background: rgba(30, 50, 70, 0.85);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(10px);
}

.page-fs-corporate .differential-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.page-fs-corporate .differential-icon i {
    color: var(--corp-gold) !important;
    font-size: 1.5rem;
    margin: 0;
    min-width: auto;
}

.page-fs-corporate .differential-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.page-fs-corporate .differential-content p {
    font-size: 0.9rem;
    color: var(--corp-text-muted);
    line-height: 1.6;
}

.page-fs-corporate .differential-item:hover .differential-content h4 {
    color: var(--corp-gold);
}

.page-fs-corporate .differential-item:hover .differential-icon {
    background: rgba(212, 175, 55, 0.25);
}

/* SECTION CTA CORPORATE */
.section-cta-corporate {
    background: var(--corp-bg);
    padding: 100px 0;
}

.cta-corporate-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    gap: 40px;
}

.cta-corporate-content {
    flex: 1;
}

.cta-badge {
    display: inline-block;
    background: rgba(76, 201, 240, 0.15);
    color: var(--corp-cyan);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(76, 201, 240, 0.3);
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--corp-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--corp-text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-corporate-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon-box {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(76, 201, 240, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--corp-gold);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* SECTION COMPANIES */
.section-companies {
    background: #f8f9fa;
    padding: 80px 0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.company-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.company-link-card:hover {
    border-color: var(--corp-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.company-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #182432;
    margin-bottom: 5px;
}

.company-desc {
    font-size: 0.9rem;
    color: #666;
}

/* FOOTER CORPORATE */
.footer-corporate {
    background: #0f1720;
    color: white;
    padding: 60px 0 30px;
}

.footer-corporate .footer-slogan {
    color: var(--corp-gold);
}

.footer-corporate h4 {
    color: var(--corp-gold);
}

.footer-corporate .social-btn:hover {
    background: var(--corp-gold);
    color: #182432;
}

/* RESPONSIVO CORPORATE */
@media (max-width: 1024px) {
    .hero-corporate__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-corporate__content {
        order: 1;
    }

    .hero-corporate__visual {
        order: 2;
    }

    .hero-corporate__desc {
        margin: 0 auto 2rem;
    }

    .hero-corporate__actions {
        justify-content: center;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .page-fs-corporate .differentials-grid {
        grid-template-columns: 1fr;
    }

    .cta-corporate-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-desc {
        margin: 0 auto 2rem;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-corporate-visual {
        display: none;
    }

    .companies-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-corporate {
        padding: 100px 0 60px;
    }

    .hero-corporate__title {
        font-size: 2rem;
    }

    .stats-grid {
        max-width: 300px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .section-solutions,
    .section-differentials,
    .section-cta-corporate {
        padding: 60px 0;
    }

    .pillar-card {
        padding: 30px 25px;
    }

    .btn-corporate-primary,
    .btn-corporate-outline {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .btn-corporate-cta {
        display: none;
    }

    .page-fs-corporate .differential-item {
        flex-direction: column;
        text-align: center;
    }

    .page-fs-corporate .differential-icon {
        margin: 0 auto;
    }
}