/* ========================================================================
   LICITANEST LANDING PAGE — Main Stylesheet
   Modularizado em 14/03/2026
   ======================================================================== */

/* -----------------------------------------------------------------------
   1. VARIABLES & RESET
   ----------------------------------------------------------------------- */
:root {
    --bg-r: 5;
    --bg-g: 6;
    --bg-b: 15;
    --bg-color: rgb(var(--bg-r), var(--bg-g), var(--bg-b));
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.35);
    --gradient-start: #22d3ee;
    --gradient-end: #3b82f6;
}

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* -----------------------------------------------------------------------
   2. ANIMATION BASE CLASSES (GSAP Reveal System)
   ----------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    will-change: transform, opacity;
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    will-change: transform, opacity;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    will-change: transform, opacity;
}
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    will-change: transform, opacity;
}
.reveal-rotate {
    opacity: 0;
    transform: translateY(40px) rotate(3deg);
    will-change: transform, opacity;
}
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.split-word {
    display: inline-block;
    overflow: hidden;
}
.split-word-inner {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}
.parallax-slow, .parallax-medium, .parallax-fast { will-change: transform; }
.section-reveal {
    will-change: transform, opacity;
}

/* ─── STACKING SCROLL SYSTEM ─── */
/* Each section sticks and the next one slides over it */
.stack-section {
    position: sticky;
    top: 0;
    will-change: transform;
    transform-origin: center top;
}

/* Escalonamento de z-index para empilhamento correto */
.stack-section:nth-child(1)  { z-index: 1; }
.stack-section:nth-child(2)  { z-index: 2; }
.stack-section:nth-child(3)  { z-index: 3; }
.stack-section:nth-child(4)  { z-index: 4; }
.stack-section:nth-child(5)  { z-index: 5; }
.stack-section:nth-child(6)  { z-index: 6; }
.stack-section:nth-child(7)  { z-index: 7; }
.stack-section:nth-child(8)  { z-index: 8; }
.stack-section:nth-child(9)  { z-index: 9; }
.stack-section:nth-child(10) { z-index: 10; }
.stack-section:nth-child(11) { z-index: 11; }
.stack-section:nth-child(12) { z-index: 12; }

/* Shadow that appears on top of pinned sections for depth */
.stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent);
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    transition: opacity 0.4s ease;
}

/* Rounded top corners for sections that overlap */
.stack-section > section,
.stack-section > div {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.1);
}

/* Override border-radius for sections that already have their own */
.stack-section > .testimonials-section,
.stack-section > .bottom-unified-section {
    /* These already have their own border-radius, keep it */
}

/* Ensure backgrounds are opaque for proper stacking */
.stack-section > .clean-features,
.stack-section > .process-section,
.stack-section > .features-section,
.stack-section > .toolkit-section,
.stack-section > .faq-section {
    background-color: #f3f4f6;
}

.stack-section > .lead-capture-section {
    background-color: #ffffff;
}

/* -----------------------------------------------------------------------
   3. HEADER & NAVIGATION
   ----------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    max-width: 1400px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 1rem 0.8rem 2rem;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 100px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.logo {
    flex: 1;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #1e293b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}
.logo span { color: #06b6d4; }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0d3889;
}
.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-top: 2px;
}

.main-nav {
    flex: 2;
    display: flex;
    justify-content: center;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}
.main-nav li { white-space: nowrap; }
.main-nav a {
    text-decoration: none;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    position: relative;
}
.main-nav a:hover, .main-nav a.active { color: #06b6d4; }
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: #06b6d4;
    border-radius: 50%;
}

.header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}
.login-link {
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.login-link:hover {
    color: #06b6d4;
    background-color: #f1f5f9;
}
.header-cta {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-right: 1rem;
    white-space: nowrap;
}
.header-cta svg {
    flex-shrink: 0;
    min-width: 18px;
    width: 18px;
    height: 18px;
}
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}
.header-cta.secondary {
    background: transparent;
    color: #0d3889;
    border: 1.5px solid #0d3889;
    box-shadow: none;
}
.header-cta.secondary:hover {
    background: rgba(13, 56, 137, 0.06);
    box-shadow: none;
}

/* -----------------------------------------------------------------------
   3b. MOBILE HAMBURGER MENU
   ----------------------------------------------------------------------- */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}
