/* ============================================
   HCN Treinamentos — Design System v4.0
   Premium Dark · Glass UI · Animations
   ============================================ */

/* ===== SHARED TOKENS ===== */
:root {
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #6d28d9;
    --secondary: #06b6d4;
    --secondary-light: #22d3ee;
    --accent: #f43f5e;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --amber-500: #f59e0b;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;

    --gradient-primary: linear-gradient(135deg, #7c3aed, #06b6d4);
    --gradient-warm: linear-gradient(135deg, #f43f5e, #f59e0b);
    --gradient-cool: linear-gradient(135deg, #06b6d4, #22c55e);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.35s;
}

/* ===== DARK THEME (default) ===== */
[data-theme="dark"] {
    --bg-body: #0a0a12;
    --bg-surface: #111119;
    --bg-card: rgba(255,255,255,0.03);
    --bg-card-hover: rgba(255,255,255,0.06);
    --bg-glass: rgba(255,255,255,0.04);
    --bg-glass-hover: rgba(255,255,255,0.08);
    --gradient-hero: linear-gradient(160deg, #0a0a12 0%, #1a1034 40%, #0d1b2a 100%);

    --text-heading: #f1f5f9;
    --text-body: #cbd5e1;
    --text-muted: #64748b;

    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.14);

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 40px rgba(124,58,237,0.15);

    --nav-bg: rgba(10,10,18,0.5);
    --nav-bg-scroll: rgba(10,10,18,0.92);
    --footer-bg: #060609;
    --toggle-bg: #334155;
    --toggle-knob: #e2e8f0;

    /* legacy compat */
    --white: #ffffff;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-900: #1e3a5f;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: rgba(255,255,255,0.08);
    --slate-300: rgba(255,255,255,0.12);
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #94a3b8;
    --slate-700: #cbd5e1;
    --slate-800: #e2e8f0;
    --slate-900: #f1f5f9;
    --slate-950: #0a0a12;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
    --bg-body: #f3f0ff;
    --bg-surface: #f8f6ff;
    --bg-card: rgba(0,0,0,0.02);
    --bg-card-hover: rgba(0,0,0,0.04);
    --bg-glass: rgba(255,255,255,0.7);
    --bg-glass-hover: rgba(255,255,255,0.85);
    --gradient-hero: linear-gradient(160deg, #f3f0ff 0%, #ede9fe 40%, #e0f2fe 100%);

    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;

    --border: rgba(0,0,0,0.08);
    --border-hover: rgba(0,0,0,0.15);

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(124,58,237,0.08);

    --nav-bg: transparent;
    --nav-bg-scroll: rgba(243,240,255,0.92);
    --footer-bg: #0f172a;
    --toggle-bg: #cbd5e1;
    --toggle-knob: #ffffff;

    /* legacy compat */
    --white: #ffffff;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-900: #1e3a5f;
    --slate-50: #f8fafc;
    --slate-100: #e2e8f0;
    --slate-200: rgba(0,0,0,0.06);
    --slate-300: rgba(0,0,0,0.08);
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #f8fafc;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

::selection {
    background: rgba(124,58,237,0.3);
    color: var(--text-heading);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color-scheme: dark;
}
[data-theme="light"] { color-scheme: light; }

body {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-body);
    margin: 0;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}
a:hover { color: var(--secondary-light); }

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font);
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

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

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal="fade-up"] { transform: translateY(50px); }
[data-reveal="fade-down"] { transform: translateY(-40px); }
[data-reveal="fade-left"] { transform: translateX(50px); }
[data-reveal="fade-right"] { transform: translateX(-50px); }
[data-reveal="zoom-in"] { transform: scale(0.85); }
[data-reveal].revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ===== KEYFRAMES ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(124,58,237,0.15); }
    50% { box-shadow: 0 0 50px rgba(124,58,237,0.3); }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes slide-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes particle-drift-1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.2; }
    25% { transform: translate(80px, -60px); opacity: 0.5; }
    50% { transform: translate(40px, -120px); opacity: 0.3; }
    75% { transform: translate(-20px, -80px); opacity: 0.4; }
}
@keyframes particle-drift-2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.15; }
    25% { transform: translate(-60px, -40px); opacity: 0.4; }
    50% { transform: translate(-30px, -90px); opacity: 0.25; }
    75% { transform: translate(40px, -50px); opacity: 0.5; }
}
@keyframes border-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ===== NAVBAR ===== */
.nav-wrap {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    transition: all 0.4s var(--ease);
}
.nav-wrap .nav-inner {
    margin: 16px 28px;
    background: var(--nav-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 6px 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    transition: all 0.4s var(--ease);
}
.nav-wrap.scrolled .nav-inner {
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background: var(--nav-bg-scroll);
    box-shadow: 0 1px 20px rgba(0,0,0,0.15);
}
.nav-wrap .navbar { padding: 4px 12px; }
.nav-wrap .navbar-brand img { height: 36px; transition: height var(--duration) var(--ease); filter: brightness(1.1); }
.nav-wrap.scrolled .navbar-brand img { height: 32px; }
.nav-wrap .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 16px !important;
    border-radius: var(--radius-full);
    transition: all 0.25s var(--ease);
    position: relative;
}
.nav-wrap .nav-link:hover {
    color: var(--text-heading) !important;
    background: rgba(255,255,255,0.06);
}
.nav-wrap .nav-link.active {
    color: var(--primary-light) !important;
    background: rgba(124,58,237,0.1);
}
.nav-wrap .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%; transform: translateX(-50%);
    width: 20px; height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
