/* ==========================================================================
   DESIGN SYSTEM VARIABLES & SETUP
   ========================================================================== */
:root {
    /* Brand Color Tokens */
    --color-purple: rgb(73, 0, 166);
    --color-purple-rgb: 73, 0, 166;
    --color-purple-light: #6a1bf2;
    --color-purple-glow: rgba(73, 0, 166, 0.5);

    --color-white: rgb(241, 241, 241);
    --color-white-rgb: 241, 241, 241;
    
    --color-neon: rgb(217, 255, 0);
    --color-neon-rgb: 217, 255, 0;
    --color-neon-hover: #e6ff33;
    --color-neon-glow: rgba(217, 255, 0, 0.4);

    /* Neutral Dark Palette for Premium Dark Theme */
    --bg-dark-1: #06020f;      /* Main background */
    --bg-dark-2: #0e0520;      /* Section alternate background */
    --bg-dark-3: #160a2e;      /* Card/Box background */
    --bg-glass: rgba(22, 10, 46, 0.6);
    --border-glass: rgba(241, 241, 241, 0.08);
    --border-glass-hover: rgba(217, 255, 0, 0.3);

    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    /* Typographies */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout Constraints */
    --container-width: 1200px;
    --header-height: 80px;
    --header-height-scrolled: 70px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

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

body {
    background-color: var(--bg-dark-1);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-1);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-dark-3);
    border-radius: 4px;
    border: 2px solid var(--bg-dark-1);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-purple);
}

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

.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.text-center { text-align: center; }
.mt-12 { margin-top: 48px; }
.green { color: var(--color-neon) !important; }

/* Section Header Styles */
.section-subtitle {
    display: inline-block;
    color: var(--color-neon);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(217, 255, 0, 0.08);
    border: 1px solid rgba(217, 255, 0, 0.2);
    border-radius: 100px;
}

.section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   BACKGROUND EFFECTS (BLOBS)
   ========================================================================== */
.glow-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

.glow-1 {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-purple);
}

.glow-2 {
    top: 40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--color-purple-light);
}

.glow-3 {
    bottom: 5%;
    left: 20%;
    width: 450px;
    height: 450px;
    background: var(--color-neon);
    opacity: 0.05;
}

/* ==========================================================================
   BUTTONS SYSTEM
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* Neon Accent Button */
.btn-neon {
    background-color: var(--color-neon);
    color: #06020f;
    box-shadow: 0 4px 20px var(--color-neon-glow);
}

.btn-neon:hover {
    background-color: var(--color-neon-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(217, 255, 0, 0.6);
}

/* Purple Glow Button */
.btn-purple-glow {
    background-color: var(--color-purple);
    color: var(--color-white);
    box-shadow: 0 4px 25px var(--color-purple-glow);
    border: 1px solid rgba(241, 241, 241, 0.1);
}

.btn-purple-glow:hover {
    background-color: var(--color-purple-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(73, 0, 166, 0.8);
    border-color: rgba(241, 241, 241, 0.25);
}

.btn-purple {
    background-color: rgba(73, 0, 166, 0.12);
    color: var(--text-primary);
    border: 1px solid rgba(73, 0, 166, 0.4);
}

.btn-purple:hover {
    background-color: var(--color-purple);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / STICKY NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    height: var(--header-height-scrolled);
    background-color: rgba(6, 2, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Logo with image */
.site-logo-img {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    /* Use screen blend mode so the white background disappears on dark site */
    mix-blend-mode: screen;
    transition: var(--transition-smooth);
}

.site-logo-img:hover .header-logo-img {
    filter: brightness(1.15) drop-shadow(0 0 8px rgba(217, 255, 0, 0.5));
    transform: scale(1.03);
}

.footer-logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    margin-bottom: 16px;
    display: block;
    transition: var(--transition-smooth);
}

.footer-logo.site-logo-img:hover .footer-logo-img {
    filter: brightness(1.15) drop-shadow(0 0 10px rgba(217, 255, 0, 0.4));
}

/* Legacy logo (kept for compatibility) */
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
    color: var(--color-neon);
    font-size: 1.2rem;
    border-radius: 10px;
    font-weight: 900;
    border: 1.5px solid rgba(217, 255, 0, 0.3);
}

.logo-text span {
    color: var(--color-neon);
}

/* Desktop Navigation */
.nav-desktop {
    display: block;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-neon);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-link.active {
    color: var(--color-neon);
}

/* Mobile Toggle Hamburger */
.btn-mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.btn-mobile-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* Mobile Menu Active Hamburger transformation */
.btn-mobile-menu.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.btn-mobile-menu.open .bar:nth-child(2) {
    opacity: 0;
}

.btn-mobile-menu.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Slide Overlay */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(14, 5, 32, 0.98);
    border-left: 1px solid var(--border-glass);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    z-index: 1050;
    padding: 100px 30px 40px;
    transition: var(--transition-smooth);
}

.nav-mobile.open {
    right: 0;
}

.nav-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nav-mobile-link {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(241,241,241,0.05);
}

.nav-mobile-link:hover {
    color: var(--color-neon);
    padding-left: 8px;
}

.mobile-cta-wrap {
    margin-top: 30px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Badge Alert style */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(73, 0, 166, 0.15);
    border: 1px solid rgba(73, 0, 166, 0.4);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.ping-container {
    position: relative;
    display: flex;
    width: 10px;
    height: 10px;
}

.ping-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-neon);
    border-radius: 50%;
    opacity: 0.75;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.core-circle {
    position: relative;
    width: 10px;
    height: 10px;
    background-color: var(--color-neon);
    border-radius: 50%;
}

.hero-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

/* Headline */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--color-white);
}