.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #1e293b;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-overlay a {
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.2s ease;
    transform: translateY(20px);
    opacity: 0;
}
.mobile-menu-overlay.open a {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-overlay.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu-overlay.open a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu-overlay.open a:nth-child(8) { transition-delay: 0.45s; }
.mobile-menu-overlay a:hover { color: #06b6d4; }
.mobile-menu-cta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem !important;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

@media (max-width: 990px) {
    .main-nav { display: none; }
    .header-actions .login-link { display: none; }
    .header-actions .header-cta.secondary { display: none; }
    .hamburger-btn { display: flex; }
    .main-header {
        top: 8px;
        padding: 0.6rem;
        width: calc(100% - 16px);
        border-radius: 50px;
    }
    .logo { flex: 1; font-size: 1.2rem; margin-left: 1rem; }
    .header-cta { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
}

/* -----------------------------------------------------------------------
   4. HERO SECTION
   ----------------------------------------------------------------------- */
.hero-wrapper {
    position: relative;
    margin: 24px auto 0 auto;
    width: calc(100% - 48px);
    z-index: 10;
    border-radius: 160px 24px 160px 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    background: #f3f4f6;
}
@media (max-width: 768px) {
    .hero-wrapper {
        margin: 0;
        width: 100%;
        min-height: calc(100vh - 48px);
        border-radius: 0;
    }
}

.hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8% 5%;
    overflow: hidden;
    background: var(--bg-color);
}
.hero-bg-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transform: scale(1.05);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(0deg, rgba(var(--bg-r), var(--bg-g), var(--bg-b), 1) 0%, rgba(var(--bg-r), var(--bg-g), var(--bg-b), 0.8) 15%, transparent 40%),
        radial-gradient(circle at 75% 50%, transparent 20%, rgba(var(--bg-r), var(--bg-g), var(--bg-b), 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    margin-top: 4rem;
    padding: 1rem 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gradient-start);
    margin-bottom: 2rem;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gradient-start);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gradient-start);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.hero-title span {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 90%;
}
.cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    box-shadow: 0 10px 25px -5px var(--accent-glow);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px var(--accent-glow);
}
.btn-primary:hover::after { left: 100%; }

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Keyframes */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* Hero Cinematic */
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(50px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroImageReveal {
    from { opacity: 0; transform: scale(0.95) translateY(60px); filter: brightness(0.5); }
    to { opacity: 1; transform: scale(1) translateY(0); filter: brightness(1); }
}

@media (max-width: 968px) {
    .hero {
        align-items: flex-start;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(3, 7, 18, 0.95) 0%, rgba(3, 7, 18, 0.85) 50%, rgba(3, 7, 18, 0.4) 100%);
    }
    .hero-content {
        max-width: 100%;
        margin-top: 0;
        padding: 1rem;
    }
    .hero-title { font-size: 3.5rem; }
    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }
}

/* -----------------------------------------------------------------------
   5. INTEGRATIONS MARQUEE
   ----------------------------------------------------------------------- */
