/*
Theme Name: LBPay Theme
Description: Landing page institucional para LB Pay - Tecnologia financeira especializada em empresas de tecnologia financeira, apostas esportivas, iGaming e e-commerce de alto volume.
Author: LBPay Team
Version: 1.0.0
License: GPL2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lbpay-theme
Tags: landing-page, business, financial, responsive, custom-theme
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Suporte para usuários que preferem movimento reduzido (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Safe area para iPhones com notch */
@supports (padding: env(safe-area-inset-top)) {
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* Focus visível para acessibilidade */
*:focus-visible {
    outline: 2px solid var(--azul-primary);
    outline-offset: 2px;
}

/* Remover outline padrão mas manter para teclado */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Padronização Global de Seções */
section[id] {
    /* Altura padronizada */
    min-height: 75vh !important;
    
    /* Margin e Padding padronizados */
    margin: 0 !important;
    padding: 0 !important;
    
    /* Layout flexível centralizado */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Posicionamento */
    position: relative !important;
}

:root {
    /* Cores Principais - Azul Escuro Unificado */
    --azul-primary: #001F3F;
    --azul-hover: #003366;
    --azul-escuro: #001F3F;
    --preto: #1A1A1A;
    --texto-principal: #2D3748;
    --texto-secundario: #4A5568;
    
    /* Cores de Apoio */
    --verde-sucesso: #10B981;
    --branco: #FFFFFF;
    --cinza-claro: #F8F9FA;
    --cinza-borda: #E2E8F0;
    --cinza-bg: #F3F4F6;
    
    /* Aliases para compatibilidade */
    --primary-color: #001F3F;
    --secondary-color: #003366;
    --accent-color: #001F3F;
    --text-dark: #2D3748;
    --text-light: #4A5568;
    
    /* Cores Antigas (compatibilidade) */
    --azul-corporate: #001F3F;
    --azul-tecnologia: #001F3F;
    --cinza-escuro: #2D3748;
    --cinza-medio: #4A5568;
    
    /* Gradientes Suaves */
    --hero-gradient: linear-gradient(135deg, #001F3F 0%, #003366 100%);
    --accent-gradient: linear-gradient(135deg, #001F3F 0%, #003366 100%);
    
    /* Tipografia - Inter Modern */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    
    /* Espaçamentos Consistentes */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Sombras Suaves */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--texto-principal);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Padrão de texto para parágrafos em páginas internas */
section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333333;
}

section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #001F3F;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #001F3F;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Container de conteúdo padrão para páginas internas */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout de seções - Padrão */
section {
    padding: 4rem 0;
}

section[id] {
    min-height: auto;
    margin: 0;
    padding: 80px 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 0;
}

section .container {
    width: 100%;
    padding: 0 2.5rem;
}

/* Backgrounds Alternados - Controle manual para evitar conflitos */
.hero {
    background-color: var(--branco) !important;
}

.solucoes {
    background-color: var(--cinza-bg) !important;
}

.clientes {
    background-color: var(--cinza-claro) !important;
}

.metricas {
    background-color: var(--azul-escuro) !important;
}

/* Exceções para seções específicas que precisam de menos altura */
.header {
    min-height: auto;
    padding: 0;
}

@media (max-width: 768px) {
    section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .language-switcher {
        padding-left: 1rem;
    }
    
    /* Touch target aumentado para 44px (WCAG) */
    .language-switcher a {
        width: 44px;
        height: 44px;
    }
    
    /* Touch targets para todos os botões e links interativos */
    button,
    a.btn,
    .nav-toggle,
    .btn-primary,
    .btn-secondary,
    .btn-contact,
    .menu-cta a {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }
    
    /* Inputs de formulário otimizados para mobile */
    input,
    textarea,
    select,
    button[type="submit"] {
        min-height: 44px;
        font-size: 16px; /* Evita zoom automático no iOS */
        padding: 12px 16px;
    }
    
    textarea {
        min-height: 100px;
    }
}

/* Breakpoint para dispositivos mobile extra pequenos (iPhone SE, etc) */
@media (max-width: 375px) {
    body {
        font-size: 14px;
    }
    
    .page-hero-title,
    .hero-title {
        font-size: 1.375rem;
        line-height: 1.3;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .language-switcher a {
        width: 28px;
        height: 28px;
    }

    .logo img {
        height: 50px;
    }

    .header-content {
        padding: 1.25rem 0;
    }

    .site-nav .menu {
        top: 80px;
        right: 10px;
        min-width: 200px;
        padding: 1.25rem;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
        gap: 5px;
    }

    .nav-toggle-bar {
        width: 18px;
    }
}

/* Header - Multi-page Navigation */
.site-header {
    background: none !important;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.site-header .container {
    background: none !important;
    background-color: transparent !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    background: none !important;
    background-color: transparent !important;
    gap: 1rem;
    flex-wrap: nowrap;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    padding-left: 1.5rem;
    position: relative;
    z-index: 1003;
}

.language-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.7;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.language-switcher a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-switcher a:hover {
    opacity: 1;
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.language-switcher a.active {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.language-switcher img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
    transition: filter 0.3s ease;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
    position: relative;
}

.site-nav .menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
}

.site-nav .menu a {
    text-decoration: none;
    color: var(--branco);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav .menu a:hover,
.site-nav .menu a:focus-visible {
    color: var(--cinza-claro);
    opacity: 0.85;
}

.menu-cta a {
    background: var(--azul-primary);
    color: var(--branco);
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.18);
    transition: background 0.3s ease, transform 0.3s ease;
}

.menu-cta a:hover,
.menu-cta a:focus-visible {
    background: var(--azul-hover);
    transform: translateY(-1px);
    color: var(--branco);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.55);
}

.nav-toggle-bar {
    width: 20px;
    height: 2px;
    background: var(--branco);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] {
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.65);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn-contact {
    background: var(--azul-primary);
    color: var(--branco);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}



.btn-contact:hover {
    background: var(--azul-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--texto-principal);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
}

body.nav-open {
    overflow: hidden;
}

/* Overlay escuro quando menu mobile está aberto */
@media (max-width: 1024px) {
    body.nav-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}

@media (max-width: 1200px) {
    .site-nav .menu {
        gap: 1.25rem;
    }
}

/* Tablets em Landscape (entre 769px e 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-content {
        padding: 1.75rem 0;
    }

    .logo img {
        height: 60px;
    }

    .language-switcher a {
        width: 30px;
        height: 30px;
    }

    .site-nav .menu {
        top: 95px;
        right: 15px;
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 56px;
    }

    .language-switcher {
        padding-left: 0.5rem;
    }

    .language-switcher a {
        width: 30px;
        height: 30px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .site-nav .menu {
        top: 85px;
        right: 10px;
    }
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .site-nav {
        gap: 1.25rem;
        position: relative;
    }

    .site-nav .menu {
        position: fixed;
        top: 100px;
        right: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.95);
        border-radius: var(--radius-lg);
        min-width: 250px;
        max-width: 90vw;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        pointer-events: none;
        backdrop-filter: blur(12px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 1001;
    }

    .site-nav .menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-nav .menu a {
        width: 100%;
        font-size: 1rem;
    }

    .menu-cta a {
        width: 100%;
        text-align: center;
    }
}

/* Mobile pequeno (entre 481px e 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .header-content {
        padding: 1.5rem 0;
    }

    .logo img {
        height: 60px;
    }

    .language-switcher {
        padding-left: 0.75rem;
        gap: 0.4rem;
    }

    .language-switcher a {
        width: 32px;
        height: 32px;
    }

    .site-nav .menu {
        right: 10px;
        top: 90px;
        min-width: 220px;
    }
}

@media (max-width: 640px) {
    .header-content {
        padding: 1.5rem 0;
    }

    .logo {
        padding: 0;
    }

    .logo img {
        height: 63px;
    }

    .language-switcher {
        padding-left: 0.75rem;
        gap: 0.4rem;
    }

    .language-switcher a {
        width: 32px;
        height: 32px;
    }

    .site-nav .menu {
        right: 10px;
        top: 90px;
        min-width: 220px;
    }
}

/* Mobile muito pequeno (máximo 480px) */
@media (max-width: 480px) {
    .header-content {
        padding: 1.25rem 0;
        gap: 0.75rem;
    }

    .logo img {
        height: 54px;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .site-nav .menu {
        right: 8px;
        left: 8px;
        top: 82px;
        min-width: auto;
        max-width: calc(100vw - 16px);
    }

    .site-nav .menu a {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }

    .menu-cta a {
        padding: 0.75rem 1.5rem;
    }
}

.header:not(.scrolled) .btn-secondary {
    color: var(--branco);
}

.btn-secondary:hover {
    background: var(--cinza-bg);
    color: var(--azul-primary);
}

.header:not(.scrolled) .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--branco);
}

/* Header Responsivo */
@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
        padding: 0.75rem 0;
    }
    
    .btn-secondary,
    .btn-contact {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Hero Section - Com Vídeo de Fundo */
.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.46);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
    text-transform: none;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.65;
    color: #FFFFFF !important;
    margin: 0 auto 2.5rem auto;
    max-width: 1100px;
    text-align: center;
    display: block;
    padding: 0 20px;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hero Responsivo */
@media (max-width: 992px) {
    .hero {
        padding: 6rem 0 4rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Animações Suaves */
.hero-title,
.hero-subtitle {
    animation: fadeInUp 0.6s ease-out;
}

.hero-subtitle {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

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

/* Page Hero - Hero Interno para Páginas (350px com vídeo alinhado no topo) */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    padding-top: 80px;
    margin-top: 0;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-video {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.46);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.page-hero-content {
    text-align: center;
    padding: 0 2rem;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .page-hero {
        height: 280px;
    }
    
    .page-hero-title {
        font-size: 1.875rem;
    }
    
    .page-hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 250px;
    }
    
    .page-hero-title {
        font-size: 1.5rem;
    }
    
    .page-hero-description {
        font-size: 0.9375rem;
    }
}

/* Ajustes para seções após page-hero */
.page-hero + section {
    margin-top: 0 !important;
    padding-top: 4rem !important;
}

/* Base Inteligente - Redesigned Interactive Timeline */
.base-inteligente {
    background: linear-gradient(135deg, var(--azul-primary) 0%, #003366 100%);
    padding: 5rem 0;
}

.base-header {
    text-align: center;
    margin-bottom: 4rem;
}

.base-header h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.base-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #FFFFFF;
    max-width: 750px;
    margin: 0 auto;
}

.timeline-interactive {
    position: relative;
    padding: 3rem 0;
}

.timeline-track {
    position: absolute;
    top: 70px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    z-index: 0;
}

.timeline-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--azul-primary) 0%, #0066ff 100%);
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.timeline-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.4;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step-item.active {
    opacity: 1;
}

.step-marker {
    position: relative;
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    opacity: 0;
    animation: pulse 2s ease-out infinite;
}

.timeline-step-item.active .step-pulse {
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.step-number {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--azul-primary);
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-step-item.active .step-number {
    border-color: var(--azul-primary);
    background: var(--azul-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.25);
}

.step-card {
    background: white;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    min-height: 200px;
}

.timeline-step-item.active .step-card {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.step-icon {
    margin-bottom: 1rem;
    color: var(--azul-primary);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.timeline-step-item.active .step-icon {
    opacity: 1;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--azul-primary);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--texto-principal);
    margin-bottom: 0.875rem;
}

.step-time {
    display: inline-block;
    padding: 0.325rem 0.75rem;
    background: rgba(0, 31, 63, 0.06);
    color: var(--azul-primary);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.timeline-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 31, 63, 0.08);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--azul-primary);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--texto-principal);
    line-height: 1.4;
}

