/* =========================================
   GUARDIÃO NACIONAL - INVESTOR PRESENTATION
   Premium SPA Styles
   ========================================= */

/* CSS Variables */
:root {
    /* Colors */
    --primary-50: #EEF2FF;
    --primary-100: #E0E7FF;
    --primary-200: #C7D2FE;
    --primary-300: #A5B4FC;
    --primary-400: #818CF8;
    --primary-500: #6366F1;
    --primary-600: #4F46E5;
    --primary-700: #4338CA;
    --primary-800: #3730A3;
    --primary-900: #312E81;

    --accent-400: #22D3EE;
    --accent-500: #06B6D4;
    --accent-600: #0891B2;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --gray-950: #030712;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-500) 100%);
    --gradient-dark: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 60px rgba(79, 70, 229, 0.3);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-secondary);
    background: var(--gray-950);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary-600);
    color: white;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-100);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.btn-outline {
    background: transparent;
    color: var(--gray-100);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* =========================================
   NAVBAR
   ========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    /* High enough to be above full-page overlays */
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled,
.navbar.menu-open {
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.logo-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: white;
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all var(--transition-base);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #030712;
    /* Solid background for mobile menu */
    padding: 40px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 1900;
    /* Just below the navbar to keep the toggle button visible */
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    color: var(--gray-100);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.mobile-cta {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 70, 229, 0.3), transparent),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(6, 182, 212, 0.15), transparent),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(79, 70, 229, 0.1), transparent);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 20%, transparent 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-300);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

.stat-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-suffix {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(transparent, var(--gray-700), transparent);
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray-600);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-500);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   SECTIONS BASE
   ========================================= */

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-400);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* =========================================
   ABOUT SECTION
   ========================================= */

.about-section {
    background: linear-gradient(180deg, var(--gray-950) 0%, var(--gray-900) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
}

.about-card.featured {
    grid-column: span 2;
    background: var(--gradient-glow);
    border-color: rgba(79, 70, 229, 0.2);
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-400);
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--gray-400);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card.featured {
        grid-column: span 1;
    }
}

/* =========================================
   SOLUTIONS SECTION
   ========================================= */

.solutions-section {
    background: var(--gray-900);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.solution-card {
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.solution-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.solution-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.1);
    border-radius: var(--radius-lg);
}

.solution-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-400);
}

.solution-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    background: rgba(79, 70, 229, 0.2);
    color: var(--primary-300);
    border-radius: 100px;
}

.solution-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.solution-description {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
}

.solution-features {
    list-style: none;
    margin-bottom: 32px;
}

.solution-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features svg {
    width: 20px;
    height: 20px;
    color: var(--accent-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-cta {
    padding-top: 16px;
}

@media (max-width: 900px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   BENEFITS SECTION
   ========================================= */

.benefits-section {
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(79, 70, 229, 0.2);
}

.benefit-number {
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-content p {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   TECHNOLOGY SECTION
   ========================================= */

.technology-section {
    background: var(--gray-950);
    overflow: hidden;
}

.tech-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-content .section-tag,
.tech-content .section-title {
    text-align: left;
}

.tech-description {
    color: var(--gray-400);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.tech-feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(79, 70, 229, 0.2);
}

.tech-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

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

.tech-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.tech-text p {
    color: var(--gray-500);
    font-size: 14px;
}

/* Tech Visual - Animated Sphere */
.tech-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-sphere {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 50%;
    animation: orbit-rotate linear infinite;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    animation-duration: 10s;
}

.orbit-2 {
    width: 280px;
    height: 280px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 360px;
    height: 360px;
    animation-duration: 20s;
}

@keyframes orbit-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-dot {
    width: 12px;
    height: 12px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}

.core {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    animation: core-pulse 3s ease infinite;
}

.core span {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: white;
}

.core-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes core-pulse {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(79, 70, 229, 0.4);
    }

    50% {
        box-shadow: 0 0 80px rgba(79, 70, 229, 0.6);
    }
}

@media (max-width: 900px) {
    .tech-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .tech-visual {
        order: -1;
    }

    .tech-sphere {
        width: 300px;
        height: 300px;
    }

    .orbit-1 {
        width: 150px;
        height: 150px;
    }

    .orbit-2 {
        width: 210px;
        height: 210px;
    }

    .orbit-3 {
        width: 270px;
        height: 270px;
    }

    .core {
        width: 80px;
        height: 80px;
    }

    .core span {
        font-size: 24px;
    }
}

/* =========================================
   PARTNERSHIP SECTION
   ========================================= */

.partnership-section {
    background: linear-gradient(180deg, var(--gray-950) 0%, var(--gray-900) 100%);
}

.partnership-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.partnership-content .section-tag,
.partnership-content .section-title {
    text-align: left;
}

.partnership-description {
    color: var(--gray-400);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.partnership-description strong {
    color: var(--primary-300);
}

.partnership-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-400);
}

.highlight-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.highlight-text p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}

.partnership-quote {
    padding: 24px 32px;
    background: rgba(79, 70, 229, 0.05);
    border-left: 3px solid var(--primary-600);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.partnership-quote blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--gray-300);
    line-height: 1.7;
}

/* Brasil Map Visual */
.partnership-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Brasil Map Container - Real Map with Icons */
.brasil-map-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.brazil-map-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.gn-icons-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gn-icon {
    position: absolute;
    width: 14px;
    height: 16px;
    transform: translate(-50%, -50%);
    animation: icon-pulse 2s ease infinite;
    opacity: 0.9;
}

/* Shield icon shape using CSS */
.gn-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    filter: drop-shadow(0 0 4px rgba(79, 70, 229, 0.8));
}