.nav-wrap .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
}
[data-theme="dark"] .nav-wrap .navbar-toggler-icon { filter: invert(1); }
[data-theme="light"] .nav-wrap .navbar-toggler-icon { filter: none; }
@media (max-width: 991px) {
    .nav-wrap .nav-inner {
        border-radius: var(--radius-lg);
        margin: 8px 12px;
    }
    .nav-wrap .navbar-collapse {
        background: var(--bg-surface);
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 8px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border);
        position: relative;
        z-index: 100;
    }
}

/* ===== PAGE HERO (internal) ===== */
.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb-nav {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.page-hero .breadcrumb-nav a { color: var(--primary-light); }
.page-hero h1 {
    font-size: 3.2rem;
    color: var(--text-heading);
    margin-bottom: 16px;
    animation: slide-in-up 0.8s var(--ease) both;
}
.page-hero .hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    animation: slide-in-up 0.8s var(--ease) 0.15s both;
}

/* ===== HOME HERO ===== */
.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.home-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.home-hero .hero-glow {
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}
.home-hero .hero-glow-1 {
    top: -200px; right: -100px;
    background: var(--primary);
    opacity: 0.18;
    animation: float 12s ease-in-out infinite;
}
.home-hero .hero-glow-2 {
    bottom: -300px; left: -200px;
    background: var(--secondary);
    opacity: 0.1;
    animation: float 15s ease-in-out infinite reverse;
}
.home-hero .hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.home-hero .hero-particles span {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0;
}
.home-hero .hero-particles span:nth-child(1) { top: 20%; left: 15%; animation: particle-drift-1 12s ease-in-out infinite; }
.home-hero .hero-particles span:nth-child(2) { top: 60%; left: 80%; animation: particle-drift-2 14s ease-in-out infinite 1s; width: 6px; height: 6px; background: var(--secondary); }
.home-hero .hero-particles span:nth-child(3) { top: 30%; left: 60%; animation: particle-drift-1 16s ease-in-out infinite 2s; width: 3px; height: 3px; }
.home-hero .hero-particles span:nth-child(4) { top: 70%; left: 30%; animation: particle-drift-2 10s ease-in-out infinite 0.5s; width: 5px; height: 5px; background: var(--accent); }
.home-hero .hero-particles span:nth-child(5) { top: 10%; left: 45%; animation: particle-drift-1 18s ease-in-out infinite 3s; width: 3px; height: 3px; background: var(--green-400); }
.home-hero .hero-particles span:nth-child(6) { top: 85%; left: 70%; animation: particle-drift-2 13s ease-in-out infinite 1.5s; }
.home-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}
.selo-hero {
    width: 280px; height: 280px;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 5s ease-in-out infinite, pulse-glow 4s ease-in-out infinite;
}
.selo-hero::before {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: spin-slow 25s linear infinite;
}
.selo-hero::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin-slow 8s linear infinite;
    opacity: 0.5;
}
.selo-hero img {
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 8px 32px rgba(124,58,237,0.25));
}
.home-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-heading);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    animation: slide-in-up 0.8s var(--ease) both;
}
.home-hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light), var(--green-400));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}
.home-hero .hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: slide-in-up 0.8s var(--ease) 0.15s both;
}
@media (max-width: 768px) {
    .home-hero h1 { font-size: 2.5rem; }
    .home-hero .hero-sub { font-size: 1rem; }
    .selo-hero { width: 120px; height: 120px; padding: 14px; }
}