.neon-highlight {
    color: var(--color-neon);
    text-shadow: 0 0 20px var(--color-neon-glow);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Trust stats badge */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-stars {
    display: flex;
    color: var(--color-neon);
    font-size: 1.1rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-count {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Media & Floating elements */
.hero-visual {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: visible; /* To allow floating cards outside bounds */
}

.video-accent-glow {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(73,0,166,0.3) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 1.5px solid var(--border-glass);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-video-container iframe,
.hero-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Purely aesthetic image layout matching the video look */
}

/* Floating Card Component */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 10;
    transition: var(--transition-smooth);
}

.floating-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-5px);
}

.float-left-bottom {
    bottom: -30px;
    left: -40px;
    animation: float 6s ease-in-out infinite alternate;
}

.float-right-top {
    top: -30px;
    right: -40px;
    animation: float 6s ease-in-out infinite alternate-reverse 3s;
}

.float-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.3rem;
}

.float-icon-box.purple {
    background-color: rgba(73, 0, 166, 0.15);
    color: var(--color-purple-light);
    border: 1px solid rgba(73, 0, 166, 0.3);
}

.float-icon-box.neon {
    background-color: rgba(217, 255, 0, 0.1);
    color: var(--color-neon);
    border: 1px solid rgba(217, 255, 0, 0.3);
}

.float-card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.float-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ==========================================================================
   ABOUT / SOBRE SECTION
   ========================================================================== */
.sobre-section {
    background-color: var(--bg-dark-2);
}

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

.sobre-image-wrapper {
    position: relative;
    width: 100%;
}

.sobre-image-container {
    position: relative;
    border-radius: 24px;
    border: 1.5px solid var(--border-glass);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.sobre-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
    transition: var(--transition-smooth);
}

.sobre-img:hover {
    transform: scale(1.03);
}

/* Neon absolute stats badge on top of image */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-purple);
    border: 1.5px solid var(--color-neon);
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(73, 0, 166, 0.4);
    z-index: 5;
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-neon);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.purple-highlight {
    color: var(--color-purple-light);
    background: linear-gradient(120deg, var(--color-purple-light), #9452ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sobre-p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Core Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 36px 0 40px;
    padding: 24px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.stat-card {
    text-align: left;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-neon);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background-color: var(--bg-dark-1);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Service Card Components (Glassmorphism + Purple Glows) */
.service-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-purple-light));
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-hover);
    box-shadow: 0 20px 40px rgba(73, 0, 166, 0.15);
}

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

.sc-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(73, 0, 166, 0.1);
    color: var(--color-purple-light);
    font-size: 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(73, 0, 166, 0.2);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .sc-icon-box {
    background: var(--color-purple);
    color: var(--color-neon);
    border-color: var(--color-neon);
    transform: scale(1.05);
}

.sc-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-neon);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.sc-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.sc-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 28px;
    flex-grow: 1;
}

.sc-footer {
    width: 100%;
}

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.sc-link .iconify {
    transition: transform var(--transition-fast);
}

.service-card:hover .sc-link {
    color: var(--color-neon);
}

.service-card:hover .sc-link .iconify {
    transform: translateX(4px);
}

/* ==========================================================================
   TARGET AUDIENCE / NICHES SECTION
   ========================================================================== */
.target-audience-section {
    background-color: var(--bg-dark-2);
}