/* Home - Seções Destacadas */
.home-sections-overview {
    background: var(--cinza-bg);
    padding: 5rem 0;
}

.home-sections-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem auto;
}

.home-sections-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--azul-primary);
    margin-bottom: 1rem;
}

.home-sections-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--texto-secundario);
}

.home-sections-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.home-section-card {
    background: var(--branco);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-decoration: none;
    color: var(--texto-principal);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 31, 63, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-section-card:hover,
.home-section-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 31, 63, 0.18);
}

.home-section-label {
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--azul-primary);
}

.home-section-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--texto-secundario);
}

@media (max-width: 1024px) {
    .home-sections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-sections-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-sections-overview {
        padding: 3.5rem 0;
    }

    .home-sections-content h2 {
        font-size: 2.125rem;
    }
}

/* Badge Global - Estilo Stark Bank */
.section-badge {
    background: var(--azul-primary);
    color: var(--branco);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

/* Tipografia Global - Estilo Stark Bank */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.3;
    color: var(--preto);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    line-height: 1.7;
    color: var(--texto-secundario);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--preto);
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--texto-secundario);
    margin-bottom: 1.5rem;
}

.secondary-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--texto-secundario);
}

/* Classes Utilitárias */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-xs) !important; }
.mb-2 { margin-bottom: var(--spacing-sm) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-lg) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-xs) !important; }
.mt-2 { margin-top: var(--spacing-sm) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-lg) !important; }

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth transitions */
.transition {
    transition: all 0.2s ease;
}

.intro-text strong,
.secondary-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.base-inteligente-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Responsividade Base Inteligente */
@media (max-width: 992px) {
    .base-inteligente-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .base-inteligente-text {
        padding-right: 0;
        text-align: center;
    }
    
    .base-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .base-inteligente-grid {
        gap: 2rem;
    }
    
    .base-title {
        font-size: 1.75rem;
    }
    
    .base-description {
        font-size: 1rem;
    }
}

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





.btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.partners {
    margin-top: 3rem;
}

.partners p {
    color: #999;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0.6;
}

/* Manifesto Section */
.manifesto {
    /* Herda da regra global section[id] */
    color: white;
    overflow: visible;
    z-index: 100;
}

.manifesto-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.manifesto-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.0);
}

.manifesto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.manifesto .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
}

.manifesto-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.manifesto-image-container {
    position: absolute;
    top: -150px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 1200px;
    max-width: calc(100% - 4rem);
    z-index: 999;
    pointer-events: none;
}

.manifesto-phone {
    width: auto;
    max-width: 442px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    margin-left: 2rem;
}

.manifesto-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 55%;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 20;
}

.manifesto-text {
    position: relative;
    z-index: 2;
}

.manifesto-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin: 0 0 2rem 0;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.manifesto-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.manifesto-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.manifesto-intro strong,
.manifesto-description strong {
    color: white;
    font-weight: 700;
}

.manifesto-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.manifesto-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.manifesto-box:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.manifesto-box p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.manifesto-box strong {
    color: white;
    font-weight: 600;
}

.manifesto-box-highlight {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.manifesto-box-highlight p {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: white;
}



/* Animações */
@keyframes parallaxMove {
    0%, 100% {
        transform: scale(1.1) translateY(0px);
    }
    50% {
        transform: scale(1.15) translateY(-20px);
    }
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(100px);
    }
    50% {
        transform: translateY(80px);
    }
}

/* Client Segments */
.client-segments {
    /* Herda da regra global section[id] */
    background: white;
}

.quem-atendemos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.quem-atendemos-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-header-left {
    margin-bottom: 0;
}

.section-header-left h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.segments-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.segment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.segment-item:last-child {
    border-bottom: none;
}

.segment-item:hover {
    padding-left: 0.5rem;
    background: rgba(10, 36, 99, 0.02);
    border-radius: 8px;
    border-bottom-color: transparent;
}

.segment-icon-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(10, 36, 99, 0.1);
    border-radius: 10px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.segment-item:hover .segment-icon-simple {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.segment-item span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.closing-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.quem-atendemos-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container-parallax {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.quem-atendemos-image .image-box {
    max-height: 405px;
    max-width: 100%;
    overflow: hidden;
}

.parallax-image {
    position: absolute;
    bottom: -40px;
    left: -50px;
    width: 70%;
    height: 70%;
    z-index: 3;
    transform: translateY(0px);
    transition: transform 0.3s ease;
    opacity: 0.95;
    box-shadow: 
        0 25px 70px rgba(10, 36, 99, 0.25),
        0 10px 35px rgba(10, 36, 99, 0.15);
}

.parallax-image {
    animation: floatParallax 6s ease-in-out infinite;
}

.parallax-image:hover {
    transform: translateY(-15px);
    animation-play-state: paused;
}

.image-container-parallax:hover .parallax-image {
    transform: translateY(-10px);
}

.image-container-parallax:hover .image-box:first-child {
    transform: translateY(-5px);
}

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

.quem-atendemos-image .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.segment-card-compact {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.segment-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.segment-icon-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.segment-card-compact:hover .segment-icon-compact {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: scale(1.05);
}

.segment-content-compact {
    flex: 1;
    min-width: 0;
}

.segment-content-compact h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.segment-content-compact p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.segment-metric {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    font-weight: 600;
}

/* Nossa Visão Section */
/* Nossa Visão */
.nossa-visao {
    background: url('../../uploads/2025/09/Bg2-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

.nossa-visao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.8) 0%, rgba(30, 64, 175, 0.7) 50%, rgba(10, 36, 99, 0.8) 100%);
    z-index: 1;
}

.nossa-visao .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.visao-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.visao-content .section-badge {
    background: var(--azul-tecnologia);
    color: var(--branco);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 64, 175, 0.3);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    display: inline-block;
    margin-bottom: 1rem;
}

.visao-content h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2 !important;
}

