/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== NOVA PALETA ===== */
:root {
    --primary-blue-dark: #00296B;
    --primary-blue: #003F88;
    --primary-blue-light: #00509D;
    --accent-yellow: #FDC500;
    --accent-yellow-light: #FFD500;
    --text-primary: #00296B;
    --text-secondary: #003F88;
    --text-light: #00509D;
    --text-white: #fff;
    --bg-primary: #FAF9F6;
    --bg-secondary: #003F88;
    --bg-light: #00509D;
    --gradient-primary: linear-gradient(135deg, #00296B 0%, #003F88 50%, #00509D 100%);
    --gradient-secondary: linear-gradient(135deg, #FDC500 0%, #FFD500 100%);
    --gradient-hero: linear-gradient(135deg, #00296B 0%, #003F88 50%, #00509D 100%);
    --shadow-md: 0 4px 6px rgba(0,47,107,0.10);
    --shadow-lg: 0 10px 20px rgba(0,47,107,0.10);
    --shadow-xl: 0 20px 40px rgba(0,47,107,0.15);
    --shadow-gold: 0 8px 20px rgba(253, 197, 0, 0.3);
    --transition: 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --container-max-width: 1200px;
    --z-fixed: 1000;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--primary-blue-dark);
    box-shadow: 0 8px 30px rgba(253, 197, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(253, 197, 0, 0.4);
}

.btn-secondary {
    background: var(--gradient-primary);
    color: #fff;
    border: 2px solid #00509D44;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    border-color: #00509D88;
    transform: translateY(-3px);
}

/* Forçar o fundo da .stats-section a ser igual ao do hero, sem ser sobreposto */
.stats-section {
    background:
        radial-gradient(circle at 60% 40%, rgba(44, 82, 130, 0.25) 0%, rgba(26, 54, 93, 0.18) 40%, rgba(10, 13, 20, 0.95) 100%),
        linear-gradient(145deg,
            #0a0d14 0%,
            #141821 10%,
            #1e2532 20%,
            #2a3441 30%,
            #1a365d 40%,
            #2c5282 50%,
            #2b6cb0 60%,
            #2a3441 70%,
            #1e2532 80%,
            #141821 90%,
            #0a0d14 100%
        ) !important;
}