.gn-icon::after {
    content: attr(data-city);
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--gray-400);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gn-icon:hover::after {
    opacity: 1;
}

.gn-icon-main {
    width: 22px;
    height: 26px;
    animation: icon-pulse-main 1.5s ease infinite;
    z-index: 10;
}

.gn-icon-main::before {
    filter: drop-shadow(0 0 8px rgba(79, 70, 229, 1)) drop-shadow(0 0 16px rgba(6, 182, 212, 0.6));
}

.gn-icon-large {
    width: 18px;
    height: 20px;
}

.gn-icon-large::before {
    filter: drop-shadow(0 0 6px rgba(79, 70, 229, 0.9));
}

@keyframes icon-pulse {

    0%,
    100% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes icon-pulse-main {

    0%,
    100% {
        filter: drop-shadow(0 0 12px rgba(79, 70, 229, 1)) drop-shadow(0 0 24px rgba(6, 182, 212, 0.6));
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(79, 70, 229, 1)) drop-shadow(0 0 40px rgba(6, 182, 212, 0.8));
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Apply staggered animation delays to icons */
.gn-icon:nth-child(1) {
    animation-delay: 0s;
}

.gn-icon:nth-child(2) {
    animation-delay: 0.1s;
}

.gn-icon:nth-child(3) {
    animation-delay: 0.2s;
}

.gn-icon:nth-child(4) {
    animation-delay: 0.3s;
}

.gn-icon:nth-child(5) {
    animation-delay: 0.4s;
}

.gn-icon:nth-child(6) {
    animation-delay: 0.5s;
}

.gn-icon:nth-child(7) {
    animation-delay: 0.6s;
}

.gn-icon:nth-child(8) {
    animation-delay: 0.7s;
}

.gn-icon:nth-child(9) {
    animation-delay: 0.8s;
}

.gn-icon:nth-child(10) {
    animation-delay: 0.9s;
}

.gn-icon:nth-child(11) {
    animation-delay: 1s;
}

.gn-icon:nth-child(12) {
    animation-delay: 1.1s;
}

.gn-icon:nth-child(13) {
    animation-delay: 1.2s;
}

.gn-icon:nth-child(14) {
    animation-delay: 1.3s;
}

.gn-icon:nth-child(15) {
    animation-delay: 1.4s;
}

.gn-icon:nth-child(16) {
    animation-delay: 1.5s;
}

.gn-icon:nth-child(17) {
    animation-delay: 1.6s;
}

.gn-icon:nth-child(18) {
    animation-delay: 1.7s;
}

.gn-icon:nth-child(19) {
    animation-delay: 1.8s;
}

.gn-icon:nth-child(20) {
    animation-delay: 1.9s;
}

.gn-icon:nth-child(21) {
    animation-delay: 2s;
}

.gn-icon:nth-child(22) {
    animation-delay: 2.1s;
}

.gn-icon:nth-child(23) {
    animation-delay: 2.2s;
}

/* Connections SVG Overlay */
.connections-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connections-svg .connection-line {
    stroke: rgba(79, 70, 229, 0.6);
    stroke-width: 0.3;
    stroke-dasharray: 2, 2;
    animation: connection-flow 3s linear infinite;
}

.connections-svg .connection-line-secondary {
    stroke: rgba(6, 182, 212, 0.4);
    stroke-width: 0.2;
    stroke-dasharray: 1, 2;
    animation: connection-flow 4s linear infinite reverse;
}

@keyframes connection-flow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -20;
    }
}