.visao-content .intro-text {
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2rem !important;
}

.visao-pillars-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pillar-item:hover {
    background: rgba(10, 36, 99, 0.2);
    border-color: rgba(30, 64, 175, 0.3);
    transform: translateX(4px);
}

.pillar-item .pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(10, 36, 99, 0.3);
    border-radius: 10px;
    color: white;
    flex-shrink: 0;
}

.pillar-content h4 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.25rem !important;
    color: white !important;
}

.pillar-content p {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
}

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

.vision-statement-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.statement-image {
    width: 100%;
    height: 240px;
    margin: 0 0 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(10, 36, 99, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.statement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.statement-image img:hover {
    transform: scale(1.05);
}

.vision-statement-card h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: white !important;
    line-height: 1.3 !important;
}

.vision-statement-card p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
}

/* Responsividade Nossa Visão */
@media (max-width: 768px) {
    .visao-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .visao-content h2 {
        font-size: 1.75rem !important;
    }
    
    .pillar-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .pillar-item .pillar-icon {
        width: 48px;
        height: 48px;
    }
    
    .vision-statement-card {
        padding: 1.5rem;
    }
    
    .vision-statement-card h3 {
        font-size: 1.25rem !important;
    }
    
    .statement-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .visao-content h2 {
        font-size: 1.5rem !important;
    }
    
    .pillar-item {
        padding: 1rem;
    }
    
    .vision-statement-card {
        padding: 1.25rem;
    }
}

.visao-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.visao-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pillar:hover {
    background: rgba(10, 36, 99, 0.2);
    border-color: rgba(30, 64, 175, 0.3);
    transform: translateY(-2px);
}

.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(10, 36, 99, 0.3);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    color: white;
}

.pillar h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.pillar p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.visao-future {
    margin-bottom: 2.5rem;
}

.future-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.future-timeline {
    display: inline-block;
    background: rgba(10, 36, 99, 0.4);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.future-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.future-goals {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
    text-align: left;
}

.future-goals li {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-left: 3px solid rgba(10, 36, 99, 0.6);
}

.future-goals strong {
    color: white;
    font-weight: 600;
}

.visao-quote-final {
    text-align: center;
}

.visao-quote-final blockquote {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

.visao-quote-final .quote-icon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 36, 99, 0.4);
    padding: 0.75rem;
    border-radius: 50%;
    color: white;
}

.visao-quote-final p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 500;
}

.visao-quote-final cite {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    font-weight: 500;
}

.visao-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.visao-image-placeholder .placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.visao-image-placeholder svg {
    margin-bottom: 1rem;
    opacity: 0.6;
}

.visao-image-placeholder p {
    margin: 0.5rem 0;
    font-weight: 500;
}

.visao-image-placeholder small {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Diferenciais Section */
/* Soluções Section - Grid de Cards Estilo Stark Bank */
.solucoes {
    background: var(--cinza-bg);
    padding: var(--spacing-2xl) 0;
    margin-top: 4rem;
}

.solucoes-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.solucoes-header .section-badge {
    background: var(--azul-primary);
    color: var(--branco);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.solucoes-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--preto);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.solucoes-header .intro-text {
    font-size: 1.25rem;
    color: var(--texto-secundario);
    line-height: 1.7;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solucao-card {
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solucao-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--azul-primary);
}

.solucao-card .card-icon {
    width: 56px;
    height: 56px;
    background: var(--cinza-claro);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-primary);
    transition: all 0.2s ease;
}

.solucao-card:hover .card-icon {
    background: var(--azul-primary);
    color: var(--branco);
}

.solucao-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--preto);
    margin: 0;
    line-height: 1.4;
}

.solucao-card p {
    font-size: 1rem;
    color: var(--texto-secundario);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.solucao-card .card-link {
    color: var(--azul-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.solucao-card .card-link:hover {
    gap: 0.75rem;
}

/* Responsivo */
@media (max-width: 992px) {
    .solucoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .solucoes-grid {
        grid-template-columns: 1fr;
    }
    
    .solucoes-header h2 {
        font-size: 2rem;
    }
}

/* Clientes Section - Estilo Stark Bank */
.clientes {
    background: var(--cinza-claro);
    padding: var(--spacing-2xl) 0;
}

.clientes-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clientes-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--preto);
    margin-bottom: 0.5rem;
}

.clientes-header .intro-text {
    font-size: 1.125rem;
    color: var(--texto-secundario);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.logo-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-placeholder {
    padding: 1.5rem;
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.875rem;
    color: var(--texto-secundario);
    width: 100%;
    filter: grayscale(100%);
    transition: all 0.2s ease;
}

.logo-item:hover .logo-placeholder {
    filter: grayscale(0%);
    border-color: var(--azul-primary);
}

/* Clientes Responsivo */
@media (max-width: 992px) {
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .clientes-header h2 {
        font-size: 1.75rem;
    }
}

/* Métricas Section - Estilo Stark Bank */
.metricas {
    background: var(--azul-escuro);
    padding: var(--spacing-2xl) 0;
    color: var(--branco);
}

.metricas-header {
    text-align: center;
    margin-bottom: 3rem;
}

.metricas-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--branco);
    margin: 0;
    letter-spacing: -0.02em;
}

.metricas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.metrica-item {
    text-align: center;
}

.metrica-value {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--branco);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.metrica-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Métricas Responsivo */
@media (max-width: 992px) {
    .metricas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .metrica-value {
        font-size: 2.5rem;
    }
    
    .metricas-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .metricas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .metrica-value {
        font-size: 2rem;
    }
    
    .metricas-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .solucoes-grid {
        grid-template-columns: 1fr;
    }
    
    .solucoes-header h2 {
        font-size: 2rem;
    }
}

.diferencial-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--cinza-claro);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.diferencial-item:hover {
    background: var(--branco);
    border-color: var(--azul-tecnologia);
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(10, 36, 99, 0.1);
}

.diferencial-item .diferencial-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--azul-tecnologia);
    border-radius: 10px;
    color: white;
    flex-shrink: 0;
}

.diferencial-content h4 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--azul-corporate) !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.3 !important;
}

.diferencial-content p {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
    color: var(--cinza-medio) !important;
    margin: 0 !important;
}

.diferenciais-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.performance-highlight {
    background: linear-gradient(135deg, var(--azul-corporate) 0%, var(--azul-tecnologia) 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    color: white;
}

.performance-highlight h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: white !important;
    line-height: 1.3 !important;
}

.performance-highlight p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
}

.metrics-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-item {
    background: var(--cinza-claro);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.metric-item:hover {
    background: var(--branco);
    border-color: var(--azul-tecnologia);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 36, 99, 0.1);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azul-corporate);
    margin-bottom: 0.5rem;
    display: block;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--cinza-medio);
    font-weight: 500;
    line-height: 1.2;
}

/* Responsividade Nossos Diferenciais */
@media (max-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .diferenciais-content h2 {
        font-size: 1.75rem !important;
    }
    
    .diferencial-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .diferencial-item .diferencial-icon {
        width: 48px;
        height: 48px;
    }
    
    .performance-highlight {
        padding: 1.5rem;
    }
    
    .performance-highlight h3 {
        font-size: 1.25rem !important;
    }
    
    .highlight-icon {
        width: 64px;
        height: 64px;
    }
    
    .metrics-showcase {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .diferenciais-content h2 {
        font-size: 1.5rem !important;
    }
    
    .diferencial-item {
        padding: 0.75rem;
    }
    
    .performance-highlight {
        padding: 1.25rem;
    }
    
    .metric-value {
        font-size: 1.25rem;
    }
}

/* ========== COMO TRABALHAMOS NOVA SECTION ========== */
.como-trabalhamos-nova {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.trabalho-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trabalho-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 20px 0 25px 0;
    line-height: 1.2;
}

.trabalho-header .intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

.metodologia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.metodo-card {
    background: white;
    padding: 12px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
    min-height: 70px;
    display: flex;
    flex-direction: column;
}

.metodo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
    border-color: #3b82f6;
}

.card-number {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

.card-icon {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px solid #e2e8f0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-right: 8px;
}

.card-icon svg {
    width: 14px;
    height: 14px;
}

.metodo-card:hover .card-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-color: #2563eb;
    transform: scale(1.05);
}