/* ===== BUTTONS ===== */
.btn-hcn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn-hcn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--duration);
}
.btn-hcn:hover::after { opacity: 1; }
.btn-hcn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-hcn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124,58,237,0.45);
}
.btn-hcn-green {
    background: var(--green-500);
    color: #fff;
    box-shadow: 0 4px 20px rgba(34,197,94,0.35);
}
.btn-hcn-green:hover {
    background: var(--green-600);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34,197,94,0.45);
}
.btn-hcn-outline {
    background: transparent;
    color: var(--text-body);
    border: 1.5px solid var(--border-hover);
}
.btn-hcn-outline:hover {
    background: var(--bg-glass);
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-2px);
}
.btn-hcn-ghost {
    background: var(--bg-glass);
    color: var(--text-body);
    border: 1px solid var(--border-hover);
}
.btn-hcn-ghost:hover {
    background: var(--bg-glass-hover);
    color: var(--text-heading);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--duration) var(--ease);
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

/* ===== BENTO CARDS ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bento-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.4s var(--ease);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    color: inherit;
}
.bento-card .card-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.bento-card .card-icon.blue { background: rgba(124,58,237,0.12); color: var(--primary-light); }
.bento-card .card-icon.green { background: rgba(34,197,94,0.12); color: var(--green-400); }
.bento-card .card-icon.amber { background: rgba(245,158,11,0.12); color: var(--amber-500); }
.bento-card .card-icon.rose { background: rgba(244,63,94,0.12); color: var(--accent); }
.bento-card .card-icon.purple { background: rgba(124,58,237,0.12); color: var(--primary-light); }
.bento-card .card-icon.teal { background: rgba(6,182,212,0.12); color: var(--secondary-light); }
.bento-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-heading);
}
.bento-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}
.bento-card .card-arrow {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--duration) var(--ease);
}
.bento-card:hover .card-arrow { color: var(--primary-light); transform: translateX(4px); }

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CONTENT SECTIONS ===== */
.section-content { padding: 100px 0; }
.section-content.alt { background: var(--bg-surface); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(124,58,237,0.1);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(124,58,237,0.12);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-heading);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

/* ===== CONTENT CARDS ===== */
.content-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--duration) var(--ease);
    height: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.content-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

/* ===== TEAM CARDS ===== */
.team-card-v3 {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    transition: all 0.4s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}
.team-card-v3::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.team-card-v3:hover::before { transform: scaleX(1); }
.team-card-v3 .card-contact-footer { margin-top: auto; }
.team-card-v3:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
}
.team-avatar-v3 {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(124,58,237,0.25);
    margin: 0 auto 20px;
    transition: all 0.4s var(--ease);
}
.team-card-v3:hover .team-avatar-v3 {
    border-color: var(--primary-light);
    box-shadow: 0 0 30px rgba(124,58,237,0.2);
    transform: scale(1.05);
}
.team-card-v3 h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--text-heading);
}
.team-card-v3 .role {
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 20px;
}
.team-card-v3 .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex: 1;
}
.team-card-v3 .info-list li {
    padding: 7px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.team-card-v3 .info-list li i {
    color: var(--green-400);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== TEAM CAROUSEL ===== */
.team-carousel-wrapper { position: relative; }
.team-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 16px;
    scrollbar-width: none;
}
.team-carousel::-webkit-scrollbar { display: none; }
.team-carousel .carousel-slide {
    flex: 0 0 calc(50% - 12px);
    scroll-snap-align: start;
    min-width: 0;
}
.team-carousel .team-card-v3 { height: 100%; }
.carousel-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.25s;
    z-index: 2;
    font-size: 1.1rem;
}
.carousel-nav:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.carousel-nav.prev { left: -22px; }
.carousel-nav.next { right: -22px; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}
.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(124,58,237,0.4);
}
@media (min-width: 992px) {
    .team-carousel .carousel-slide { flex: 0 0 calc(33.333% - 16px); }
}
@media (max-width: 767px) {
    .team-carousel .carousel-slide { flex: 0 0 85%; }
    .carousel-nav { display: none; }
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all var(--duration) var(--ease);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 4rem;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    font-family: Georgia, serif;
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 16px;
}

/* ===== VIDEO CARDS ===== */
.video-card-v3 {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    position: relative;
}
.video-card-v3:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-6px) scale(1.01);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}
.service-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-heading);
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    transition: all 0.4s var(--ease);
    height: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.contact-info-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-6px);
    border-color: var(--border-hover);
}
.city-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 3px;
    transition: all 0.25s var(--ease);
}
.city-chip:hover {
    background: rgba(124,58,237,0.08);
    border-color: rgba(124,58,237,0.3);
    color: var(--primary-light);
}

/* ===== FILTER CHIPS ===== */
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.03);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.filter-chip:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(124,58,237,0.06);
}
.filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}