.niche-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.niche-card {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: default;
}

.niche-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-neon);
    box-shadow: 0 20px 40px rgba(217, 255, 0, 0.1);
}

.niche-glow-effect {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(73, 0, 166, 0.5) 0%, transparent 70%);
    pointer-events: none;
    transition: var(--transition-smooth);
    opacity: 0;
}

.niche-card:hover .niche-glow-effect {
    opacity: 1;
    bottom: -20px;
}

.niche-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(73, 0, 166, 0.2), rgba(106, 27, 242, 0.15));
    border: 1.5px solid rgba(73, 0, 166, 0.3);
    border-radius: 18px;
    font-size: 2rem;
    color: var(--color-neon);
    margin: 0 auto 22px;
    transition: var(--transition-smooth);
}

.niche-card:hover .niche-icon-wrapper {
    background: var(--color-purple);
    border-color: var(--color-neon);
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 10px 25px rgba(73, 0, 166, 0.5);
}

.niche-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.niche-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   COVERAGE / MAP SECTION
   ========================================================================== */
.map-section {
    background-color: var(--bg-dark-2);
    overflow: hidden;
}

.map-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.map-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.neon-text {
    color: var(--color-neon);
    font-size: 1.25rem;
}



.brasil-map-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    object-fit: contain;
}

/* ==========================================================================
    BENEFITS SECTION
    ========================================================================== */
.benefits-section {
    background-color: var(--bg-dark-1);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
}

.benefits-intro {
    position: sticky;
    top: 120px;
}

.benefits-title {
    font-size: 2.3rem;
    margin-bottom: 24px;
}

.benefits-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.benefits-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-glass);
}

.b-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.b-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-neon);
    min-width: 70px;
}

.b-stat-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* List stacked layout */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ben-item {
    display: flex;
    gap: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 28px;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.ben-item:hover {
    border-color: var(--color-purple-light);
    transform: translateX(8px);
}

.ben-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(73, 0, 166, 0.15);
    color: var(--color-neon);
    font-size: 1.5rem;
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(73, 0, 166, 0.3);
}

.ben-item:hover .ben-icon-wrap {
    background-color: var(--color-purple);
    transform: scale(1.05);
}

.ben-content {
    display: flex;
    flex-direction: column;
}

.ben-item-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.ben-item-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PLANS SECTION
   ========================================================================== */
.plans-section {
    background-color: var(--bg-dark-2);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Plan Card Base style */
.plan-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

/* Recommended highlight package card */
.plan-card.recommended {
    border: 2px solid var(--color-purple-light);
    background: linear-gradient(180deg, rgba(73, 0, 166, 0.15) 0%, rgba(14, 5, 32, 0.6) 100%);
    box-shadow: 0 10px 40px rgba(73, 0, 166, 0.2);
}

.plan-card.recommended:hover {
    border-color: var(--color-neon);
    box-shadow: 0 15px 45px rgba(73, 0, 166, 0.35);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-neon);
    color: #06020f;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
}

.plan-header {
    margin-bottom: 30px;
    text-align: center;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.plan-price {
    margin-top: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.plan-price .currency {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-price .amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.plan-card.recommended .plan-price .amount {
    color: var(--color-neon);
}

/* Bullet Checklist */
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.plan-features li.disabled {
    color: var(--text-muted);
    opacity: 0.55;
    text-decoration: line-through;
}

.plan-features .iconify {
    font-size: 1.15rem;
    flex-shrink: 0;
}

.plan-features .iconify.neon { color: var(--color-neon); }
.plan-features .iconify.green { color: var(--color-purple-light); }

.plan-action {
    width: 100%;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    background-color: var(--bg-dark-1);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--color-purple-light);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-right: 20px;
}

.faq-icon-wrap {
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

/* Expanded style handled dynamically */
.faq-item.active {
    background-color: rgba(73, 0, 166, 0.05);
    border-color: var(--color-neon);
}

.faq-item.active .faq-icon-wrap {
    transform: rotate(45deg);
    color: var(--color-neon);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    padding: 0 30px 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--bg-dark-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--color-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background-color: rgba(217, 255, 0, 0.08);
    border-radius: 12px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(217, 255, 0, 0.1);
}

.info-item:hover .info-icon {
    background-color: rgba(217, 255, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 255, 0, 0.2);
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.info-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.info-link:hover {
    color: var(--color-neon);
}

/* Glassmorphic Contact Card Form */
.contact-form-wrapper {
    background: var(--bg-glass);
    border: 1.5px solid var(--border-glass);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    background: rgba(6, 2, 15, 0.5);
    border: 1.5px solid var(--border-glass);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-purple-light);
    box-shadow: 0 0 10px rgba(73, 0, 166, 0.3);
}

.form-group textarea {
    resize: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--bg-dark-1);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px;
    position: relative;
    z-index: 10;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--bg-dark-3);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 1.2rem;
}

.footer-socials a:hover {
    background-color: var(--color-neon);
    color: #06020f;
    border-color: var(--color-neon);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--color-neon-glow);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-neon);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-neon);
    padding-left: 4px;
}