/* Legacy brasil-map styles - keeping for compatibility */
.brasil-map {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
}

/* Tech Center Pulse */
.tech-center .pulse-ring {
    animation: center-pulse 2s ease infinite;
}

.tech-center .pulse-ring-2 {
    animation: center-pulse 2s ease infinite 0.5s;
}

@keyframes center-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.1;
    }
}

/* Connection Lines Animation */
.connection-line {
    stroke-dasharray: 5, 5;
    animation: connection-flow 2s linear infinite;
}

@keyframes connection-flow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -20;
    }
}

/* Capitals Animation */
.state-capitals .capital circle {
    animation: capital-blink 3s ease infinite;
}

.state-capitals .capital:nth-child(1) circle {
    animation-delay: 0s;
}

.state-capitals .capital:nth-child(2) circle {
    animation-delay: 0.2s;
}

.state-capitals .capital:nth-child(3) circle {
    animation-delay: 0.4s;
}

.state-capitals .capital:nth-child(4) circle {
    animation-delay: 0.6s;
}

.state-capitals .capital:nth-child(5) circle {
    animation-delay: 0.8s;
}

.state-capitals .capital:nth-child(6) circle {
    animation-delay: 1s;
}

.state-capitals .capital:nth-child(7) circle {
    animation-delay: 1.2s;
}

.state-capitals .capital:nth-child(8) circle {
    animation-delay: 1.4s;
}

.state-capitals .capital:nth-child(9) circle {
    animation-delay: 1.6s;
}

.state-capitals .capital:nth-child(10) circle {
    animation-delay: 1.8s;
}

.state-capitals .capital:nth-child(11) circle {
    animation-delay: 2s;
}

.state-capitals .capital:nth-child(12) circle {
    animation-delay: 2.2s;
}

.state-capitals .capital:nth-child(13) circle {
    animation-delay: 2.4s;
}

@keyframes capital-blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.connection-points circle {
    animation: point-blink 2s ease infinite;
}

.connection-points circle:nth-child(2) {
    animation-delay: 0.2s;
}

.connection-points circle:nth-child(3) {
    animation-delay: 0.4s;
}

.connection-points circle:nth-child(4) {
    animation-delay: 0.6s;
}

.connection-points circle:nth-child(5) {
    animation-delay: 0.8s;
}

.connection-points circle:nth-child(6) {
    animation-delay: 1s;
}

@keyframes point-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.map-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(3, 7, 18, 0.9);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.label-title {
    display: block;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.label-text {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

@media (max-width: 900px) {
    .partnership-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .partnership-visual {
        order: -1;
    }
}

/* =========================================
   ODS SECTION
   ========================================= */

.ods-section {
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.ods-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 20%, rgba(162, 25, 66, 0.05), transparent),
        radial-gradient(ellipse 50% 50% at 80% 80%, rgba(25, 72, 106, 0.05), transparent);
    pointer-events: none;
}

.ods-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.ods-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.ods-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ods-color);
    opacity: 0.8;
}

.ods-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.ods-card:hover::before {
    opacity: 1;
}

.ods-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ods-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--ods-color);
    line-height: 1;
    opacity: 0.9;
}

.ods-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ods-icon svg {
    width: 32px;
    height: 32px;
    color: var(--ods-color);
    opacity: 0.7;
}

.ods-card h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--gray-100);
}

.ods-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

.ods-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ods-un-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ods-un-logo svg {
    width: 32px;
    height: 32px;
    color: var(--accent-400);
}

.ods-un-logo .agenda-text {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-400);
}

.ods-description {
    font-size: 15px;
    color: var(--gray-400);
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .ods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ods-number {
        font-size: 36px;
    }

    .ods-card h3 {
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .ods-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
    background: var(--gray-900);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(79, 70, 229, 0.15), transparent);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 48px;
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-secondary);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    background: rgba(79, 70, 229, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

.form-group select option {
    background: var(--gray-900);
    color: white;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

.form-note {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 24px;
    text-align: center;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    background: var(--gray-950);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 13px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 600px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* =========================================
   RESPONSIVE UTILITIES
   ========================================= */

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }
}

/* =========================================
   ANIMATIONS & INTERACTIONS
   ========================================= */

/* Intersection Observer Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll Progress (optional enhancement) */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
}