/* ============================================
   VELLAVET ASSESSORIA - DESIGN SYSTEM
   Ultra Modern Financial Website
   ============================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Paleta Institucional */
    --primary-dark: #0A192F;
    --primary-darker: #0f172a;
    --secondary-dark: #1e293b;
    --accent-green: #22c55e;
    --accent-green-soft: #16a34a;
    --accent-blue: #38bdf8;
    --accent-blue-soft: #0ea5e9;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing [COMPACTADO] */
    --section-padding: clamp(60px, 8vw, 100px); /* Reduzido de 160px */
    --container-padding: clamp(20px, 5vw, 40px);
    
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--primary-darker);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* === CONTAINER === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* === HEADER FIXO VERDE === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #22c55e !important; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.3s ease;
    height: 70px; /* Reduzido de 80px */
    display: flex;
    align-items: center;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 40px; /* Ajuste proporcional ao header */
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF !important;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-dark) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-dark);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #FFFFFF; 
    transition: var(--transition);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-sm { padding: 8px 24px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-soft));
    color: var(--primary-darker);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--accent-green);
    color: var(--primary-darker);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-darker);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 85vh; /* Reduzido de 100vh para puxar conteúdo */
    display: flex;
    align-items: center;
    padding-top: 70px; /* Header mais fino */
    overflow: hidden;
    background-color: #020617; 
}

/* Container do Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
    pointer-events: none;
}

/* CAMADA 1: A Imagem da Ilha (Modo Forçado) */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* CAMINHO DA IMAGEM */
    background-image: url('img/icons/ilha.png'); 
    
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    
    /* === O SEGREDO DA CORREÇÃO === */
    /* 1. Removi o mix-blend-mode para a imagem não se misturar com o preto */
    mix-blend-mode: normal; 
    
    /* 2. Apliquei os 40% de opacidade que você pediu */
    opacity: 0.7; 
    
    /* 3. Aumentei o brilho para compensar o fundo escuro por trás */
    filter: grayscale(100%) contrast(1.1) brightness(1.2);
}

/* CAMADA 2: A Membrana (Gradiente Suavizado) */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Gradiente mais transparente no meio para a cidade aparecer */
    background: linear-gradient(
        to bottom,
        rgba(2, 6, 23, 0.9) 0%,   /* Topo escuro para menu */
        rgba(2, 6, 23, 0.2) 30%,  /* Meio bem limpo (20% opacidade) */
        rgba(2, 6, 23, 0.8) 90%,  /* Base escura para conectar */
        #020617 100%
    );
    z-index: 1;
}

/* Ajuste de profundidade */
.hero .container {
    position: relative;
    z-index: 2; 
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 24px; /* Reduzido */
    backdrop-filter: blur(8px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px; /* Reduzido */
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, var(--white), var(--gray-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: var(--gray-200);
    margin-bottom: 32px; /* Reduzido de 40px */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px; /* Reduzido de 60px */
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px; /* Reduzido gap */
    flex-wrap: wrap;
    padding: 32px; /* Reduzido padding */
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.stat-item { text-align: center; }
.stat-value {
    font-size: 32px; /* Ajustado */
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--gray-400); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.1); }

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

/* === PRECISION SECTION === */
.precision-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--primary-darker), var(--secondary-dark));
}

.precision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Reduzido de 80px */
    align-items: stretch; 
}

.precision-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%); 
    display: flex;
    height: 100%; 
    min-height: 450px; /* Leve redução */
    padding: 0; 
}

.precision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    transition: transform 0.5s ease;
}

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

.precision-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.9));
    z-index: 2;
}

.precision-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-green);
    color: var(--primary-darker);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 8px;
}

.precision-content {
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 12px;
}

.section-label.light { color: var(--gray-300); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 28px;
}

.precision-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px; /* Reduzido */
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
}

.metric-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-green);
    color: var(--primary-darker);
    border-radius: 8px;
    font-weight: 800;
    font-size: 18px;
}

.metric-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

/* === ABOUT SECTION === */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--secondary-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px; /* Reduzido de 80px */
    align-items: center;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 24px;
}

.about-purpose {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    margin-top: 32px;
}

.purpose-icon { flex-shrink: 0; }
.purpose-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--accent-green); }
.purpose-text { font-size: 16px; line-height: 1.6; color: var(--gray-300); }

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image img { width: 100%; height: 550px; object-fit: cover; }

.about-stats-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 20px;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stats-card-item { flex: 1; }
.stats-card-value {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.stats-card-label { font-size: 13px; color: var(--gray-400); }
.stats-card-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.1); }

/* === PILLARS SECTION === */
.pillars-section {
    padding: var(--section-padding) 0;
    background: var(--primary-darker);
}

.section-header-center { text-align: center; max-width: 700px; margin: 0 auto 60px; /* Reduzido de 80px */ }
.section-description { font-size: 18px; line-height: 1.7; color: var(--gray-400); margin-top: 16px; }

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.pillar-card {
    padding: 32px 28px; /* Mais compacto */
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.pillar-icon { margin-bottom: 20px; }
.pillar-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.pillar-text { font-size: 15px; line-height: 1.6; color: var(--gray-400); }

/* === SERVICES SECTION === */
.services-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--secondary-dark), var(--primary-darker));
}

.services-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0 60px; /* Reduzido */
}