.footer-contact li {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(241, 241, 241, 0.05);
    padding-top: 30px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright, .developer {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.developer-link {
    color: var(--color-neon);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.developer-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.footer-contact-link {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-contact-link:hover {
    color: var(--color-neon);
    text-decoration: none;
}

/* ==========================================================================
   SCROLL ENTRANCE ANIMATIONS
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

.fade-in-up {
    transform: translateY(40px);
}

.animate-on-scroll.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Custom delays helper */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Custom Keyframe animations */
@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE FRIENDLY)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 360px;
    }

    .trust-badge {
        flex-direction: column;
        gap: 8px;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sobre-text-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stats-row {
        width: 100%;
    }

    .map-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .map-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .map-features {
        align-items: flex-start;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .benefits-intro {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefits-stats {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-details {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --container-width: 100%;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .section-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Header */
    .nav-desktop, .header-actions {
        display: none;
    }

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

    .header-inner {
        padding: 15px 20px;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-md, .btn-sm {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .floating-card {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .float-left-bottom {
        left: -10px;
        bottom: -20px;
    }

    .float-right-top {
        right: -10px;
        top: -20px;
    }

    /* About Section */
    .sobre-image-wrapper {
        max-width: 100%;
    }

    .sobre-img {
        height: 300px;
        object-fit: cover;
    }

    .experience-badge {
        padding: 12px 18px;
        right: 15px;
        bottom: 15px;
    }

    .experience-badge .number {
        font-size: 1.7rem;
    }

    .experience-badge .text {
        font-size: 0.7rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .stat-card {
        text-align: center;
        padding: 20px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Services */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .sc-title {
        font-size: 1.2rem;
    }

    .sc-desc {
        font-size: 0.9rem;
    }

    /* Target Audience */
    .niche-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .niche-card {
        padding: 25px 15px;
    }

    .niche-title {
        font-size: 1rem;
    }

    /* Map Section */
    .brasil-map-image {
        max-width: 100%;
        max-height: 400px;
    }

    /* Benefits Section */
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-intro {
        position: static;
        text-align: center;
    }

    .benefits-stats {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .b-stat-num {
        font-size: 2rem;
    }

    .ben-item {
        padding: 20px 15px;
    }

    .ben-item-title {
        font-size: 1.05rem;
    }

    .ben-item-desc {
        font-size: 0.9rem;
    }

    /* Plans Section */
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 25px;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .plan-name {
        font-size: 1.2rem;
    }

    .plan-features li {
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq-accordion {
        max-width: 100%;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .footer-desc, .footer-contact-link, .footer-links a {
        font-size: 0.9rem;
    }

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

    .footer-contact-link, .developer-link {
        text-align: center;
    }

    /* Trust Badge */
    .trust-badge {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .trust-stars {
        justify-content: center;
    }

    .trust-count {
        font-size: 1rem;
    }

    .trust-label {
        font-size: 0.85rem;
    }
}

/* Extra small devices (phones < 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 50px 0;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .btn-lg, .btn-md, .btn-sm {
        padding: 10px 18px;
        font-size: 0.85rem;
        width: 100%;
    }

    .service-card {
        padding: 25px 15px;
    }

    .sc-title {
        font-size: 1.1rem;
    }

    .sc-desc {
        font-size: 0.85rem;
    }

    .niche-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .niche-card {
        padding: 20px 12px;
    }

    .niche-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .niche-title {
        font-size: 0.95rem;
    }

    .niche-desc {
        font-size: 0.85rem;
    }

    .plan-card {
        padding: 25px 15px;
    }

    .plan-price {
        margin-bottom: 15px;
    }

    .plan-features li {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    .faq-trigger {
        padding: 18px 15px;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
    }

    .map-features {
        text-align: center;
    }

    .benefits-intro {
        align-items: center;
    }

    .ben-item {
        padding: 18px 12px;
    }

    .ben-item-title {
        font-size: 1rem;
    }
}