/* ===== COMUNICADO ===== */
.comunicado-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1034 100%);
    border-radius: var(--radius-xl);
    padding: 44px 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124,58,237,0.15);
}
.comunicado-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(124,58,237,0.12);
    border-radius: 50%;
    filter: blur(60px);
}
.comunicado-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    background: rgba(6,182,212,0.08);
    border-radius: 50%;
    filter: blur(40px);
}
.comunicado-banner h4,
.comunicado-banner p { color: var(--text-heading); position: relative; z-index: 1; }
.comunicado-banner p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 8px; }

/* ===== TIMELINE (sobre) ===== */
.timeline {
    position: relative;
    padding-left: 60px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 20px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary-light));
}
.timeline-item {
    position: relative;
    margin-bottom: 48px;
}
.timeline-dot {
    position: absolute;
    left: -60px; top: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 20px rgba(124,58,237,0.2);
    transition: all 0.3s var(--ease);
}
.timeline-item:hover .timeline-dot {
    box-shadow: 0 0 30px rgba(124,58,237,0.4);
    transform: scale(1.1);
}
.timeline-dot i { color: var(--primary-light); }
.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.timeline-year {
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}
.timeline-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.founders-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.founder-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 16px 24px;
    transition: all 0.3s var(--ease);
}
.founder-badge:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}
.founder-badge img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(124,58,237,0.25);
}