.service-tab {
    padding: 12px 24px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: var(--gray-300);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.service-tab:hover { border-color: var(--accent-green); color: var(--white); }
.service-tab.active { background: linear-gradient(135deg, var(--accent-green), var(--accent-green-soft)); color: var(--primary-darker); border-color: transparent; }

.services-content { position: relative; }
.service-panel { display: none; animation: fadeInUp 0.5s ease; }
.service-panel.active { display: block; }

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Reduzido */
    align-items: center;
}

.service-image-wrapper { border-radius: 20px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.service-image-wrapper img { width: 100%; height: 450px; object-fit: cover; }

.service-title { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.service-intro { font-size: 17px; line-height: 1.7; color: var(--gray-300); margin-bottom: 24px; }

.service-list { list-style: none; margin-bottom: 28px; }
.service-list li { padding: 10px 0 10px 28px; font-size: 16px; line-height: 1.5; color: var(--gray-300); position: relative; }
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent-green); font-weight: 700; }

.service-categories { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.category-tag { padding: 6px 14px; background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); border-radius: 9999px; font-size: 12px; font-weight: 600; color: var(--accent-green); }

/* === DIFFERENTIALS === */
.differentials-section { padding: var(--section-padding) 0; background: var(--secondary-dark); }
.differentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.differential-card { padding: 32px 28px; background: rgba(15, 23, 42, 0.3); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; transition: var(--transition); }
.differential-card:hover { border-color: var(--accent-blue); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(56, 189, 248, 0.2); }
.differential-number { font-size: 40px; font-weight: 800; background: linear-gradient(135deg, var(--accent-green), var(--accent-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.differential-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.differential-text { font-size: 15px; line-height: 1.6; color: var(--gray-400); }

/* === ECOSYSTEM SECTION === */
.ecosystem-section {
    padding: var(--section-padding) 0;
    background: var(--primary-darker);
    overflow: hidden;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Reduzido de 4rem */
    align-items: center; 
    margin-bottom: 40px; /* Reduzido de 60px */
}

.ecosystem-image-col {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
    /* TRAVANDO A ALTURA PARA NÃO ESTICAR INFINITAMENTE */
    height: 550px;
    width: 100%;
}

.ecosystem-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top center; 
}

.ecosystem-subtitle {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    line-height: 1.4;
}

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

.ecosystem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.check-icon {
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1.2rem;
}

.ecosystem-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.benefit-item span { font-size: 14px; font-weight: 600; color: var(--white); }

/* === CONSORTIUM CTA === */
.consortium-cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-darker));
}

.consortium-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.consortium-cta-description { font-size: 17px; line-height: 1.7; color: var(--gray-300); margin-bottom: 32px; }
.consortium-cta-image { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.consortium-cta-image img { width: 100%; height: 450px; object-fit: cover; }

.consortium-stats {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-badge {
    padding: 12px 16px;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

.stat-badge-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
}

.stat-badge-label { font-size: 11px; color: var(--gray-400); }

/* === PARTNERS SECTION === */
.partners-section { padding: var(--section-padding) 0; background: var(--secondary-dark); }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 48px; max-width: 900px; margin: 0 auto; }
.partner-card { text-align: center; padding: 32px; background: rgba(15, 23, 42, 0.5); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; transition: var(--transition); }
.partner-card:hover { border-color: var(--accent-green); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2); }
.partner-image { width: 160px; height: 160px; margin: 0 auto 1.5rem; border-radius: 50%; overflow: hidden; border: 4px solid var(--accent-green); box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2); }
.partner-image img { width: 100%; height: 100%; object-fit: cover; }
.partner-name { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.partner-role { font-size: 14px; color: var(--accent-green); font-weight: 600; margin-bottom: 16px; }
.partner-bio { font-size: 15px; line-height: 1.6; color: var(--gray-400); }

/* === FINAL CTA === */
.final-cta-section {
    padding: var(--section-padding) 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.1), transparent 70%),
        linear-gradient(135deg, var(--primary-darker), var(--secondary-dark));
    text-align: center;
}

.final-cta-content { max-width: 800px; margin: 0 auto; }
.final-cta-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
.final-cta-text { font-size: 18px; line-height: 1.7; color: var(--gray-300); margin-bottom: 32px; }
.final-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer { padding: 60px 0 30px; background: var(--primary-dark); border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-tagline { font-size: 14px; color: var(--gray-400); margin-top: 16px; }
.footer-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--accent-green); }
.footer-menu { display: flex; flex-direction: column; gap: 10px; }
.footer-menu a { font-size: 14px; color: var(--gray-400); transition: var(--transition); }
.footer-menu a:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.05); text-align: center; }
.footer-copyright { font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }
.footer-legal { font-size: 12px; color: var(--gray-600); font-style: italic; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .precision-grid, .about-grid, .service-grid, .consortium-cta-content, .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ecosystem-image-col {
        height: 400px; /* Menor altura no tablet/mobile */
        order: 1; /* Imagem primeiro */
    }
    
    .ecosystem-content-col {
        order: 2; /* Texto depois */
    }

    .about-grid .about-content { order: 1; }
    .about-grid .about-image { order: 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    :root { --section-padding: clamp(60px, 10vw, 80px); }
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .hero { min-height: 90vh; }
    .hero-stats { gap: 24px; }
    .stat-divider { display: none; }
    .pillars-grid, .service-features-grid, .differentials-grid, .partners-grid, .footer-grid { grid-template-columns: 1fr; }
    .services-tabs { flex-direction: column; align-items: stretch; }
    .footer-grid { gap: 32px; }
    .final-cta-section > .container > div { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-lg { width: 100%; }
    .final-cta-actions { flex-direction: column; }
}