.integrations-banner {
    position: relative;
    width: 100%;
    padding: 1rem 0 3rem 0;
    background: transparent;
    overflow: hidden;
    z-index: 10;
}
.integrations-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.integrations-banner::before,
.integrations-banner::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.integrations-banner::before {
    left: 0;
    background: linear-gradient(to right, #f3f4f6 0%, transparent 100%);
}
.integrations-banner::after {
    right: 0;
    background: linear-gradient(to left, #f3f4f6 0%, transparent 100%);
}
.integration-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #4b5563;
    letter-spacing: 0.05em;
    transition: color 0.3s ease, transform 0.3s ease;
}
.integration-item:hover {
    color: var(--gradient-end);
    transform: scale(1.05);
}
.integration-icon {
    width: 24px;
    height: 24px;
    opacity: 1;
    color: var(--gradient-end);
}

/* -----------------------------------------------------------------------
   6. CLEAN FEATURES SECTION
   ----------------------------------------------------------------------- */
.clean-features {
    background-color: transparent;
    padding: 2rem 5% 8rem 5%;
    font-family: 'Inter', sans-serif;
    color: #111827;
    position: relative;
    overflow: hidden;
}
.clean-features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #f3f4f6);
    z-index: 15;
    pointer-events: none;
}
.clean-features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.clean-features-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Visual Mockup 3D */
.cf-visual {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    z-index: 5;
}
.cf-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 1;
    animation: float-orb 8s infinite alternate ease-in-out;
}
.cf-orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(139, 92, 246, 0.4);
    top: 20%;
    right: -5%;
    animation-delay: 0s;
}
.cf-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.3);
    bottom: 5%;
    left: -10%;
    animation-delay: -3s;
}
@keyframes float-orb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 40px) scale(1.1); }
}
.cf-image-render {
    width: 260%;
    max-width: none;
    object-fit: contain;
    position: relative;
    z-index: 10;
    margin-left: -50%;
    margin-right: -20%;
    margin-bottom: -15%;
    filter: drop-shadow(-40px 60px 80px rgba(0, 0, 0, 0.3)) drop-shadow(0 10px 20px rgba(6, 182, 212, 0.25));
    transform: translateY(0px) rotate(-2deg);
}
.cf-image-render:hover {
    filter: drop-shadow(-40px 70px 100px rgba(0, 0, 0, 0.4)) drop-shadow(0 10px 30px rgba(6, 182, 212, 0.4));
}
.clean-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: #030712;
}
.clean-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 90%;
}
.clean-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: gap 0.3s ease;
}
.clean-link:hover { gap: 0.8rem; }
.clean-divider {
    width: 100%;
    height: 1px;
    background-color: #d1d5db;
    margin: 3rem 0;
}
.clean-bottom-features {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}
.cbf-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.cbf-icon-box {
    width: 60px;
    height: 60px;
    background-color: #030712;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.cbf-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: #111827;
    max-width: 150px;
}

@media (max-width: 900px) {
    .clean-features-container { grid-template-columns: 1fr; }
    .cf-visual { margin-bottom: 0; transform: scale(0.9); }
    .clean-title { font-size: 3rem; }
}
@media (max-width: 768px) {
    .clean-title { font-size: 2.5rem; }
    .clean-bottom-features { flex-direction: column; gap: 2rem; }
}

/* -----------------------------------------------------------------------
   7. PROCESS SECTION (3 Steps)
   ----------------------------------------------------------------------- */
