/* ================================================================
   CLOUDSEG PORTAL - MASTER STYLE V19 (ALINHAMENTO PERFEITO)
   ----------------------------------------------------------------
   - FIX: Compatibilidade Safari (-webkit-backdrop-filter).
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* Ajuste fino para o header não cobrir o título */
}

:root {
    /* --- PALETA DE CORES SYSTEM --- */
    --primary-dark: #0D2050;    /* Azul Profundo */
    --primary-light: #183678;   /* Azul Médio */
    --accent-cyan: #00C2CB;     /* Ciano Vibrante */
    --accent-blue: #00A8E8;     /* Azul Claro */
    --accent-purple: #5D5FEF;   /* Modernidade */
    
    /* --- TEXTOS --- */
    --text-main: #0D2050;
    --text-muted: #556987;
    --text-light: #F4F7FA;

    /* --- DEGRADÊS --- */
    --gradient-main: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-cyan) 100%);
    --gradient-glow: linear-gradient(135deg, #00C2CB 0%, #5D5FEF 100%);
    
    /* --- ESTRUTURA & SOMBRAS --- */
    --bg-body: #F4F7FA;
    --bg-white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: 1px solid rgba(255, 255, 255, 0.8);
    
    --shadow-soft: 0 15px 35px rgba(13, 32, 80, 0.06);
    --shadow-hover: 0 25px 50px rgba(0, 194, 203, 0.15);
    
    --radius: 24px; 
    --header-height: 90px; 
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: var(--header-height);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; position: relative; }
section { padding: 100px 0; position: relative; }


/* --- TIPOGRAFIA --- */
h1 { 
    font-size: 46px; 
    font-weight: 800; 
    line-height: 1.2; 
    letter-spacing: -1px; 
    margin-bottom: 25px; 
    color: var(--primary-dark); 
}
h2 { 
    font-size: 40px; font-weight: 700; margin-bottom: 20px; 
    color: var(--primary-dark); letter-spacing: -0.5px;
}
h3 { font-size: 28px; font-weight: 700; margin-bottom: 15px; color: var(--primary-dark); }
h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--primary-dark); }
p { font-size: 18px; color: var(--text-muted); margin-bottom: 25px; font-weight: 400; }

.text-gradient { 
    background: var(--gradient-accent); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}
.subtitulo { max-width: 700px; margin: 0 auto 40px auto; text-align: center; font-size: 18px; color: var(--text-muted); }


/* ================================================================
   1. HEADER & NAV
=================================================================== */
#main-header { 
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; 
    padding: 15px 0; transition: 0.3s; 
}

.glass-nav { 
    background: var(--glass-bg); 
    -webkit-backdrop-filter: blur(15px); /* Já existente, OK */
    backdrop-filter: blur(15px); 
    border: var(--glass-border); 
    border-radius: 100px; 
    padding: 0 40px; 
    display: flex; justify-content: space-between; align-items: center; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.02); 
    height: 75px; 
}

.logo img { height: 100px; width: auto; }

.nav-links { display: flex; gap: 40px; align-items: center; height: 100%; margin: 0; padding: 0; }
.nav-link-main { font-weight: 600; color: var(--primary-dark); font-size: 15px; display: flex; align-items: center; gap: 8px; height: 100%; cursor: pointer; }
.nav-link-main:hover { color: var(--accent-cyan); }

/* Botões */
.btn-cta, .btn-cta-hero, .btn-glow {
    background: var(--gradient-glow); 
    color: white !important; font-weight: 700; border: none; 
    border-radius: 50px; cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block; text-align: center;
    box-shadow: 0 5px 15px rgba(0, 194, 203, 0.3);
}
.btn-glow { padding: 12px 30px; font-size: 15px; } 
.btn-cta:hover, .btn-cta-hero:hover, .btn-glow:hover { 
    transform: translateY(-3px); box-shadow: 0 10px 25px rgba(93, 95, 239, 0.4); filter: brightness(1.1);
}

.mobile-menu-icon { display: none; font-size: 24px; color: var(--primary-dark); cursor: pointer; }