/* ===== THEME TOGGLE ===== */
.theme-toggle { display: flex; align-items: center; gap: 6px; cursor: pointer; user-select: none; }
.theme-toggle-track { width: 44px; height: 24px; background: var(--toggle-bg); border-radius: 12px; position: relative; transition: background 0.3s; }
.theme-toggle-knob { width: 18px; height: 18px; background: var(--toggle-knob); border-radius: 50%; position: absolute; top: 3px; left: 3px; transition: transform 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
[data-theme="light"] .theme-toggle-knob { transform: translateX(20px); }
.theme-toggle-icon { font-size: 0.9rem; color: var(--text-muted); }

/* ===== LIGHT MODE OVERRIDES ===== */
/* --- backgrounds & textures --- */
[data-theme="light"] .grain-overlay { opacity: 0.012; }
[data-theme="light"] .blob { opacity: 0.06; filter: blur(120px); }
[data-theme="light"] .glow-line { background: rgba(0,0,0,0.04); }
[data-theme="light"] .glow-line::after { opacity: 0.5; }
[data-theme="light"] .hero-grid {
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
}
[data-theme="light"] .hero-particles span { background: var(--primary); opacity: 0.3; }

/* --- typography --- */
[data-theme="light"] .heading-mega { color: #0f172a !important; }
[data-theme="light"] .heading-mega .outline-text {
    -webkit-text-stroke: 2.5px #0f172a !important;
    -webkit-text-fill-color: transparent !important;
}
[data-theme="light"] .heading-mega .line { color: #0f172a !important; }
[data-theme="light"] .home-hero h1 { color: #0f172a !important; }
[data-theme="light"] .home-hero .hero-sub { color: #334155 !important; }
[data-theme="light"] .home-hero .hero-sub strong { color: #0f172a !important; }
[data-theme="light"] .section-title { color: #0f172a !important; }
[data-theme="light"] .section-desc { color: #64748b !important; }
[data-theme="light"] .page-hero h1 { color: #0f172a !important; }
[data-theme="light"] .page-hero .hero-desc { color: #475569 !important; }
[data-theme="light"] .page-hero .breadcrumb-nav { color: #64748b !important; }
[data-theme="light"] .page-hero .breadcrumb-nav a { color: #7c3aed !important; }
[data-theme="light"] h1, [data-theme="light"] h2, [data-theme="light"] h3,
[data-theme="light"] h4, [data-theme="light"] h5 { color: #0f172a; }

/* --- navbar --- */
[data-theme="light"] .nav-wrap .nav-inner,
[data-theme="light"] .nav-wrap .nav-inner * {
    background-color: transparent !important;
}
[data-theme="light"] .nav-wrap .nav-inner {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}
[data-theme="light"] .nav-wrap.scrolled .nav-inner {
    background: rgba(243,240,255,0.92) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05) !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
}
[data-theme="light"] .nav-wrap .nav-link { color: #475569 !important; }
[data-theme="light"] .nav-wrap .nav-link:hover { color: var(--primary) !important; background: rgba(124,58,237,0.06); }
[data-theme="light"] .nav-wrap .nav-link.active { color: var(--primary) !important; background: rgba(124,58,237,0.08); }
[data-theme="light"] .nav-wrap .navbar-toggler { border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .nav-wrap .navbar-collapse {
    background: #f8f6ff !important;
    backdrop-filter: blur(20px) !important;
    border-color: var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
}

/* --- buttons --- */
[data-theme="light"] .btn-hcn-ghost {
    color: #334155 !important;
    border-color: rgba(0,0,0,0.15) !important;
    background: rgba(0,0,0,0.03) !important;
}
[data-theme="light"] .btn-hcn-ghost:hover {
    color: #7c3aed !important;
    border-color: #7c3aed !important;
    background: rgba(124,58,237,0.06) !important;
}
[data-theme="light"] .btn-hcn-outline {
    color: #334155 !important;
    border-color: rgba(0,0,0,0.15) !important;
}
[data-theme="light"] .btn-hcn-outline:hover {
    color: #7c3aed !important;
    border-color: #7c3aed !important;
    background: rgba(124,58,237,0.04) !important;
}

/* --- hero elements --- */
[data-theme="light"] .floating-badge {
    background: rgba(124,58,237,0.06);
    border-color: rgba(124,58,237,0.12);
    color: var(--primary-dark);
}
[data-theme="light"] .selo-hero {
    background: rgba(124,58,237,0.03);
    border-color: rgba(124,58,237,0.08);
    box-shadow: 0 8px 40px rgba(124,58,237,0.08);
}
[data-theme="light"] .selo-hero::after { opacity: 0.25; }
[data-theme="light"] .scroll-indicator { color: var(--text-muted); }
[data-theme="light"] .scroll-indicator .scroll-line {
    background: linear-gradient(to bottom, var(--primary), transparent);
}

/* --- marquee --- */
[data-theme="light"] .marquee-wrap { background: var(--bg-body) !important; }
[data-theme="light"] .marquee-item {
    color: rgba(100,60,180,0.50) !important;
    -webkit-text-stroke: 1.5px rgba(54, 8, 145, 0.22) !important;
}
[data-theme="light"] .marquee-wrap::before {
    background: linear-gradient(90deg, #f3f0ff, transparent) !important;
}
[data-theme="light"] .marquee-wrap::after {
    background: linear-gradient(90deg, transparent, #f3f0ff) !important;
}

/* --- stats --- */
[data-theme="light"] .stats-dramatic {
    background: var(--bg-surface);
    border-color: var(--border);
    box-shadow: var(--shadow);
}
[data-theme="light"] .stat-item:hover { background: rgba(124,58,237,0.03); }
[data-theme="light"] .stat-item .stat-text { color: var(--text-muted); }

/* --- comunicado --- */
[data-theme="light"] .comunicado-banner {
    background: linear-gradient(135deg, #ede9fe, #e0f2fe);
    border-color: rgba(124,58,237,0.1);
}
[data-theme="light"] .comunicado-banner h4 { color: #0f172a; }
[data-theme="light"] .comunicado-banner p { color: #334155; }
[data-theme="light"] .comunicado-banner strong { color: #0f172a; }

/* --- showcase / content cards --- */
[data-theme="light"] .showcase-card {
    background: var(--bg-surface);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: none;
}
[data-theme="light"] .showcase-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 0 30px rgba(124,58,237,0.06);
}
[data-theme="light"] .showcase-card .card-number { opacity: 0.06; }
[data-theme="light"] .content-card {
    background: var(--bg-surface);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: none;
}
[data-theme="light"] .bento-card {
    background: var(--bg-surface);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: none;
}
[data-theme="light"] .bento-card:hover {
    box-shadow: var(--shadow), 0 0 30px rgba(124,58,237,0.05);
}

/* --- team / testimonial / service / contact / video cards --- */
[data-theme="light"] .team-card-v3,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .service-card,
[data-theme="light"] .contact-info-card,
[data-theme="light"] .video-card-v3 {
    background: var(--bg-surface);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: none;
}
[data-theme="light"] .team-card-v3:hover,
[data-theme="light"] .testimonial-card:hover,
[data-theme="light"] .service-card:hover,
[data-theme="light"] .contact-info-card:hover,
[data-theme="light"] .video-card-v3:hover {
    box-shadow: var(--shadow), 0 0 20px rgba(124,58,237,0.05);
}
[data-theme="light"] .team-avatar-v3 { border-color: rgba(124,58,237,0.15); }
[data-theme="light"] .team-card-v3 .role { color: var(--primary-dark); }

/* --- filter chips --- */
[data-theme="light"] .filter-chip {
    background: var(--bg-surface);
    border-color: var(--border);
    color: var(--text-body);
}
[data-theme="light"] .filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(124,58,237,0.04);
}
[data-theme="light"] .filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* --- city chips --- */
[data-theme="light"] .city-chip {
    background: rgba(0,0,0,0.02);
    border-color: var(--border);
    color: var(--text-body);
}

/* --- section label --- */
[data-theme="light"] .section-label {
    background: rgba(124,58,237,0.06);
    border-color: rgba(124,58,237,0.1);
    color: var(--primary-dark);
}

/* --- page hero --- */
[data-theme="light"] .page-hero::before { background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%); }
[data-theme="light"] .page-hero::after { background: radial-gradient(circle, rgba(6,182,212,0.04) 0%, transparent 70%); }

/* --- timeline --- */
[data-theme="light"] .timeline::before { background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary-light)); opacity: 0.4; }
[data-theme="light"] .timeline-dot { background: var(--bg-surface); box-shadow: 0 0 12px rgba(124,58,237,0.12); }
[data-theme="light"] .timeline-title { color: var(--text-heading); }
[data-theme="light"] .timeline-desc { color: var(--text-body); }
[data-theme="light"] .timeline-year { background: rgba(124,58,237,0.06); color: var(--primary-dark); border: 1px solid rgba(124,58,237,0.1); }
[data-theme="light"] .founder-badge { background: var(--bg-surface); border-color: var(--border); box-shadow: var(--shadow-sm); }

/* --- modal / form --- */
[data-theme="light"] .modal-content { background: var(--bg-surface); color: var(--text-body); border-color: var(--border); }
[data-theme="light"] .form-control,
[data-theme="light"] .form-select {
    background: var(--bg-body);
    color: var(--text-heading);
    border-color: var(--border);
}

/* --- always-dark sections (CTA with gradient bg) --- */
.dark-section,
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4, .dark-section h5 { color: #f1f5f9 !important; }
.dark-section p, .dark-section span:not(.gradient-text):not(.badge-dot) { color: #94a3b8 !important; }
.dark-section strong { color: #f1f5f9 !important; }
.dark-section .heading-mega .outline-text { -webkit-text-stroke-color: #f1f5f9 !important; }
.dark-section .heading-mega .line { color: #f1f5f9 !important; }
.dark-section .blob { opacity: 0.1; }

/* --- scrollbar light --- */
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg-body); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); }
[data-theme="light"] ::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.2); }

/* --- estrada stripe --- */
[data-theme="light"] .estrada-stripe { opacity: 0.5; }

/* --- info-list icons --- */
[data-theme="light"] .info-list li { color: var(--text-body); }

/* --- footer stays dark always --- */
[data-theme="light"] .footer-v3 { background: #0f172a; color: #cbd5e1; }
[data-theme="light"] .footer-v3 h6 { color: #f1f5f9; }
[data-theme="light"] .footer-v3 .footer-links a { color: #94a3b8; }
[data-theme="light"] .footer-v3 .footer-links a:hover { color: #a78bfa; }
[data-theme="light"] .footer-v3 .footer-bottom p { color: #64748b; }
[data-theme="light"] .footer-v3 .footer-brand p { color: #94a3b8; }

.footer-v3 {
    background: var(--footer-bg);
    padding: 80px 0 0;
    position: relative;
    color: #cbd5e1;
}
.footer-v3::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}
.footer-v3 .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-v3 .footer-brand img { max-width: 160px; margin-bottom: 16px; opacity: 0.85; filter: brightness(1.1); }
.footer-v3 .footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}
.footer-v3 h6 {
    color: var(--text-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-v3 .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-v3 .footer-links li { margin-bottom: 10px; }
.footer-v3 .footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.25s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.footer-v3 .footer-links a:hover { color: var(--primary-light); transform: translateX(4px); }
.footer-v3 .footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-v3 .footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0;
}
.estrada-stripe {
    height: 32px;
    background: url(../img/bg-estrada.jpg) repeat-x center;
    background-size: contain;
    opacity: 0.06;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .footer-v3 .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===== CTA FLUTUANTE ===== */
.cta-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 16px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    transition: all var(--duration) var(--ease);
    animation: float 3s ease-in-out infinite;
}
.cta-float:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
@media (max-width: 768px) {
    .cta-float { bottom: 14px; right: 14px; padding: 12px 22px; font-size: 0.85rem; }
}

/* ===== ALERT ===== */
.alert {
    display: none;
    z-index: 999999;
    left: 0; right: 0;
    position: fixed;
    border-radius: 0;
}

/* ===== MODAL ===== */
.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    color: var(--text-body);
}
.modal-dialog { margin-top: 100px; }
.modal-header { border-bottom-color: var(--border); }
.modal-footer { border-top-color: var(--border); }

/* ===== STAT COUNTER ===== */
.stat-counter {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== DIVIDER ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
    margin: 0;
    border: none;
}

/* ===== NOISE / GRAIN OVERLAY ===== */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* ===== MORPHING BLOB BACKGROUNDS ===== */
@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 50% 70% 50%; }
    75% { border-radius: 40% 60% 50% 40% / 60% 40% 60% 30%; }
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    animation: morph 15s ease-in-out infinite, float 10s ease-in-out infinite;
}
.blob-primary { background: var(--primary); width: 500px; height: 500px; }
.blob-secondary { background: var(--secondary); width: 400px; height: 400px; }
.blob-accent { background: var(--accent); width: 350px; height: 350px; }

/* ===== DRAMATIC TYPOGRAPHY ===== */
.heading-mega {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--text-heading);
}
.heading-mega .line { display: block; }
.heading-mega .outline-text {
    -webkit-text-stroke: 2px var(--text-heading);
    -webkit-text-fill-color: transparent;
}
.heading-mega .gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light), var(--green-400));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

/* Typing cursor */
.typing-cursor::after {
    content: '|';
    animation: blink-cursor 0.8s steps(1) infinite;
    color: var(--primary-light);
    font-weight: 300;
    margin-left: 2px;
}
@keyframes blink-cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Animated underline */
.animated-underline {
    position: relative;
    display: inline-block;
}
.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s var(--ease);
}
.animated-underline.revealed::after,
.animated-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== MARQUEE / TICKER ===== */
.marquee-wrap {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-body), transparent);
}
.marquee-wrap::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--bg-body));
}
.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.06);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    -webkit-text-stroke: 1px rgba(255,255,255,0.08);
}
[data-theme="dark"] .marquee-item { color: rgba(255,255,255,0.06); -webkit-text-stroke: 1px rgba(255,255,255,0.08); }
.marquee-item .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* ===== 3D PERSPECTIVE CARDS ===== */
.card-3d {
    perspective: 800px;
}
.card-3d-inner {
    transition: transform 0.6s var(--ease);
    transform-style: preserve-3d;
}
.card-3d:hover .card-3d-inner {
    transform: rotateY(-5deg) rotateX(5deg) scale(1.02);
}

/* ===== RECONHECIMENTOS CAROUSEL ===== */
.reconhecimentos-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 0 50px;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.carousel-slide {
    min-width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
}
.reconhecimento-card {
    display: flex;
    flex-direction: row;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 380px;
}
.reconhecimento-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
}
.reconhecimento-img {
    position: relative;
    flex: 0 0 40%;
    max-width: 40%;
    min-height: 380px;
    overflow: hidden;
}
.reconhecimento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.reconhecimento-card:hover .reconhecimento-img img {
    transform: scale(1.05);
}
.reconhecimento-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(124,58,237,0.4);
}
.reconhecimento-body {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.reconhecimento-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.12);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}
.reconhecimento-body h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
    line-height: 1.3;
}
.reconhecimento-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.reconhecimento-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}
.reconhecimento-checks li {
    font-size: 0.82rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 6px;
}
.reconhecimento-checks li i {
    color: var(--green-400);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.reconhecimento-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 4px;
    transition: color 0.2s ease;
}
.reconhecimento-link:hover {
    color: var(--primary-light);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    color: var(--text-heading);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}
.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.carousel-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(124,58,237,0.3);
    transform: scale(1.2);
}
.carousel-dot:hover:not(.active) {
    border-color: var(--primary);
}