.card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}

.card-content {
    flex: 1;
}

.metodo-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 3px 0;
    line-height: 1.2;
}

.metodo-card p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #64748b;
    margin: 0;
}

/* Card Destacado */
.metodo-destaque {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    transform: scale(1.02);
}

.metodo-destaque .card-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.metodo-destaque .card-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.metodo-destaque:hover .card-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.metodo-destaque h3 {
    color: white;
}

.metodo-destaque p {
    color: rgba(255, 255, 255, 0.9);
}

.card-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 600;
    margin-top: 4px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsividade */
@media (max-width: 992px) {
    .metodologia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .trabalho-header h2 {
        font-size: 2rem;
    }
    
    .metodo-card {
        padding: 10px 8px;
        min-height: 62px;
    }
    
    .card-icon {
        width: 26px;
        height: 26px;
        margin-right: 6px;
    }
    
    .card-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .metodo-card h3 {
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .como-trabalhamos-nova {
        padding: 60px 0;
    }
    
    .metodologia-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trabalho-header {
        margin-bottom: 40px;
    }
    
    .trabalho-header h2 {
        font-size: 1.8rem;
    }
    
    .trabalho-header .intro-text {
        font-size: 1.1rem;
    }
    
    .metodo-card {
        padding: 10px 8px;
        min-height: 62px;
    }
    
    .card-icon {
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }
    
    .card-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .metodo-card h3 {
        font-size: 0.8rem;
    }
    
    .metodo-card p {
        font-size: 0.7rem;
    }
    
    .metodo-destaque {
        transform: none;
    }
}



.team-image-placeholder small {
    font-size: 0.875rem;
    opacity: 0.8;
}





.proposito {
    background: var(--cinza-claro);
    padding: 3rem;
    border-radius: 20px;
    border-left: 6px solid var(--azul-tecnologia);
}

.proposito h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--azul-corporate);
    margin-bottom: 1.5rem;
}

.proposito p {
    font-size: 1.25rem;
    color: var(--cinza-medio);
    line-height: 1.7;
    font-style: italic;
}

/* Liderança Section */
.lideranca {
    padding: 4rem 0;
    background: var(--cinza-claro);
}

.lideranca h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--azul-corporate);
    margin-bottom: 1.5rem;
}

.executivos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.executivo-card {
    background: var(--branco);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(10, 36, 99, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.executivo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 36, 99, 0.15);
    border-color: var(--azul-tecnologia);
}

.executivo-card.contratacao {
    border: 2px dashed var(--azul-tecnologia);
    background: linear-gradient(45deg, var(--branco) 25%, transparent 25%, transparent 75%, var(--branco) 75%, var(--branco)),
                linear-gradient(45deg, var(--branco) 25%, var(--cinza-claro) 25%, var(--cinza-claro) 75%, var(--branco) 75%, var(--branco));
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.executivo-avatar {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.executivo-card h3 {
    font-size: 1.5rem;
    font-weight: 600;

/* Novos estilos liderança */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.leader-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.leader-card.hiring {
    border: 2px dashed var(--primary-color);
    background: linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white),
                linear-gradient(45deg, white 25%, #f8fafc 25%, #f8fafc 75%, white 75%, white);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.leader-photo {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-light);
}

.hiring-placeholder {
    background: linear-gradient(135deg, #f8fafc, var(--primary-color));
    color: white;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.leader-info {
    padding: 2rem;
}

.leader-info h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.leader-info h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.leader-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.leader-expertise span {
    background: #f1f5f9;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}
    color: var(--azul-corporate);
    margin-bottom: 0.5rem;
}

.executivo-card h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--azul-tecnologia);
    margin-bottom: 1.5rem;
}

.executivo-card p {
    color: var(--cinza-medio);
    line-height: 1.6;
    font-size: 1rem;
}

/* ==============================
   Seção de Contato
   ============================== */
.contato {
    background: #F8F9FA;
    padding: 0 0 5rem 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.contato-chamada {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 0;
}

.contato-chamada h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--azul-primary);
    letter-spacing: -0.02em;
}

.contato-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--texto-principal);
}

.contato-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    margin-bottom: 3rem;
}

.contato-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(0, 31, 63, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-primary);
}

.contato-feature-item span {
    font-size: 1rem;
    color: var(--texto-principal);
    font-weight: 500;
}

.contato-info-box {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 31, 63, 0.08);
    margin-top: auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--texto-principal);
    font-size: 0.9375rem;
    font-weight: 500;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--azul-primary);
}

/* Formulário */
.contato-formulario {
    background: var(--branco);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: auto;
    min-height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.formulario-contato {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: space-between;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.form-group label {
    font-weight: 600;
    color: var(--cinza-escuro);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.6rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--azul-tecnologia);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
    max-height: 80px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--azul-tecnologia);
    color: var(--branco);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: auto;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.form-disclaimer {
    font-size: 0.65rem;
    color: var(--cinza-medio);
    line-height: 1.3;
    text-align: center;
    margin-top: 0.5rem;
}

/* Mensagens de feedback do formulário */
.form-messages {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.form-messages.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-messages.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

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

/* Validação de campos */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #22c55e;
    background-color: #f0fdf4;
}

/* Loading state do botão */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-chamada h2 {
        font-size: 1.875rem;
    }
    
    .contato-formulario {
        padding: 1.5rem;
        height: auto;
        min-height: 40vh;
    }
    
    .formulario-contato {
        gap: 0.8rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    /* Manifesto responsivo */
    .manifesto-image-container {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 2rem;
        z-index: 10;
        align-items: center;
        justify-content: center;
    }
    
    .manifesto-content {
        max-width: 100%;
        margin-left: 0;
    }
    
    .manifesto .container {
        padding: 0 1.5rem;
    }
    
    .manifesto-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .manifesto-phone {
        max-width: 250px;
        margin-left: 0;
    }
}

/* ==============================
   Nossa Liderança Section
   ============================== */
.nossa-lideranca {
    /* Herda da regra global section[id] */
    background: var(--hero-gradient);
    color: var(--branco);
}

.nossa-lideranca::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.nossa-lideranca .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.lideranca-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.lideranca-content .section-badge {
    background: var(--azul-tecnologia);
    color: var(--branco);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
    display: inline-block;
    margin-bottom: 1rem;
}

.lideranca-content h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    color: var(--branco) !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.lideranca-content .intro-text {
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2rem !important;
}

.lideranca-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-lider {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

.stat-lider .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    display: block;
}

.stat-lider .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.lideranca-areas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.area-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.area-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    flex-shrink: 0;
}

.area-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.lideranca-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-highlight {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.team-highlight h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: white !important;
    line-height: 1.3 !important;
}

.team-highlight p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.expertise-bullet {
    width: 8px;
    height: 8px;
    background: var(--azul-tecnologia);
    border-radius: 50%;
    flex-shrink: 0;
}

.expertise-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Responsividade Nossa Liderança */
@media (max-width: 768px) {
    .lideranca-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lideranca-content h2 {
        font-size: 1.75rem !important;
    }
    
    .lideranca-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .area-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .area-icon {
        width: 40px;
        height: 40px;
    }
    
    .team-highlight {
        padding: 1.5rem;
    }
    
    .team-highlight h3 {
        font-size: 1.25rem !important;
    }
    
    .team-icon {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .lideranca-content h2 {
        font-size: 1.5rem !important;
    }
    
    .stat-lider {
        padding: 0.75rem;
    }
    
    .area-item {
        padding: 0.5rem;
    }
    
    .team-highlight {
        padding: 1.25rem;
    }
}

/* CSS antigo da liderança removido - nova estrutura implementada acima */

@media (max-width: 1024px) {
    .lideranca-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .base-inteligente-content-grid {
        gap: 3rem;
        grid-template-columns: 1fr 1.1fr;
    }
    
    .base-inteligente-text {
        padding-right: 1rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .intro-text {
        font-size: 1.125rem;
    }
    
    .secondary-text {
        font-size: 1rem;
    }
    
    .image-container {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .lideranca-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lider-card {
        padding: 1.5rem;
    }
    
    .photo-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .photo-placeholder svg {
        width: 60px;
        height: 60px;
    }
}

/* Performance & Animation Classes */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fade-in {
    opacity: 1;
}

.loaded {
    overflow-x: hidden;
}

.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

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

/* Parallax */
.parallax {
    will-change: transform;
}

/* Performance optimizations */
.segment-card,
.diferencial-card,
.feature-item,
.leader-card,
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Preload optimizations */
img {
    max-width: 100%;
    height: auto;
}

.placeholder-content {
    will-change: transform;
}

/* Welcome Section */
.welcome {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.welcome h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.welcome .highlight {
    color: #27ae60;
    font-style: italic;
}

.welcome p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
/* Footer - Estilo Stark Bank */
.footer {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 200px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 72px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--azul-primary);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--branco);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--branco);
}

.footer-certifications {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--branco);
}