/* Dropdowns */
.dropdown-item { position: relative; height: 100%; display: flex; align-items: center; }
.glass-dropdown, .dropdown-menu { 
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(20px); 
    background: #fff; border: 1px solid #f0f0f0; padding: 20px; border-radius: 20px; 
    min-width: 320px; box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; 
    transition: all 0.3s; display: flex; flex-direction: column; gap: 10px; z-index: 9999;
}
.dropdown-item:hover .glass-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(15px); }
.dropdown-link { display: flex; align-items: center; gap: 15px; padding: 12px; border-radius: 12px; transition: 0.2s; }
.dropdown-link:hover { background: #f4fbff; }
.dd-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #e0f7fa; color: var(--accent-blue); font-size: 18px; flex-shrink: 0; }
.dd-text strong { display: block; font-size: 15px; color: var(--primary-dark); }
.dd-text span { font-size: 13px; color: #888; }


/* ================================================================
   2. HERO SECTION
=================================================================== */
#hero-cloud { 
    position: relative; 
    padding: 100px 0 120px; 
    background: radial-gradient(circle at 5% 10%, #f8fdff, #eff4f9); 
}

.hero-flex { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 80px; 
    position: relative; 
    z-index: 2; 
}
.hero-text { 
    max-width: 550px; 
    text-align: left; 
}
@media (min-width: 1400px) {
    .hero-flex { padding-left: 50px; } 
}

.hero-buttons { display: flex; gap: 20px; margin-bottom: 50px; }

.btn-primary-gradient { 
    display: inline-flex; align-items: center; gap: 10px; 
    background: var(--gradient-accent); 
    color: white; 
    padding: 18px 40px; border-radius: 50px; font-weight: 700; 
    font-size: 16px; transition: 0.3s; 
    box-shadow: 0 10px 25px rgba(0, 168, 232, 0.25);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary-gradient:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(0, 194, 203, 0.35);
    filter: brightness(1.05);
}

.btn-secondary-glass { 
    display: inline-flex; align-items: center; 
    background: rgba(255,255,255,0.6); border: 1px solid #dce3ea; 
    color: var(--primary-dark); padding: 18px 36px; 
    border-radius: 50px; font-weight: 700; font-size: 16px; transition: 0.3s; 
    -webkit-backdrop-filter: blur(5px); /* FIX SAFARI */
    backdrop-filter: blur(5px);
}
.btn-secondary-glass:hover { background: white; border-color: var(--accent-blue); color: var(--accent-blue); }

/* Typewriter */
.typed-text {
    color: var(--accent-cyan);
    position: relative;
}
.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--accent-cyan);
    animation: blink 1s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Stats Mini */
.hero-stats-mini { display: flex; gap: 40px; align-items: center; }
.stat-item strong { display: block; font-size: 28px; color: var(--primary-dark); line-height: 1; margin-bottom: 5px;}
.stat-item span { font-size: 14px; color: #666; font-weight: 500; }
.divider { width: 1px; height: 45px; background: #d0d0d0; }


/* ================================================================
   3. ELEMENTOS VISUAIS (NUVEM E CARDS)
=================================================================== */
.hero-visual { 
    position: relative; 
    width: 550px; 
    height: 550px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.tech-circle-container { 
    position: relative; width: 400px; height: 400px; 
    display: flex; justify-content: center; align-items: center; 
}
.tech-circle { 
    position: absolute; border-radius: 50%; 
    border: 1px solid rgba(0, 194, 203, 0.15); width: 100%; height: 100%; 
    animation: pulse 6s infinite; 
}
.tech-circle.inner { 
    width: 65%; height: 65%; 
    border-color: rgba(13, 32, 80, 0.1); border-width: 1px; border-style: dashed;
    animation-direction: reverse; animation-duration: 12s;
}

.center-icon { 
    font-size: 120px; 
    background: linear-gradient(180deg, #00A8E8, #00C2CB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0, 194, 203, 0.3));
    z-index: 1; 
}

/* --- CARDS FLUTUANTES PADRONIZADOS --- */
.glass-card-float { 
    position: absolute; 
    background: white; /* Padrão Branco (Clean) */
    padding: 14px 20px; 
    border-radius: 16px; 
    box-shadow: 0 10px 30px rgba(13, 32, 80, 0.08); 
    display: flex; align-items: center; gap: 15px; 
    min-width: 190px; 
    animation: float 5s infinite ease-in-out; 
    z-index: 10; 
    border: 1px solid rgba(255,255,255,0.5);
}

/* Posições */
.card-1 { top: 8%; left: -20px; animation-delay: 0s; }
.card-2 { bottom: 18%; right: -40px; animation-delay: 2.5s; }
.card-3 { top: 45%; right: -60px; animation-delay: 1s; }

/* --- CARD SUSEP (CORRIGIDO E BRANCO) --- */
.glass-card-float.card-susep { 
    bottom: -10px; left: 15%; 
    background: white; 
    color: var(--primary-dark);
    animation-delay: 3.5s; 
    border: 1px solid rgba(255,255,255,0.5);
}
.glass-card-float.card-susep strong { color: var(--primary-dark); }
.glass-card-float.card-susep span { color: #888; }

/* Ícones dentro dos cards */
.icon-circle { 
    width: 42px; height: 42px; 
    background: #e0f7fa; color: var(--accent-cyan); 
    border-radius: 12px; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 18px; 
}
.icon-circle.blue { background: #e3f2fd; color: var(--primary-light); }
.icon-circle.cyan { background: #e0f7fa; color: var(--accent-blue); }

/* Ícone da SUSEP - Fundo Cinza Claro e Ícone Escuro */
.icon-circle.white { 
    background: #F0F4F8; 
    color: var(--primary-dark); 
    border: 1px solid #E1E8ED;
}

/* !!! CORREÇÃO MÁGICA PARA O ÍCONE DA SUSEP APARECER !!! 
   Como o ícone 'shield-check' original é PRO (pago), ele não aparece. 
   Este código abaixo substitui o ícone invisível por uma Balança da Justiça (Lei) gratuita. */
.glass-card-float.card-susep .icon-circle i::before,
.stat-box i.fa-shield-check::before {
    content: "\f24e" !important; /* Código da Balança (Justice Scale) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.glass-card-float .text strong { display: block; font-size: 14px; color: var(--primary-dark); line-height: 1.2; }
.glass-card-float .text span { font-size: 12px; color: #888; }

/* Blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; z-index: 0; }
.blob-1 { top: -100px; right: -100px; width: 700px; height: 700px; background: rgba(0, 168, 232, 0.12); }
.blob-2 { bottom: -100px; left: -100px; width: 600px; height: 600px; background: rgba(0, 194, 203, 0.12); }


/* ================================================================
   4. SEÇÕES DA HOME
=================================================================== */
#brands { text-align: center; padding: 60px 0; background: white; border-bottom: 1px solid #f0f0f0; }
#brands p { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 40px; color: #a0a0a0; font-weight: 700; }
.brands-grid { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; align-items: center; }
.brands-grid img { height: 180px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: 0.4s; object-fit: contain; }
.brands-grid img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

#stats { padding: 80px 0; background: var(--primary-dark); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-box i { font-size: 36px; color: var(--accent-cyan); margin-bottom: 20px; }
.stat-box h3 { font-size: 42px; font-weight: 800; margin-bottom: 5px; color: white; }
.stat-box p { font-size: 15px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; font-weight: 600;}

/* Universo CloudSeg */
#timeline-section { padding: 120px 0; }
.universe-grid { display: flex; gap: 60px; justify-content: center; align-items: flex-start; }
.universe-col { flex: 1; max-width: 480px; }

.universe-header { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.icon-halo { width: 60px; height: 60px; background: rgba(0, 168, 232, 0.1); color: var(--primary-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.icon-halo.dark { background: rgba(13, 32, 80, 0.1); }
.universe-header h3 { font-size: 26px; margin: 0; color: var(--primary-dark); }

.universe-divider { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 90px; }
.universe-divider .line { width: 2px; height: 150px; background: linear-gradient(to bottom, #eee, #ccc, #eee); }

.cards-stack { display: flex; flex-direction: column; gap: 30px; }
.glass-card { 
    background: white; border: 1px solid #f5f5f5; border-radius: 20px; padding: 30px; 
    display: flex; align-items: center; justify-content: space-between; 
    box-shadow: var(--shadow-soft); transition: all 0.4s; cursor: pointer; position: relative; 
    min-height: 160px; 
}
.glass-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--accent-cyan); }

/* --- CARDS DE NEGÓCIOS (Limpos e Brancos) --- */
.glass-card.dark-mode { 
    background: white; 
    color: var(--primary-dark); 
    border-color: #f0f0f0; 
}
.glass-card.dark-mode .card-content h4,
.glass-card.dark-mode .card-content strong { color: var(--primary-dark) !important; }
.glass-card.dark-mode .card-content p { color: var(--text-muted) !important; }

.glass-card.dark-mode:hover { 
    background: white; 
    border-color: var(--accent-cyan); 
    box-shadow: var(--shadow-hover);
}

.card-content { display: flex; align-items: center; gap: 25px; }
.card-icon-bg { width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }

/* UNIFICAÇÃO DE CORES: Vida agora usa a mesma cor do Residencial (Ciano) */
.card-icon-bg.blue { background: #e0f7fa; color: var(--accent-blue); } 
.card-icon-bg.cyan { background: #e0f7fa; color: var(--accent-blue); }

.card-icon-bg.white { background: #f0f4f8; color: var(--primary-dark); }

.card-action { 
    padding: 10px 24px; border: 1px solid #ddd; border-radius: 30px; 
    font-size: 14px; font-weight: 700; color: var(--primary-light); transition: 0.3s; 
    margin-left: auto; 
}
.glass-card:hover .card-action { 
    background: var(--gradient-accent); 
    color: white; border-color: transparent; 
    box-shadow: 0 5px 15px rgba(0, 194, 203, 0.2);
}


/* ================================================================
   5. PROCESSO, DEPOIMENTOS E FAQ
=================================================================== */
#processo { padding: 120px 0; background: white; }
.process-wrapper { display: flex; align-items: center; gap: 80px; }
.process-image { flex: 1; display: flex; justify-content: center; }
.abstract-shape { 
    width: 350px; height: 450px; background: var(--gradient-main); 
    border-radius: 40px 120px 40px 120px; display: flex; align-items: center; justify-content: center; 
    font-size: 120px; color: rgba(255,255,255,0.15); box-shadow: 0 30px 60px rgba(13, 32, 80, 0.2); 
}
.step-list { margin-top: 50px; display: flex; flex-direction: column; gap: 40px; }
.step-item { display: flex; gap: 25px; }
.step-number { font-size: 28px; font-weight: 800; color: var(--accent-cyan); opacity: 0.4; min-width: 40px; }
.step-item h4 { font-size: 20px; color: var(--primary-dark); margin-bottom: 8px; font-weight: 700; }
.step-item p { font-size: 15px; color: #666; line-height: 1.6; }

#testimonials { padding: 100px 0; background: #f9fbfd; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.testimonial-card { 
    background: white; padding: 40px; border-radius: var(--radius); 
    box-shadow: var(--shadow-soft); text-align: left; border-top: 5px solid var(--accent-cyan); 
    transition: 0.3s; 
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.testimonial-card .stars { color: #ffc107; margin-bottom: 20px; font-size: 16px; }
.testimonial-card p { font-size: 16px; color: #555; font-style: italic; margin-bottom: 30px; line-height: 1.7; }

#faq-home { padding: 100px 0; background: white; }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: left; }
.faq-item h4 { font-size: 20px; color: var(--primary-dark); margin-bottom: 15px; font-weight: 700; }
.faq-item p { font-size: 15px; color: #666; line-height: 1.7; }


/* ================================================================
   6. PÁGINAS INSTITUCIONAIS
=================================================================== */
.about-hero-harmonized, .page-hero-simple { 
    background: radial-gradient(circle at top right, #f4fbff, #ffffff); 
    padding: 100px 0; text-align: center;
}
.page-hero-simple { background: var(--primary-dark); color: white; } 

.hero-tag { 
    display: inline-block; background: #e0f7fa; color: var(--accent-blue); 
    padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 700; 
    margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px;
}
.hero-tag i { margin-right: 8px; }
.hero-icon-simple { font-size: 48px; color: var(--accent-cyan); margin-bottom: 20px; }

.about-reason-section { background: white; padding: 100px 0; }
.reason-container { display: flex; gap: 40px; align-items: center; justify-content: center; margin-top: 50px; }
.reason-problem, .reason-promise { 
    background: #f9fbfd; padding: 40px; border-radius: 20px; flex: 1; 
    border: 1px solid #eee; transition: 0.3s; 
}
.reason-promise { background: white; border-color: var(--accent-cyan); box-shadow: var(--shadow-soft); }
.reason-icon { font-size: 32px; color: var(--text-muted); margin-bottom: 20px; }
.reason-icon.accent { color: var(--accent-cyan); }
.reason-arrow { font-size: 24px; color: var(--accent-blue); }
.reason-container ul { list-style: none; padding: 0; margin-top: 20px; }
.reason-container li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-size: 15px; }
.reason-container li i { color: var(--accent-cyan); }

.about-values-harmonized { padding: 100px 0; background: #f9fbfd; }
.values-grid-harmonized { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
.value-card-harmonized { 
    background: white; padding: 30px 20px; border-radius: 20px; 
    box-shadow: var(--shadow-soft); text-align: center; transition: 0.3s;
}
.value-card-harmonized:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.value-icon-harmonized { 
    width: 60px; height: 60px; background: #e0f7fa; color: var(--accent-blue); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-size: 24px; margin: 0 auto 20px auto; 
}
.value-card-harmonized h4 { margin-bottom: 10px; font-size: 18px; color: var(--primary-dark); }
.value-card-harmonized p { font-size: 14px; color: var(--text-muted); margin: 0; }

.support-channels-section { padding: 100px 0; background: white; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
.support-card-v2 { 
    background: #f9fbfd; padding: 40px; border-radius: 20px; 
    text-align: center; border: 1px solid #eee; transition: 0.3s; 
}
.support-card-v2:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--accent-cyan); background: white; }
.support-card-icon { 
    width: 70px; height: 70px; background: white; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 20px auto; font-size: 30px; color: var(--accent-blue); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.support-card-v2 h3 { font-size: 22px; margin-bottom: 10px; color: var(--primary-dark); }
.support-card-v2 p { font-size: 15px; color: var(--text-muted); margin-bottom: 25px; min-height: 45px; }
.support-contact-link { display: block; font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; transition: 0.3s; }
.support-contact-link:hover { color: var(--accent-cyan); }
.support-hours { font-size: 13px; color: #888; display: block; }


/* ================================================================
   7. FOOTER & CTA FINAL
=================================================================== */
#final-cta, #cta-final { 
    padding: 100px 0; background: var(--gradient-main); margin: 60px 40px 0; 
    border-radius: 40px 40px 0 0; text-align: center; color: white; 
}
#final-cta h2, .cta-container h2 { color: white; margin-bottom: 15px; font-size: 42px; }
#final-cta p, .cta-container p { opacity: 0.9; margin-bottom: 40px; font-size: 20px; }
.cta-buttons-final { display: flex; justify-content: center; gap: 25px; }

.btn-white-glow { 
    background: white; color: var(--primary-dark); padding: 18px 40px; 
    border-radius: 50px; font-weight: 800; font-size: 16px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: 0.3s; display: inline-block; 
}
.btn-white-glow:hover { transform: scale(1.05); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }

#footer { background-color: var(--primary-dark); color: #ccc; padding: 80px 0 0 0; text-align: left; }
.footer-container-original { display: grid; grid-template-columns: 3fr 1.5fr 1.5fr 1.5fr; gap: 40px; padding-bottom: 60px; max-width: 1240px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.footer-sobre .logo a { color: white; font-size: 26px; font-weight: 800; display: block; margin-bottom: 20px; }
.footer-coluna h4 { color: white; font-size: 18px; margin-bottom: 25px; position: relative; font-weight: 700; }
.footer-coluna h4::after { content: ''; display: block; width: 30px; height: 3px; background-color: var(--accent-cyan); margin-top: 10px; }
.footer-coluna ul { list-style: none; padding: 0; }
.footer-coluna li { margin-bottom: 12px; }
.footer-coluna a { color: #b0b8c4; font-size: 14px; transition: 0.3s; }
.footer-coluna a:hover { color: var(--accent-cyan); padding-left: 5px; }
.social-links { margin-top: 25px; display: flex; gap: 15px; }
.social-links a { color: white; font-size: 20px; transition: 0.3s; }
.social-links a:hover { color: var(--accent-cyan); transform: translateY(-3px); }
.footer-legal { background-color: #081535; text-align: center; padding: 25px 20px; font-size: 12px; color: #667; border-top: 1px solid rgba(255,255,255,0.05); }

/* --- ANIMAÇÕES GLOBAIS --- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes pulse { 0% { transform: scale(0.95); opacity: 0.5; } 50% { transform: scale(1.05); opacity: 1; } 100% { transform: scale(0.95); opacity: 0.5; } }
.animar { opacity: 0; transform: translateY(30px); transition: 0.7s ease-out; }
.animar.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .hero-flex, .universe-grid, .process-wrapper { flex-direction: column; text-align: center; }
    .hero-text { margin-bottom: 60px; }
    .hero-buttons { justify-content: center; }
    .universe-divider { display: none; }
    .stats-grid, .testimonials-grid, .faq-grid { grid-template-columns: repeat(1, 1fr); }
    
    .hero-container, .reason-container, .values-grid-harmonized, .support-grid, .footer-container-original { 
        flex-direction: column; grid-template-columns: 1fr; text-align: center; gap: 50px; 
    }
    .footer-coluna h4::after { margin: 10px auto 0 auto; }
    .social-links { justify-content: center; }

    /* Menu Mobile */
    .nav-links { position: absolute; top: 90px; left: 0; width: 100%; background: white; flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); display: none; }
    .nav-links.active { display: flex; }
    .mobile-menu-icon { display: block; }
}

@media (max-width: 768px) {
    h1 { font-size: 40px; }
    .hero-visual { width: 100%; height: 400px; }
    .glass-card-float { min-width: 160px; padding: 12px; }
    .card-1 { left: 0; }
    .card-2 { right: 0; }
    #final-cta, #cta-final { margin: 40px 20px 0; border-radius: 30px 30px 0 0; }
    .cta-buttons-final { flex-direction: column; }
    .btn-white-glow { width: 100%; }
}