/* Carousel responsive */
@media (max-width: 768px) {
    .reconhecimentos-carousel { padding: 0 40px; }
    .reconhecimento-card {
        flex-direction: column;
        min-height: auto;
    }
    .reconhecimento-img {
        flex: none;
        max-width: 100%;
        height: 220px;
    }
    .reconhecimento-body { padding: 24px 20px; }
    .reconhecimento-body h3 { font-size: 1.15rem; }
    .reconhecimento-checks { grid-template-columns: 1fr; }
    .carousel-btn { width: 36px; height: 36px; font-size: 0.9rem; }
}
@media (max-width: 480px) {
    .reconhecimentos-carousel { padding: 0 32px; }
    .reconhecimento-img { height: 180px; }
    .reconhecimento-body { padding: 20px 16px; }
}

/* ===== GLOW LINE ===== */
.glow-line {
    position: relative;
    height: 2px;
    background: rgba(255,255,255,0.03);
    overflow: hidden;
}
.glow-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    animation: glow-sweep 3s ease-in-out infinite;
}
@keyframes glow-sweep {
    0% { left: -60%; }
    100% { left: 100%; }
}

/* ===== ORBIT DECORATION ===== */
.orbit-container {
    position: relative;
    width: 100%; height: 100%;
}
.orbit-ring {
    position: absolute;
    border: 1px solid rgba(124,58,237,0.1);
    border-radius: 50%;
    animation: spin-slow 20s linear infinite;
}
.orbit-ring:nth-child(2) { animation-duration: 30s; animation-direction: reverse; }
.orbit-ring:nth-child(3) { animation-duration: 40s; }
.orbit-dot {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
}