.cert-item span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    gap: 2rem;
}

.footer-legal {
    flex: 1;
}

.legal-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Footer Responsivo */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-certifications {
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-column ul li {
        margin-bottom: 0.75rem;
    }
    
    .footer-certifications {
        justify-content: center;
        gap: 1rem;
    }
    
    .cert-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Páginas internas */
body.page {
    padding-top: 80px; /* Compensa altura do header fixo */
}

.page-header {
    background: var(--azul-corporate);
    color: var(--branco);
    padding: 60px 0;
    text-align: center;
    margin-top: 80px; /* Espaçamento para não ficar colado no header fixo */
    padding-top: 80px; /* Padding adequado para o conteúdo */
}

/* Correção específica quando carregado via index.php */
body:not(.page) .page-header {
    margin-top: 80px;
    padding-top: 80px;
}

/* Estilos específicos para páginas de compliance */
.compliance-page .page-header {
    margin-top: 80px !important;
    padding-top: 100px !important;
}

.compliance-page {
    padding-top: 0 !important;
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--branco);
}

.page-header-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
    background: var(--branco);
}

.content-section.alt {
    background: #f8f9fa;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-content .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--azul-corporate);
    margin-bottom: 1rem;
    text-align: center;
}

.section-content .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 3rem;
}

.section-content .section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.section-content .section-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--azul-corporate);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section-content .section-text p {
    margin-bottom: 1.5rem;
}

/* Layout de 4 colunas no footer */

/* Highlight Boxes para páginas de conformidade */
.highlight-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.highlight-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-box p {
    margin-bottom: 1rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-copyright {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-institutional {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.institutional-info-inline {
    text-align: center;
}

.institutional-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    line-height: 1.4;
    display: block;
}

.institutional-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Animations */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card,
.feature-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title-bold {
        font-size: 4rem;
    }
    
    .hero-title-light {
        font-size: 2.8rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .manifesto {
        padding: 4rem 0;
    }
    
    .manifesto-main-grid {
        gap: 3rem;
        grid-template-columns: 0.7fr 1.3fr;
    }
    
    .manifesto-image-container {
        min-height: 500px;
    }
    
    .manifesto-phone {
        max-width: 300px;
        transform: translateY(80px);
    }
    
    .manifesto-title {
        font-size: 2rem;
    }
    
    .manifesto-intro {
        font-size: 1.125rem;
    }
    
    .manifesto-description {
        font-size: 1rem;
    }
    
    .manifesto-boxes {
        gap: 0.75rem;
    }
    
    .manifesto-box p {
        font-size: 0.8rem;
    }
    
    .manifesto-box-highlight p {
        font-size: 0.85rem;
    }
    
    .quem-atendemos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .quem-atendemos-image {
        order: -1;
    }
    
    .quem-atendemos-image .image-box {
        max-width: 400px;
        max-height: 316px;
    }
    
    .parallax-image {
        width: 60%;
        height: 60%;
        bottom: -30px;
        left: -35px;
    }
    
    .segments-list {
        gap: 0.75rem;
    }
    
    .segment-item {
        justify-content: center;
        text-align: left;
        padding: 0.5rem;
    }
    
    .visao-content,
    .feature-content-alt {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-item.reverse .feature-content-alt {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-title-bold {
        font-size: 3.2rem;
    }
    
    .hero-title-light {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons a {
        text-align: center;
    }
    
    .manifesto {
        padding: 4rem 0;
    }
    
    .manifesto-content h2 {
        font-size: 2rem;
    }
    
    .manifesto-text .large-text {
        font-size: 1.25rem;
    }
    
    .manifesto-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .client-segments {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .section-description {
        font-size: 1.125rem;
    }
    
    .segments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quem-atendemos-grid {
        gap: 3rem;
    }
    
    .section-header-left h2 {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .segment-header {
        margin-bottom: 1.25rem;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-menu {
        display: none;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .manifesto h2,
    .quem-atendemos h2,
    .nossa-visao h2,
    .diferenciais h2,
    .como-atendemos h2,
    .lideranca h2,
    .cta-final h2 {
        font-size: 2.25rem;
    }
    
    .visao-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .visao-statement h3 {
        font-size: 1.5rem;
    }
    
    .visao-statement p {
        font-size: 1rem;
    }
    
    .future-card {
        padding: 2rem;
    }
    
    .visao-quote-final p {
        font-size: 1.125rem;
    }
    
    .clientes-grid,
    .diferenciais-grid,
    .executivos-grid {
        grid-template-columns: 1fr;
    }
    
    .pilares {
        margin-bottom: 2rem;
    }
    
    .pilar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title-bold {
        font-size: 2.8rem;
    }
    
    .hero-title-light {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
        border-radius: 10px;
    }
    
    .manifesto-content h2 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header-left h2 {
        font-size: 1.75rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .segment-item span {
        font-size: 0.9rem;
    }
    
    .segment-icon-simple {
        width: 36px;
        height: 36px;
    }
    
    .manifesto h2,
    .quem-atendemos h2,
    .nossa-visao h2,
    .diferenciais h2,
    .como-atendemos h2,
    .lideranca h2,
    .cta-final h2 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-content-alt {
        flex-direction: column !important;
        text-align: center;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
}

/* Utilities */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* =============================================
   NAVEGAÇÃO SMOOTH SCROLL & MELHORIAS DE UX
   ============================================= */

/* Scroll suave para toda a página */
html {
    scroll-behavior: smooth;
}

/* Ajuste para compensar header fixo */
section[id] {
    padding-top: 80px;
    margin-top: -80px;
}

/* Melhoria visual para links ativos no menu */
.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--primary-color);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Indicador visual para seção ativa */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Melhorias para dispositivos móveis */
/* Otimização para telas de notebook (altura limitada) */
@media (max-height: 900px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .manifesto,
    .client-segments,
    .nossa-visao,
    .diferenciais,
    .como-atendemos,
    .sobre-nos,
    .lideranca,
    .cta-final {
        padding: 3rem 0;
    }
    
    .visao-header {
        margin-bottom: 2rem;
    }
    
    .visao-header h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .visao-grid {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .future-card {
        padding: 1.5rem;
    }
    
    .visao-quote-final blockquote {
        padding: 1.5rem;
    }
}

@media (max-height: 700px) {
    .hero {
        min-height: 60vh;
    }
    
    .manifesto,
    .client-segments,
    .nossa-visao,
    .diferenciais,
    .como-atendemos,
    .sobre-nos,
    .lideranca,
    .cta-final {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .visao-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    section[id] {
        padding-top: 60px;
        margin-top: -60px;
    }
    
    .nav-menu {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero .container {
        max-width: 90%;
    }
    
    .hero-title {
        gap: 0.75rem;
    }
    
    .hero-title-bold {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-title-light {
        font-size: 1.875rem;
        line-height: 1.3;
    }
    
    .manifesto {
        padding: 4rem 0;
    }
    
    .manifesto-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .manifesto-image-container {
        order: 1;
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .manifesto-phone {
        max-width: 250px;
        transform: translateY(50px);
    }
    
    .manifesto-content {
        order: 2;
        gap: 2rem;
    }
    
    .manifesto-title {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .manifesto-intro {
        font-size: 1.125rem;
    }
    
    .manifesto-description {
        font-size: 1rem;
    }
    
    .manifesto-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .manifesto-box {
        padding: 1.25rem;
    }
    
    .manifesto-box p {
        font-size: 0.95rem;
    }
    
    .manifesto-box-highlight p {
        font-size: 1rem;
    }
    
    .base-inteligente {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .base-inteligente-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .base-inteligente-text {
        padding-right: 0;
        order: 2;
    }
    
    .base-inteligente-visual {
        order: 1;
    }
    
    .intro-text {
        font-size: 1.125rem;
    }
    
    .secondary-text {
        font-size: 1rem;
    }
    
    .image-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .parallax-elements-background,
    .parallax-elements-foreground {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero .container {
        max-width: 95%;
        padding: 0 1rem;
    }
    
    .hero-title {
        gap: 0.5rem;
    }
    
    .hero-title-bold {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-title-light {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .footer-institutional {
        padding: 0.5rem;
    }
    
    .institutional-text {
        font-size: 0.7rem;
        line-height: 1.3;
        word-break: break-word;
    }
}

/* ========================================
   NOVAS SEÇÕES - Timeline, Tecnologia, Dashboards, etc.
   ======================================== */

/* Base Inteligente - Timeline Animation */
.base-inteligente {
    background: linear-gradient(135deg, #001F3F 0%, #003366 100%);
    color: var(--branco);
}

.base-inteligente .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--branco);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.base-inteligente h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.timeline-animation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-step:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-step:nth-child(2) {
    animation-delay: 0.4s;
}

.timeline-step:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.timeline-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: var(--branco);
}

.timeline-icon svg {
    width: 40px;
    height: 40px;
}

.timeline-content {
    color: var(--branco);
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--branco);
}

.timeline-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    color: var(--branco);
}

.timeline-step h3 {
    font-size: 1.625rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.timeline-step p {
    font-size: 1.0625rem;
    opacity: 0.92;
    line-height: 1.6;
}

.timeline-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--branco);
    opacity: 0.9;
}

.timeline-connector {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.3) 0%, 
        rgba(255,255,255,0.6) 50%, 
        rgba(255,255,255,0.3) 100%);
    z-index: 0;
}

.base-impact {
    text-align: center;
    margin-top: 4rem;
}

.impact-phrase {
    font-size: 2rem;
    font-weight: 700;
    color: var(--branco);
    text-transform: none;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* Nossa Tecnologia */
.nossa-tecnologia {
    background: var(--branco);
}

.nossa-tecnologia .section-badge {
    background: rgba(0, 31, 63, 0.08);
    color: var(--azul-primary);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nossa-tecnologia h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--azul-primary);
}

.nossa-tecnologia .intro-text {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--texto-principal);
    max-width: 820px;
    margin: 0 auto 3rem;
}

.tecnologia-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tecnologia-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--azul-primary);
}

.tecnologia-header .intro-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--texto-principal);
    max-width: 700px;
    margin: 0 auto;
}

.tecnologia-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tech-card {
    padding: 2rem;
    background: #fafbfc;
    border-radius: 8px;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 31, 63, 0.08);
    border-color: var(--azul-primary);
}

.tech-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--azul-primary) 0%, #003d82 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.tech-icon svg {
    color: var(--branco);
    width: 24px;
    height: 24px;
}

.tech-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--azul-primary);
    margin-bottom: 0.625rem;
    line-height: 1.4;
}

.tech-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--texto-principal);
}

.tecnologia-impact {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #001F3F 0%, #003366 100%);
    border-radius: 8px;
    color: var(--branco);
}

.tecnologia-impact p,
.tecnologia-impact .impact-text {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--branco);
}

/* Dashboards Inteligentes - Redesign 3D */
.dashboards-inteligentes {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.dashboards-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 5rem;
    align-items: center;
}

.dashboards-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--azul-primary);
}