.process-section {
    background-color: #f3f4f6;
    padding: 6rem 5%;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 10;
}
.process-container {
    max-width: 1200px;
    margin: 0 auto;
}
.process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}
.process-header-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.08;
    color: #030712;
    letter-spacing: -0.03em;
}
.process-header-left h2 span { color: var(--gradient-end, #0284c7); }
.process-header-right { padding-top: 0.5rem; }
.process-header-right p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.process-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #030712;
    text-decoration: none;
    border-bottom: 2px solid #030712;
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}
.process-cta-link:hover {
    color: var(--gradient-end, #0284c7);
    border-color: var(--gradient-end, #0284c7);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.process-step {
    background: #ffffff;
    border-radius: 60px 12px 60px 12px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.process-step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(0,0,0,0.04);
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}
.process-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    flex-shrink: 0;
}
.process-step:nth-child(1) .process-step-icon { background: linear-gradient(135deg, #dbeafe, #eff6ff); color: #2563eb; }
.process-step:nth-child(2) .process-step-icon { background: linear-gradient(135deg, #d1fae5, #ecfdf5); color: #059669; }
.process-step:nth-child(3) .process-step-icon { background: linear-gradient(135deg, #e0e7ff, #eef2ff); color: #4f46e5; }
.process-step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #030712;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.process-step p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}
.process-step-tag {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
}

@media (max-width: 900px) {
    .process-header { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
    .process-header-left h2 { font-size: 2.5rem; }
    .process-steps { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------------------
   8. FEATURES GRID SECTION
   ----------------------------------------------------------------------- */
.features-section {
    background-color: #f3f4f6;
    padding: 100px 5% 60px;
}
.features-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #030712;
    margin-bottom: 4rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
}
.feature-item {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.feature-item-icon {
    width: 140px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    background: white;
    mix-blend-mode: multiply;
}
.feature-item-icon img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}
.feature-item-box {
    background: #f3f4f6;
    border-radius: 40px 8px 40px 8px;
    padding: 1.25rem 1.75rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    position: relative;
    margin-left: -16px;
    transition: all 0.3s ease;
}
.feature-item:hover .feature-item-box {
    background: #e9eaed;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.feature-item-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.feature-item-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.feature-item-arrow {
    font-size: 1.1rem;
    color: #9ca3af;
    transition: all 0.3s ease;
}
.feature-item:hover .feature-item-arrow {
    color: #030712;
    transform: translateX(3px);
}
.feature-item-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #030712;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .features-section-title { font-size: 2.2rem; }
}

/* -----------------------------------------------------------------------
   9. TESTIMONIALS SECTION
   ----------------------------------------------------------------------- */
.testimonials-section {
    background-color: #0d3889;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(135deg, #0d3889 0%, #040e2a 100%);
    background-size: 40px 40px, auto;
    position: relative;
    padding: 6rem 0 8rem 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    z-index: 10;
    border-radius: 160px 24px 160px 24px;
    margin: 0 24px 40px 24px;
    transform: translateZ(0);
}
@media (max-width: 768px) {
    .testimonials-section {
        border-radius: 0;
        margin: 0;
        padding: 4rem 0 5rem 0;
    }
}
.testimonials-bg, .testimonials-bg::before { display: none !important; }

.testimonials-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}
.testimonials-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    letter-spacing: -0.03em;
    padding: 0 5%;
}
.testimonials-title span {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.testimonials-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin-bottom: 8px;
}
.testimonials-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.testimonials-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scroll-testimonials 40s linear infinite;
    padding: 3rem 1vw;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.5rem)); }
}

/* Testimonial Cards */
.testi-card {
    width: 500px;
    background: #ffffff;
    border-radius: 28px;
    position: relative;
    padding: 4.5rem 3rem 0 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.testi-card:hover { transform: translateY(-5px); }

/* Avatar com iniciais (sem fotos externas) */
.testi-avatar {
    position: absolute;
    top: -45px;
    left: 50px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}
.testi-avatar.avatar-1 { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.testi-avatar.avatar-2 { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.testi-avatar.avatar-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.testi-user-info {
    position: absolute;
    top: -20px;
    left: 125px;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    padding: 0.6rem 1.8rem;
    border-radius: 100px;
    color: white;
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.25);
    border: 3px solid #ffffff;
    z-index: 2;
}
.testi-name {
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.2;
    display: block;
}
.testi-role {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    display: block;
}
.testi-quote {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 500;
    flex-grow: 1;
}
.testi-quote strong { color: #111827; font-weight: 700; }
.testi-quote p + p { margin-top: 1rem; }
.testi-footer {
    margin: 0 -3rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.testi-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}
.testi-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: white;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.testi-logo svg { color: var(--gradient-start); }
.testi-slogan {
    font-size: 0.9rem;
    color: #cbd5e1;
    text-align: right;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 1.5rem;
}
.testi-slogan span { color: white; font-weight: 600; }

@media (max-width: 900px) {
    .testimonials-title { font-size: 2.8rem; }
    .testi-card { width: 400px; padding: 4.5rem 2rem 0 2rem; }
    .testi-footer { margin: 0 -2rem; padding: 1.5rem 2rem; }
}
@media (max-width: 600px) {
    .testimonials-title { font-size: 2.2rem; }
    .testi-card { width: 340px; padding: 4rem 1.5rem 0 1.5rem; min-height: 350px; }
    .testi-avatar { left: 50%; transform: translateX(-50%); }
    .testi-user-info { left: 50%; transform: translateX(-50%); top: 40px; text-align: center; }
    .testi-quote { margin-top: 3rem; font-size: 1.1rem; }
    .testi-footer { margin: 0 -1.5rem; padding: 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
    .testi-slogan { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 1rem; }
}

/* -----------------------------------------------------------------------
   10. NATIONAL MAP SECTION
   ----------------------------------------------------------------------- */
.national-map-container {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    margin: 8rem auto 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}
.map-content-left { color: #ffffff; }
.map-badge {
    display: inline-block;
    color: var(--gradient-start);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.map-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.map-title span { color: var(--gradient-start); }
.map-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.map-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.map-stat-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}
.map-stat-item p {
    font-size: 0.85rem;
    color: var(--gradient-start);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--gradient-end);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: none;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}
.map-btn:hover {
    background-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(59, 130, 246, 0.4);
}
.map-visual-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Map Pins */
.map-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #00d2ff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.8), 0 0 20px rgba(0, 210, 255, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    transform: translate(-50%, -50%);
}
.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #00d2ff;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite ease-out;
    pointer-events: none;
}
.map-pin:hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: #fff;
    box-shadow: 0 0 15px #fff, 0 0 30px #00d2ff;
}
@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0; }
}

@media (max-width: 900px) {
    .national-map-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 5rem;
        margin-bottom: 0;
        text-align: center;
    }
    .map-title { font-size: 2.8rem; }
    .map-stats-grid { grid-template-columns: 1fr; gap: 2rem; border-top: none; padding-top: 1rem; }
    .map-btn { margin: 1rem auto 0 auto; }
}

/* -----------------------------------------------------------------------
   11. COMPLIANCE CARDS SECTION
   ----------------------------------------------------------------------- */
.compliance-container {
    max-width: 1200px;
    margin: 8rem auto 6rem auto;
    padding: 0 5%;
    position: relative;
    z-index: 3;
}
.compliance-header {
    text-align: center;
    margin-bottom: 4rem;
}
.compliance-subtitle {
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}
.compliance-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
}
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.compliance-card {
    background: #111A33;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.compliance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.1);
}
.compliance-img-box {
    height: 220px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.animated-svg-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.25));
    animation: float-svg 6s ease-in-out infinite;
}
.compliance-card:nth-child(1) .animated-svg-icon { animation-delay: 0s; }
.compliance-card:nth-child(2) .animated-svg-icon { animation-delay: 2s; }
.compliance-card:nth-child(3) .animated-svg-icon { animation-delay: 4s; }
@keyframes float-svg {
    0% { transform: scale(1.3) translateY(0px); }
    50% { transform: scale(1.3) translateY(-15px); }
    100% { transform: scale(1.3) translateY(0px); }
}
.compliance-card h3 { color: #ffffff; font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; }
.compliance-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    min-height: 50px;
    flex-grow: 1;
}
.compliance-btn {
    display: inline-block;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    margin-top: auto;
}
.compliance-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 992px) {
    .compliance-grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------------------
   12. TOOLKIT SECTION
   ----------------------------------------------------------------------- */
.toolkit-section {
    background-color: transparent;
    padding: 8rem 5%;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    position: relative;
}
.toolkit-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}
.toolkit-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.toolkit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.toolkit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}
.toolkit-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}
.toolkit-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tk-1 { background: #e0e7ff; color: #4f46e5; }
.tk-2 { background: #fee2e2; color: #ef4444; }
.tk-3 { background: #ffedd5; color: #f97316; }
.tk-4 { background: #dcfce7; color: #22c55e; }
.tk-5 { background: #e0f2fe; color: #0ea5e9; }
.tk-6 { background: #fef9c3; color: #eab308; }
.tk-7 { background: #fce7f3; color: #ec4899; }
.tk-8 { background: #fae8ff; color: #d946ef; }
.toolkit-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0; }
.toolkit-card p { font-size: 0.85rem; color: #64748b; line-height: 1.5; margin: 0; }

/* CTA Split */
.cta-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 8rem auto 0 auto;
    align-items: center;
}
.cta-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}
.cta-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0d3889 0%, #06b6d4 100%);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}
.cta-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 15px 25px rgba(6, 182, 212, 0.4);
}

@media (max-width: 1024px) {
    .toolkit-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-split { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .cta-btn { margin: 0 auto; }
}
@media (max-width: 600px) {
    .toolkit-grid { grid-template-columns: 1fr; }
    .toolkit-header h2 { font-size: 2.2rem; }
    .cta-content h2 { font-size: 2.2rem; }
}

/* -----------------------------------------------------------------------
   13. LEAD CAPTURE SECTION
   ----------------------------------------------------------------------- */
.lead-capture-section {
    padding: 6rem 5%;
    background-color: #f3f4f6;
    font-family: 'Inter', sans-serif;
}
.lead-capture-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 60px 16px 60px 16px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
.lead-capture-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.lead-capture-header {
    text-align: center;
    margin-bottom: 3rem;
}
.lead-capture-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.8rem;
}
.lead-capture-header p {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}
.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.lead-form .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.lead-form .form-group.full-width { grid-column: span 2; }
.lead-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}
.lead-form input,
.lead-form select {
    padding: 0.9rem 1.2rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.lead-form input:focus,
.lead-form select:focus {
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}
.lead-form input::placeholder { color: #94a3b8; }
.lead-form-btn {
    grid-column: span 2;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #0d3889 0%, #06b6d4 100%);
    color: white;
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.lead-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(6, 182, 212, 0.35);
}
.lead-form-privacy {
    grid-column: span 2;
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}
.lead-form-privacy a { color: #06b6d4; text-decoration: underline; }

@media (max-width: 600px) {
    .lead-form { grid-template-columns: 1fr; }
    .lead-form .form-group.full-width,
    .lead-form-btn,
    .lead-form-privacy { grid-column: span 1; }
    .lead-capture-container { padding: 2rem; border-radius: 40px 12px 40px 12px; }
    .lead-capture-header h2 { font-size: 1.8rem; }
}

/* -----------------------------------------------------------------------
   14. FAQ SECTION
   ----------------------------------------------------------------------- */
.faq-section {
    padding: 5rem 2rem;
    background-color: transparent;
    display: flex;
    justify-content: center;
}
.faq-container {
    width: 100%;
    max-width: 1300px;
    background-color: #ffffff;
    border-radius: 160px 24px 160px 24px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    background-image:
        radial-gradient(circle at top left, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
        radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px;
    background-position: center, center;
}
.faq-header-top {
    text-align: center;
    margin-bottom: 4rem;
}
.faq-badge {
    display: inline-block;
    background-color: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.faq-header-top h2 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.faq-header-top h2 span { color: #06b6d4; }
.faq-header-top p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.faq-grid-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
}
.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.faq-support-box {
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    color: white;
    text-align: left;
    position: sticky;
    top: 100px;
}
.faq-support-box h4 { font-size: 1.4rem; margin-bottom: 0.8rem; line-height: 1.3; }
.faq-support-box p { font-size: 0.95rem; opacity: 0.9; margin-bottom: 1.8rem; line-height: 1.6; }
.faq-support-box a {
    display: block;
    background: #ffffff;
    color: #2563eb;
    text-align: center;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.faq-support-box a:hover { transform: translateY(-2px); }

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%2306b6d4" stroke-width="2"><path d="M6 9l6 6 6-6"></path></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}
.faq-content p {
    margin: 0;
    animation: collapseShow 0.3s ease-out;
}
@keyframes collapseShow {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .faq-grid-layout { grid-template-columns: 1fr; }
    .faq-container { padding: 2rem; border-radius: 80px 16px 80px 16px; }
    .faq-header-top h2 { font-size: 2.2rem; }
}

/* -----------------------------------------------------------------------
   15. CALCULATOR SECTION
   ----------------------------------------------------------------------- */
.bottom-unified-section {
    background-color: #0d3889;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(135deg, #0d3889 0%, #040e2a 100%);
    background-size: 40px 40px, auto;
    border-top: none;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-radius: 160px 24px 160px 24px;
    margin: 0 24px 40px 24px;
    transform: translateZ(0);
}
@media (max-width: 768px) {
    .bottom-unified-section {
        border-radius: 0;
        margin: 0;
    }
}
.calc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}
.calc-header {
    text-align: center;
    margin-bottom: 3rem;
}
.calc-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}
.calc-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: transparent;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}
@media (max-width: 900px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-left { padding: 3rem; background: transparent; }
.calc-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}
.calc-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 500px) { .calc-options-grid { grid-template-columns: 1fr; } }
.calc-option-btn {
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    padding: 1rem;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}
.calc-option-btn:hover { border-color: rgba(255, 255, 255, 0.3); }
.calc-option-btn.active {
    border-color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
    color: white;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}
.calc-op-title { font-weight: 600; color: #ffffff; font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; }
.calc-op-title svg { width: 18px; height: 18px; color: #06b6d4; }
.calc-op-desc { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); line-height: 1.4; }

/* Range Slider */
.calc-slider-box { margin-bottom: 2.5rem; }
.slider-labels { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.slider-val-display {
    font-weight: 700;
    color: #a5f3fc;
    background: rgba(6, 182, 212, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}
input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #06b6d4;
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

/* Toggles */
.add-ons-list { display: flex; flex-direction: column; gap: 1rem; }
.addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}
.addon-info { display: flex; align-items: center; gap: 0.8rem; }
.addon-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(6, 182, 212, 0.1);
    color: #00829b;
    display: flex;
    align-items: center;
    justify-content: center;
}
.addon-text h4 { margin: 0 0 0.2rem 0; font-size: 0.95rem; color: #ffffff; }
.addon-text p { margin: 0; font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); }
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.ts-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 24px;
}
.ts-slider:before {
    position: absolute;
    content: "";
    height: 18px; width: 18px;
    left: 3px; bottom: 3px;
    background-color: #f8fafc;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
input:checked + .ts-slider { background-color: #06b6d4; }
input:checked + .ts-slider:before { transform: translateX(20px); }

/* Right Side - Result */
.calc-right {
    padding: 3rem;
    background: transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.result-box {
    background: #0d3889;
    background-image: linear-gradient(135deg, #0d3889 0%, #040e2a 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.result-box::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}
.result-top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.result-top-bar span { color: #cbd5e1; font-size: 0.9rem; font-weight: 500; }
.unit-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}
.unit-toggle .ut-switch {
    width: 36px; height: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    position: relative;
}
.unit-toggle .ut-switch::after {
    content: ''; position: absolute;
    width: 14px; height: 14px;
    background: white; border-radius: 50%;
    top: 3px; left: 3px; transition: 0.3s;
}
.unit-toggle.is-brl .ut-switch::after { transform: translateX(16px); }
.result-value-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    color: white;
}
.res-prefix { font-size: 1.5rem; font-weight: 500; color: #a5f3fc; }
.res-number {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.res-suffix { font-size: 1rem; color: #94a3b8; font-weight: 500; }
.breakdown-box {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.breakdown-row { display: flex; justify-content: space-between; margin-bottom: 0.8rem; font-size: 0.95rem; }
.breakdown-row .bd-label { color: rgba(255, 255, 255, 0.6); }
.breakdown-row .bd-val { color: #ffffff; font-weight: 600; }
.total-row { display: flex; justify-content: space-between; margin-bottom: 2rem; font-size: 1.1rem; }
.total-row .bd-label { font-weight: 600; color: #ffffff; display: flex; align-items: center; gap: 0.5rem; }
.total-row .bd-val { font-weight: 800; color: #a5f3fc; }
.btn-cta-quote {
    width: 100%;
    background: linear-gradient(135deg, #0d3889 0%, #06b6d4 100%);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}
.btn-cta-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

/* -----------------------------------------------------------------------
   16. FOOTER
   ----------------------------------------------------------------------- */
.metaclass-footer {
    background: transparent;
    padding: 4rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,0.7);
}
.mf-container { max-width: 1200px; margin: 0 auto; }
.mf-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
@media (max-width: 992px) {
    .mf-grid { grid-template-columns: 1fr 1fr; }
    .mf-logo-col { grid-column: span 2; }
}
@media (max-width: 600px) {
    .mf-grid { grid-template-columns: 1fr; }
    .mf-logo-col { grid-column: span 1; }
}
.mf-logo-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 0.2rem;
}
.mf-logo-main .logo-name { color: white; font-size: 1.6rem; line-height: 1.2; }
.mf-logo-main .logo-sub { color: rgba(255,255,255,0.5); font-size: 0.55rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0; }
.mf-logo-main span { color: #06b6d4; }
.mf-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 320px;
    color: rgba(255,255,255,0.7);
}
.mf-badges-mini { display: flex; gap: 1rem; flex-wrap: wrap; }
.mf-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: rgba(13, 56, 137, 0.5);
    color: #a5f3fc;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}
.mf-col-title { font-weight: 700; color: white; margin-bottom: 1.5rem; font-size: 1.05rem; }
.mf-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mf-links a, .mf-links span {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.mf-links a:hover { color: #06b6d4; }
.mf-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mf-bottom-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}
.mf-bottom-badges span { display: flex; align-items: center; gap: 0.4rem; }
.mf-bottom-badges i { color: #06b6d4; }
.mf-copyright {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
@media (max-width: 600px) {
    .mf-copyright { flex-direction: column; gap: 1rem; text-align: center; }
    .mf-bottom-badges { gap: 1rem; }
}

/* -----------------------------------------------------------------------
   17. COOKIE BANNER
   ----------------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background-color: #0d3889;
    background-image: linear-gradient(135deg, #0d3889 0%, #040e2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show { opacity: 1; visibility: visible; transform: translate(-50%, -10px); }
.cookie-icon {
    flex-shrink: 0; width: 48px; height: 48px;
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #06b6d4;
}
.cookie-title { font-weight: 700; color: white; margin-bottom: 0.4rem; }
.cookie-text { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); line-height: 1.5; margin: 0; }
.cookie-text a { color: #06b6d4; text-decoration: underline; }
.cookie-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.btn-cookie-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent; color: white;
    padding: 0.6rem 1.2rem; border-radius: 30px;
    font-weight: 600; cursor: pointer; transition: 0.2s;
    font-family: 'Inter', sans-serif;
}
.btn-cookie-outline:hover { background: rgba(255, 255, 255, 0.05); }
.btn-cookie-solid {
    background: #06b6d4; border: none; color: white;
    padding: 0.6rem 1.2rem; border-radius: 30px;
    font-weight: 600; cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-cookie-close {
    background: transparent; border: none;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500; cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-cookie-close:hover { color: white; }
@media (max-width: 900px) {
    .cookie-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .cookie-actions { flex-direction: column; width: 100%; }
}

/* -----------------------------------------------------------------------
   18. WHATSAPP FLOATING BUTTON
   ----------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: white;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-float::before {
    content: 'Fale conosco';
    position: absolute;
    right: 70px;
    background: #1e293b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.whatsapp-float:hover::before {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 600px) {
    .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
    .whatsapp-float::before { display: none; }
}

/* -----------------------------------------------------------------------
   19. EXIT INTENT POPUP
   ----------------------------------------------------------------------- */
.exit-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.exit-popup-overlay.show { opacity: 1; visibility: visible; }
.exit-popup {
    background: #ffffff;
    border-radius: 28px;
    max-width: 520px;
    width: 90%;
    padding: 3rem;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.exit-popup-overlay.show .exit-popup {
    transform: scale(1) translateY(0);
}
.exit-popup-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    border: none; background: #f1f5f9;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #64748b;
    transition: all 0.2s;
    font-size: 1.2rem;
}
.exit-popup-close:hover { background: #e2e8f0; color: #1e293b; }
.exit-popup-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}
.exit-popup h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.8rem;
}
.exit-popup p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.exit-popup-form {
    display: flex;
    gap: 0.75rem;
}
.exit-popup-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.exit-popup-form input:focus { border-color: #06b6d4; }
.exit-popup-form button {
    background: linear-gradient(135deg, #0d3889, #06b6d4);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.exit-popup-form button:hover { transform: translateY(-2px); }
.exit-popup-note {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 1rem;
}

/* -----------------------------------------------------------------------
   20. SCROLL PROGRESS BAR (via JS)
   ----------------------------------------------------------------------- */
.scroll-progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, #22d3ee, #3b82f6);
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    pointer-events: none;
}

/* -----------------------------------------------------------------------
   21. MOBILE FULL-WIDTH OVERRIDES
   ----------------------------------------------------------------------- */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .clean-features,
    .process-section,
    .features-section,
    .lead-capture-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .national-map-container,
    .compliance-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .faq-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .calc-wrapper {
        padding: 3rem 1rem;
    }
    .footer-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