/* ===== FEATURE SHOWCASE CARDS ===== */
.showcase-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1.5px;
    background: conic-gradient(from var(--angle, 0deg), transparent 40%, var(--primary) 50%, var(--secondary) 60%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes rotate-border {
    to { --angle: 360deg; }
}
.showcase-card:hover::before {
    opacity: 1;
    animation: rotate-border 3s linear infinite;
}
.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(124,58,237,0.1);
}
.showcase-card .card-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: 20px; right: 30px;
}
.showcase-card .showcase-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    position: relative;
}
.showcase-card .showcase-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    background: inherit;
    opacity: 0.2;
    filter: blur(12px);
}

/* ===== SPLIT HERO SECTION ===== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
    align-items: center;
}
.split-section .split-content {
    padding: 80px 60px;
}
.split-section .split-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-section .split-content {
        padding: 40px 20px;
    }
}

/* ===== STATS ROW - DRAMATIC ===== */
.stats-dramatic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.stat-item {
    padding: 40px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s var(--ease);
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--border);
}
.stat-item:hover {
    background: rgba(124,58,237,0.04);
}
.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-item .stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.03em;
}
@media (max-width: 768px) {
    .stats-dramatic { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .stat-item:nth-child(1)::after,
    .stat-item:nth-child(3)::after { right: 0; top: 20%; bottom: 20%; }
    .stat-item { padding: 28px 16px; }
    .stat-item .stat-number { font-size: 2.5rem; }
}

/* ===== FLOATING BADGE ===== */
.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: float 4s ease-in-out infinite;
}
.floating-badge .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-400);
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}
.scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-light), transparent);
}