.dashboards-text .intro-text {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--texto-principal);
    margin-bottom: 2rem;
}

.dashboards-text .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.dashboards-text .features-list li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--texto-principal);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboards-text .features-list li svg {
    color: var(--azul-primary);
    flex-shrink: 0;
}

.features-description {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--texto-principal);
    margin-bottom: 2rem;
    font-style: italic;
}

.impact-box {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, var(--azul-primary) 0%, #003366 100%);
    border-radius: 8px;
    color: var(--branco);
    margin: 2rem 0;
}

.impact-box p {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: var(--branco);
}

.btn-dashboard-cta {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    background: var(--azul-primary);
    color: var(--branco);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.2);
    margin-top: 1rem;
}

.btn-dashboard-cta:hover {
    background: #003366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 31, 63, 0.3);
}

/* Mockup 3D Dashboard */
.dashboards-visual {
    position: relative;
    perspective: 1500px;
}

.dashboard-3d-mockup {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.6s ease;
    /* Otimizações de performance para animações 3D */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.dashboard-3d-mockup:hover {
    transform: rotateY(-2deg) rotateX(2deg) scale(1.02);
}

.dashboard-screen {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 31, 63, 0.15),
        0 10px 30px rgba(0, 31, 63, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    transform: translateZ(50px);
    border: 1px solid rgba(0, 31, 63, 0.08);
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.screen-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--azul-primary);
}

.screen-time {
    font-size: 0.875rem;
    color: #28a745;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.screen-time::before {
    content: '●';
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Gráfico 3D */
.chart-3d {
    position: relative;
    height: 240px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 31, 63, 0.02);
    border-radius: 12px;
}

.chart-grid {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0, 31, 63, 0.05) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0, 31, 63, 0.05) 40px);
    border-radius: 12px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.bar-3d {
    flex: 1;
    height: var(--height);
    background: linear-gradient(135deg, var(--azul-primary) 0%, #0056b3 50%, #003d82 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    transform-style: preserve-3d;
    animation: barGrow 1s ease-out var(--delay) backwards;
    box-shadow: 
        0 -4px 0 rgba(0, 31, 63, 0.3),
        4px 0 12px rgba(0, 31, 63, 0.15);
}

.bar-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(135deg, #4a90e2 0%, var(--azul-primary) 100%);
    border-radius: 8px;
    transform: translateZ(4px);
}

.bar-3d::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
    border-radius: 0 8px 0 0;
}

@keyframes barGrow {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: var(--height);
        opacity: 1;
    }
}

/* KPIs Flutuantes */
.floating-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.kpi-mini {
    background: linear-gradient(135deg, var(--azul-primary) 0%, #003366 100%);
    padding: 1.25rem;
    border-radius: 12px;
    color: var(--branco);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.15);
    animation: floatKpi 3s ease-in-out infinite var(--float-delay);
    transition: transform 0.3s ease;
}

.kpi-mini:hover {
    transform: translateY(-4px) scale(1.02);
}

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

.kpi-icon-mini {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

.kpi-icon-mini svg {
    color: var(--branco);
}

.kpi-mini-content {
    flex: 1;
}

.kpi-mini-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.kpi-mini-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Sombras e Efeitos de Profundidade */
.mockup-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 31, 63, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.mockup-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 31, 63, 0.05) 0%, transparent 60%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.dashboard-3d-mockup:hover .mockup-glow {
    opacity: 1;
}

/* Nossa Especialidade - Hero Style */
.nossa-especialidade {
    background: transparent;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.especialidade-hero {
    position: relative;
    width: 70%;
    min-height: auto;
    background-image: url('../../uploads/2025/10/foto004.jpg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: stretch;
}

/* Overlay para escurecer a imagem */
.especialidade-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 31, 63, 0.95) 0%,
        rgba(0, 31, 63, 0.92) 40%,
        rgba(0, 31, 63, 0.5) 70%,
        transparent 100%
    );
    z-index: 1;
}

.especialidade-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem 3rem 2.5rem;
    color: var(--branco);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    grid-column: 1 / 2;
}

.especialidade-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--branco);
    letter-spacing: -0.03em;
}

.especialidade-impact {
    margin-bottom: 2rem;
}

.especialidade-impact p {
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--branco);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.especialidade-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-bottom: 0;
}

.esp-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.esp-item svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Segurança - Redesigned with Glass Cards */
.seguranca {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.seguranca-header {
    text-align: center;
    margin-bottom: 4rem;
}

.seguranca-header h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--azul-primary);
}

.seguranca-header .intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--texto-principal);
    max-width: 820px;
    margin: 0 auto;
}

.security-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.security-card {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 31, 63, 0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 31, 63, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.lock-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    height: 100px;
}

.lock-icon {
    position: relative;
    width: 64px;
    height: 64px;
}

.lock-icon svg {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--azul-primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lock-closed {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.lock-open {
    opacity: 0;
    transform: scale(0.8) rotate(-15deg);
}

.security-card:hover .lock-closed {
    opacity: 0;
    transform: scale(0.8) rotate(15deg);
}

.security-card:hover .lock-open {
    opacity: 1;
    transform: scale(1.1) rotate(0deg);
}

.lock-shackle {
    transform-origin: center top;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-content {
    text-align: center;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--azul-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.card-content .card-subtitle {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.5;
}

.card-popup {
    position: absolute;
    bottom: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: calc(100% + 2rem);
    background: var(--azul-primary);
    border-radius: 12px;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: 0 12px 40px rgba(0, 31, 63, 0.3);
}

.card-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--azul-primary);
}

.security-card:hover .card-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.popup-content h4 {
    color: var(--branco);
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
}

.popup-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}

.seguranca-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 31, 63, 0.1);
}

.seguranca-footer .impact-text {
    font-size: 1.125rem;
    color: var(--texto-principal);
    font-weight: 500;
    line-height: 1.6;
}

/* Quem Somos - Redesigned */
.quem-somos {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.quem-somos-grid {
    display: grid;
    gap: 1.5rem;
}

.quem-somos-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.hero-badge {
    background: rgba(0, 31, 63, 0.08);
    color: var(--azul-primary);
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.quem-somos-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--azul-primary);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--texto-principal);
    margin: 0;
}

.quem-somos-content {
    max-width: 1080px;
    margin: 0.75rem auto 0.75rem;
    text-align: center;
}

.content-unified {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--texto-principal);
    margin: 0;
}

.quem-somos-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.feature-card-somos {
    padding: 1.5rem 1.25rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 31, 63, 0.08);
    transition: all 0.3s ease;
}

.feature-card-somos:hover {
    border-color: rgba(0, 31, 63, 0.15);
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.1);
    transform: translateY(-4px);
}

.feature-icon-somos {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--azul-primary);
}

.feature-card-somos h3 {
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
    color: var(--azul-primary);
    font-weight: 700;
    line-height: 1.3;
}

.feature-card-somos p {
    font-size: 0.9375rem;
    color: var(--texto-principal);
    line-height: 1.6;
    margin: 0;
}

.quem-somos-footer {
    max-width: 950px;
    margin: 0.75rem auto 0;
    text-align: center;
}

.quem-somos-footer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--texto-principal);
    margin: 0;
}

.quem-somos-footer strong {
    color: var(--azul-primary);
}

/* Contato - Novas classes */
.contato .section-badge {
    background: rgba(0, 31, 63, 0.08);
    color: var(--azul-primary);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contato h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--azul-primary);
}

.contato-impact {
    margin: 2.5rem 0;
}

.impact-words {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 2rem 0;
}

.highlight-word {
    display: inline-block;
    margin: 0 0.75rem;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, var(--azul-primary) 0%, #003366 100%);
    color: var(--branco);
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-word:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 31, 63, 0.3);
}

.contato-description {
    font-size: 1.1875rem;
    line-height: 1.65;
    color: var(--texto-principal);
}

/* Responsive */
@media (max-width: 1400px) {
    .tecnologia-grid,
    .especialidade-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1100px) {
    .tecnologia-grid,
    .especialidade-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .dashboards-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .dashboards-text {
        text-align: center;
    }
    
    .chart-bars {
        gap: 0.75rem;
    }
    
    /* Especialidade Hero Tablet */
    .especialidade-hero {
        width: 85%;
        min-height: auto;
        grid-template-columns: 55% 45%;
        background-position: center right;
    }
    
    .especialidade-hero::before {
        background: linear-gradient(
            90deg,
            rgba(0, 31, 63, 0.96) 0%,
            rgba(0, 31, 63, 0.93) 50%,
            rgba(0, 31, 63, 0.6) 80%,
            transparent 100%
        );
    }
    
    .especialidade-content {
        max-width: 100%;
        padding: 2.5rem 2rem 2.5rem 2rem;
        grid-column: 1 / 2;
    }
    
    .especialidade-content h2 {
        font-size: 2.5rem;
    }
    
    /* Security Cards Tablet */
    .security-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .security-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .tecnologia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 0;
    }
    
    /* Especialidade em coluna única para celulares */
    .especialidade-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0;
        width: 100%;
    }
    
    .especialidade-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .floating-kpis {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .especialidade-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .especialidade-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    section .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .intro-text {
        font-size: 1.0625rem !important;
    }
    
    .timeline-animation {
        flex-direction: column;
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .tecnologia-grid,
    .especialidade-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .tech-card,
    .especialidade-card {
        padding: 1.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Dashboard Responsivo */
    .dashboards-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .dashboard-screen {
        padding: 1.5rem;
    }
    
    .chart-3d {
        height: 180px;
    }
    
    .floating-kpis {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .kpi-mini {
        padding: 1rem;
    }
    
    .kpi-mini-value {
        font-size: 1.5rem;
    }
    
    .dashboard-3d-mockup {
        transform: rotateY(0) rotateX(0) !important;
    }
    
    .kpi-cards,
    .especialidade-grid,
    .quem-somos-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Security Cards Mobile */
    .security-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile Extra Pequeno - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    section .container {
        padding: 0 0.75rem;
    }
    
    .especialidade-grid {
        gap: 0.75rem;
    }
    
    .especialidade-card {
        padding: 1.25rem;
    }
    
    .especialidade-card h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .especialidade-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .especialidade-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .especialidade-content h2 {
        font-size: 1.75rem;
    }
    
    .intro-especialidade {
        font-size: 0.9375rem;
    }
    
    .security-card:nth-child(3) {
        max-width: 100%;
    }
    
    .card-popup {
        width: calc(100% + 1rem);
        padding: 1.5rem;
    }
    
    .seguranca-header h2 {
        font-size: 2rem;
    }
    
    .seguranca-header .intro-text {
        font-size: 1rem;
    }
    
    .dashboards-mockup {
        padding: 2rem;
    }
    
    .feature-item,
    .especialidade-item,
    .feature-card-somos {
        padding: 1.75rem;
    }
    
    .impact-phrase,
    .tecnologia-impact p,
    .impact-phrase-somos p,
    .seguranca-footer .impact-text {
        font-size: 1.125rem !important;
    }
    
    .impact-words {
        font-size: 1.875rem;
    }
    
    .highlight-word {
        display: block;
        margin: 0.75rem 0;
        padding: 0.5rem 1rem;
    }
    
    .animated-kpi {
        font-size: 2.25rem;
    }
    
    .feature-item h3,
    .feature-card-somos h3 {
        font-size: 1.125rem !important;
    }
    
    /* Especialidade Hero Responsivo */
    .especialidade-hero {
        width: 95%;
        min-height: auto;
        border-radius: 16px;
        grid-template-columns: 1fr;
        background-position: center;
    }
    
    .especialidade-hero::before {
        background: linear-gradient(
            180deg,
            rgba(0, 31, 63, 0.96) 0%,
            rgba(0, 31, 63, 0.93) 60%,
            rgba(0, 31, 63, 0.9) 100%
        );
    }
    
    .especialidade-content {
        padding: 3rem 2rem 3rem 2rem;
        max-width: 100%;
        grid-column: 1 / -1;
    }
    
    .especialidade-content h2 {
        font-size: 2.25rem;
    }
    
    .especialidade-impact p {
        font-size: 1.125rem;
    }
    
    .esp-item {
        font-size: 0.875rem;
    }
    
    /* Security Cards Small Mobile */
    .lock-container {
        height: 80px;
    }
    
    .lock-icon {
        width: 48px;
        height: 48px;
    }
    
    .lock-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .card-content .card-subtitle {
        font-size: 0.9375rem;
    }
    
    .base-inteligente-grid,
    .dashboards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .base-inteligente-text {
        padding-right: 0;
    }
    
    .base-features li {
        font-size: 1rem;
    }
    
    .tecnologia-header h2,
    .dashboards-header h2,
    .especialidade-header h2 {
        font-size: 1.75rem !important;
    }
    
    .section-subtitle {
        font-size: 1.125rem !important;
    }
    
    .kpi-card {
        padding: 1.5rem;
    }
    
    .kpi-value {
        font-size: 2rem !important;
    }
    
    /* Base Inteligente Timeline - Tablet */
    .base-header h2 {
        font-size: 2.5rem;
    }
    
    .timeline-steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .timeline-track {
        left: 10%;
        right: 10%;
    }
    
    .step-card {
        min-height: 180px;
    }
    
    /* Quem Somos - Tablet */
    .quem-somos-hero h2 {
        font-size: 2.25rem;
    }
    
    .content-unified {
        font-size: 0.9375rem;
    }
    
    .quem-somos-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card-somos {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-card-somos h3 {
        font-size: 1.0625rem;
    }
    
    .feature-card-somos p {
        font-size: 0.9375rem;
    }
    
    /* Contato - Tablet */
    .contato-grid {
        gap: 3rem;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    /* Base Inteligente Timeline - Mobile */
    .base-header h2 {
        font-size: 2rem;
    }
    
    .base-header p {
        font-size: 1rem;
    }
    
    .timeline-track {
        display: none;
    }
    
    .timeline-steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-marker {
        width: 45px;
        height: 45px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .step-card {
        min-height: auto;
        padding: 1.5rem 1.25rem;
    }
    
    .step-icon {
        margin-bottom: 0.875rem;
    }
    
    .step-content h3 {
        font-size: 1.125rem;
    }
    
    .step-content p {
        font-size: 0.875rem;
    }
    
    /* Quem Somos - Mobile */
    .quem-somos-hero h2 {
        font-size: 1.75rem;
        line-height: 1.4;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
    }
    
    .content-unified {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .quem-somos-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-somos {
        padding: 1.5rem;
    }
    
    .feature-card-somos h3 {
        font-size: 1.125rem;
    }
    
    .feature-card-somos p {
        font-size: 0.9375rem;
    }
    
    .quem-somos-footer p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    /* Contato - Mobile */
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contato-chamada h2 {
        font-size: 2rem;
    }
    
    .contato-lead {
        font-size: 1rem;
    }
    
    .contato-info-box {
        padding: 1.25rem;
    }
    
    .info-item {
        font-size: 0.875rem;
    }
}

/* Mobile Extra Small - 480px */
@media (max-width: 480px) {
    /* Base Inteligente Timeline - Mobile XS */
    .base-inteligente {
        padding: 3rem 0;
    }
    
    .base-header h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .base-header p {
        font-size: 0.9375rem;
    }
    
    .timeline-steps-container {
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.25rem 1rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    /* Quem Somos - Mobile XS */
    .quem-somos {
        padding: 3rem 0;
    }
    
    .quem-somos-hero h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .content-unified {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .feature-card-somos {
        padding: 1.25rem;
    }
    
    .feature-card-somos h3 {
        font-size: 1rem;
    }
    
    .feature-card-somos p {
        font-size: 0.875rem;
    }
    
    .quem-somos-footer p {
        font-size: 0.875rem;
    }
    
    /* Contato - Mobile XS */
    .contato-chamada h2 {
        font-size: 1.5rem;
    }
    
    .contato-lead {
        font-size: 0.9375rem;
    }
    
    .contato-feature-item {
        font-size: 0.9375rem;
    }
    
    .contato-info-box {
        padding: 1rem;
    }
}

/* ===================================
   Quem Somos Section
   =================================== */

.quem-somos {
    padding: 0 0 5rem 0;
    background: linear-gradient(180deg, var(--cinza-claro) 0%, var(--branco) 100%);
    color: var(--texto-principal);
}

.quem-somos .page-subtitle-section {
    padding: 2.5rem 0 2rem 0;
}

.quem-somos .page-lead {
    color: var(--texto-principal);
}

.quem-somos-content {
    max-width: 1200px;
    margin: 0 auto;
}

.quem-somos-intro {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--texto-principal);
    text-align: left;
}

/* Features Grid */
.quem-somos-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-card-somos {
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.feature-card-somos:hover {
    transform: translateY(-5px);
    background: var(--cinza-claro);
    border-color: rgba(0, 31, 63, 0.18);
    box-shadow: var(--shadow-md);
}

.feature-icon-somos {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.12), rgba(0, 31, 63, 0.05));
    border-radius: 50%;
    border: 1px solid rgba(0, 31, 63, 0.15);
}

.feature-icon-somos svg {
    color: var(--azul-primary);
    width: 30px;
    height: 30px;
}

.feature-card-somos h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--azul-primary);
    line-height: 1.3;
}

.feature-card-somos p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--texto-secundario);
    margin: 0;
}

/* Closing Text */
.quem-somos-closing {
    margin-bottom: 3rem;
    text-align: center;
}

.closing-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--texto-principal);
}

.closing-text-strong {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 600;
    color: var(--azul-primary);
    margin: 0;
}

/* Impact Quote */
.quem-somos-impact {
    text-align: center;
    padding: 3rem 0;
    border-top: 2px solid rgba(0, 31, 63, 0.08);
    margin-top: 3rem;
}

.impact-quote {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--azul-primary);
    margin: 0;
    text-transform: none;
    letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 768px) {
    .quem-somos {
        padding: 3rem 0;
    }
    
    .quem-somos-intro h2 {
        font-size: 1.75rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .quem-somos-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .feature-card-somos {
        padding: 1.5rem;
    }
    
    .feature-icon-somos {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-somos svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-card-somos h3 {
        font-size: 1.125rem;
    }
    
    .closing-text,
    .closing-text-strong {
        font-size: 1rem;
    }
    
    .impact-quote {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .quem-somos-intro h2 {
        font-size: 1.5rem;
    }
    
    .quem-somos-features-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-quote {
        font-size: 1.25rem;
    }
}

/* ===================================
   Page Subtitle Section (Padrão para todas as páginas)
   =================================== */

.page-subtitle-section {
    padding: 2.5rem 0 3.5rem 0;
    text-align: center;
}

.page-lead {
    font-size: 1.5rem;
    font-weight: 700;
    color: #001F3F;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-subtitle-section {
        padding: 2rem 0 2.5rem 0;
    }
    
    .page-lead {
        font-size: 1.25rem;
    }
}

/* ===================================
   Nossa Especialidade - Nova Versão
   =================================== */

.nossa-especialidade {
    padding: 5rem 0;
    background: var(--branco);
    overflow-x: hidden;
    max-width: 100%;
}

.especialidade-content {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
    box-sizing: border-box;
}

.especialidade-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
}

.intro-especialidade {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--texto-principal);
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.especialidade-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--azul-primary);
    margin-top: 3rem;
    margin-bottom: 3rem;
    line-height: 1.3;
    text-align: center;
}