/* ===== HORIZONTAL SCROLL SECTION ===== */
.hscroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
    scrollbar-width: none;
}
.hscroll-container::-webkit-scrollbar { display: none; }
.hscroll-item {
    flex: 0 0 340px;
    scroll-snap-align: start;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .container { padding-left: 20px; padding-right: 20px; }
    .section-content { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .section-desc { font-size: 0.95rem; }
    .page-hero { padding: 130px 0 50px; }
    .page-hero h1 { font-size: 2.2rem; }
    .page-hero .hero-desc { font-size: 1rem; }
    .home-hero { min-height: auto; }
    .home-hero .hero-content { padding: 130px 0 60px; }
    .home-hero .hero-sub { font-size: 0.95rem; margin-bottom: 28px; }
    .home-hero .d-flex.flex-wrap { flex-direction: column; }
    .home-hero .d-flex.flex-wrap .btn-hcn { justify-content: center; }
    .comunicado-banner { padding: 28px 24px; border-radius: var(--radius-lg); }
    .comunicado-banner h4 { font-size: 1.1rem; }
    .comunicado-banner p { font-size: 0.88rem; }
    .bento-card { padding: 24px; }
    .content-card { padding: 24px; }
    .service-card { padding: 20px; }
    .team-card-v3 { padding: 28px; }
    .testimonial-card { padding: 24px; }
    .contact-info-card { padding: 28px; }
    .footer-v3 { padding: 48px 0 0; }
    .footer-v3 .footer-grid { gap: 24px; padding-bottom: 32px; }
    .footer-v3 .footer-bottom { padding: 16px 0; flex-direction: column; text-align: center; }
    .section-content h2[style] { font-size: 1.5rem !important; }
    .timeline { padding-left: 40px; }
    .timeline-dot { left: -40px; width: 28px; height: 28px; }
    .timeline-dot i { font-size: 0.6rem !important; }
    .timeline::before { left: 13px; }
    .timeline-title { font-size: 1.1rem; }
    .timeline-item { margin-bottom: 36px; }
    .founders-strip { flex-direction: column; gap: 12px; }
    .founder-badge { width: 100%; }
    .content-card.d-inline-block { display: block !important; padding: 24px !important; }
    .content-card a[href^="mailto"] { word-break: break-all; font-size: 0.85rem; }
    .city-chip { font-size: 0.8rem; padding: 5px 10px; }
    .row { margin-left: 0; margin-right: 0; }
    .modal-dialog { margin: 80px 12px 12px; }
}

@media (max-width: 480px) {
    .home-hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.5rem; }
    .page-hero h1 { font-size: 1.8rem; }
    .btn-hcn { padding: 12px 24px; font-size: 0.9rem; }
    .btn-whatsapp { padding: 10px 22px; font-size: 0.88rem; }
    .comunicado-banner { padding: 20px 16px; }
    .bento-card { padding: 20px; }
    .bento-card h3 { font-size: 1rem; }
    .nav-wrap .nav-inner { margin: 6px 8px; }
}