.especialidade-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 100%;
    overflow-x: hidden;
}

.especialidade-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--azul-primary) 0%, #003366 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.especialidade-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 31, 63, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.especialidade-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.especialidade-icon svg {
    color: var(--branco);
    width: 24px;
    height: 24px;
}

.especialidade-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 0.625rem;
    line-height: 1.4;
}

.especialidade-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.nossa-especialidade-new {
    padding: 0 0 5rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.especialidade-content-full {
    max-width: 1200px;
    margin: 0 auto;
}

.especialidade-content-full h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
}

.intro-especialidade {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--texto-principal);
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.especialidade-content-full h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--azul-primary);
    margin-top: 4rem;
    margin-bottom: 3rem;
    line-height: 1.3;
    text-align: center;
}

.especialidade-two-columns {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    margin-top: 2rem;
}

.especialidade-text-column {
    padding-right: 2rem;
}

.especialidade-text-column h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #001F3F;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.especialidade-text-column h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #001F3F;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.especialidade-text-column p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.25rem;
}

/* Segments Grid */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.segment-card {
    background: linear-gradient(135deg, var(--azul-primary) 0%, #003366 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.2);
}

.segment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.segment-card:active {
    transform: translateY(-4px) scale(0.98);
}

.segment-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.segment-card:hover .segment-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(5deg) scale(1.05);
}

.segment-icon svg {
    color: var(--branco);
    width: 32px;
    height: 32px;
}

.segment-card h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--branco);
    margin: 0;
    line-height: 1.4;
}

.segment-item {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid #001F3F;
}

.segment-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #001F3F;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.segment-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 0;
}

/* Coluna de Imagem */
.especialidade-image-column {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.especialidade-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.especialidade-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    background: #F8F9FA;
    padding: 1.25rem;
    text-align: center;
}

.image-caption p {
    font-size: 0.9375rem;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .especialidade-content-full h2 {
        font-size: 2rem;
    }
    
    .especialidade-content-full h3 {
        font-size: 1.75rem;
    }
    
    .especialidade-two-columns {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .especialidade-text-column {
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .nossa-especialidade-new {
        padding: 0 0 3rem 0;
    }
    
    .especialidade-content-full h2 {
        font-size: 1.75rem;
    }
    
    .intro-especialidade {
        font-size: 1rem;
    }
    
    .especialidade-content-full h3 {
        font-size: 1.5rem;
        margin-top: 3rem;
        margin-bottom: 2rem;
    }
    
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .especialidade-two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .especialidade-text-column {
        padding-right: 0;
    }
    
    .especialidade-text-column h2 {
        font-size: 1.875rem;
    }
    
    .especialidade-text-column h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .segment-item h4 {
        font-size: 1.125rem;
    }
    
    .especialidade-image-column {
        position: static;
        order: -1;
    }
    
    .especialidade-image-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .especialidade-content-full h2 {
        font-size: 1.5rem;
    }
    
    .especialidade-content-full h3 {
        font-size: 1.25rem;
    }
    
    .segments-grid {
        grid-template-columns: 1fr;
    }
    
    .segment-card {
        padding: 1.5rem 1.25rem;
    }
    
    .especialidade-text-column h2 {
        font-size: 1.625rem;
    }
    
    .especialidade-text-column h3 {
        font-size: 1.375rem;
    }
    
    .segment-item {
        padding-left: 1rem;
        border-left-width: 2px;
    }
}