/* ===================================
   iziBrokerz Landing Page Styles
   Futuristic Theme: Midnight Blue, Pink Neon, Emerald Green
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --midnight: #050324;
    --midnight-light: #17103f;
    --midnight-lighter: #2f4461;
    --pink-neon: #ff006e;
    --pink-neon-light: #ff4d94;
    --pink-neon-glow: rgba(255, 0, 110, 0.5);
    --emerald: #10b981;
    --emerald-light: #34d399;
    --emerald-glow: rgba(16, 185, 129, 0.5);
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;

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

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

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

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

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

body {
    font-family: var(--font-secondary);
    background-color: var(--midnight);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Mouse Trail Canvas */
#mouse-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--emerald);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 5s infinite ease-in-out;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.6;
    }

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

    75% {
        transform: translateY(-100px) translateX(-50px);
        opacity: 0.5;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo img {
    height: 40px;
    transition: var(--transition-normal);
}

.nav-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--emerald-glow));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-neon), var(--emerald));
    transition: var(--transition-normal);
}

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

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

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(15, 23, 42, 0.85) 50%,
            rgba(15, 23, 42, 0.75) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 100px 24px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--emerald-light);
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(4rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.title-highlight {
    background: linear-gradient(135deg, var(--pink-neon), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px var(--pink-neon-glow);
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% {
        filter: drop-shadow(0 0 20px var(--pink-neon-glow));
    }

    100% {
        filter: drop-shadow(0 0 40px var(--emerald-glow));
    }
}

.title-connector {
    font-size: 0.4em;
    font-weight: 400;
    color: var(--gray-400);
    text-transform: lowercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    color: var(--white);
    box-shadow: 0 4px 20px var(--emerald-glow);
}

.btn-primary svg {
    stroke: var(--white);
    fill: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--emerald-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--pink-neon);
    background: rgba(255, 0, 110, 0.1);
    box-shadow: 0 0 20px var(--pink-neon-glow);
}

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

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

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-plus,
.stat-percent {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 8px;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

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

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

@keyframes scroll-wheel {

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

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

@keyframes bounce {

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

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

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, var(--midnight-light) 100%);
    position: relative;
}

.stats-section>h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 48px;
    padding: 0 20px;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-neon), var(--emerald), transparent);
}

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

.stat-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 0, 110, 0.05),
        inset 0 0 20px rgba(255, 0, 110, 0.02);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-neon), var(--emerald));
    opacity: 1;
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(255, 0, 110, 0.15),
        inset 0 0 40px rgba(255, 0, 110, 0.05);
}

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

.stat-icon {
    margin-bottom: 16px;
}

.stat-icon svg {
    display: inline-block;
}

.stat-card .stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--gray-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-card .stat-plus,
.stat-card .stat-percent,
.stat-card .stat-suffix {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-neon), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .stat-prefix {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--emerald);
}

.stat-card .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 8px;
    font-weight: 500;
}

/* Section Styles */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--emerald);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-pink {
    background: linear-gradient(135deg, var(--pink-neon), var(--pink-neon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-light) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}

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

.feature-card {
    position: relative;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(16, 185, 129, 0.08),
        0 0 20px rgba(255, 0, 110, 0.05),
        inset 0 0 40px rgba(16, 185, 129, 0.02);
}

/* Gradient border effect - always visible */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 0, 110, 0.4),
            rgba(16, 185, 129, 0.4),
            rgba(255, 0, 110, 0.4));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(16, 185, 129, 0.2),
        0 0 40px rgba(255, 0, 110, 0.15),
        inset 0 0 60px rgba(16, 185, 129, 0.05);
}

.feature-card:hover::before {
    background: linear-gradient(135deg,
            rgba(255, 0, 110, 0.6),
            rgba(16, 185, 129, 0.6),
            rgba(255, 0, 110, 0.6));
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center top, var(--emerald-glow) 0%, transparent 60%);
    opacity: 0.3;
    transition: var(--transition-slow);
    pointer-events: none;
}

.feature-icon {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.feature-icon svg {
    filter: drop-shadow(0 0 10px var(--pink-neon-glow));
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--emerald-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
}

.feature-icon {
    position: relative;
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(255, 0, 110, 0.1));
    border-radius: 50%;
    filter: blur(15px);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Corretores Section */
.corretores {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.corretores-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--pink-neon);
    top: -200px;
    right: -200px;
    animation: orb-float 10s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--emerald);
    bottom: -100px;
    left: -100px;
    animation: orb-float 12s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--pink-neon);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orb-pulse 8s ease-in-out infinite;
}

@keyframes orb-float {

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

    50% {
        transform: translateY(-50px) scale(1.1);
    }
}

@keyframes orb-pulse {

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

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

.corretores-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.corretores-text {
    max-width: 550px;
}

.corretores-desc {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 32px;
}

.corretores-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.05rem;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    color: var(--midnight);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.corretores-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badges-showcase {
    position: relative;
    width: 400px;
    height: 400px;
}

.badge-float {
    position: absolute;
    width: 100px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: badge-float 5s ease-in-out infinite;
}

.badge-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.badge-2 {
    top: 30%;
    right: 0;
    animation-delay: 0.5s;
}

.badge-3 {
    bottom: 30%;
    right: 10%;
    animation-delay: 1s;
}

.badge-4 {
    bottom: 10%;
    left: 10%;
    animation-delay: 1.5s;
}

.badge-5 {
    top: 30%;
    left: 0;
    animation-delay: 2s;
    width: 120px;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(3deg);
    }

    75% {
        transform: translateY(5px) rotate(-3deg);
    }
}

.badge-1 {
    animation-name: badge-center-float;
}

@keyframes badge-center-float {

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

    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

/* WhatsApp Section */
.whatsapp-section {
    padding: var(--section-padding) 0;
    background: var(--midnight-light);
}

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

.whatsapp-text p {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 32px;
    line-height: 1.8;
}

.whatsapp-qr {
    display: flex;
    justify-content: center;
}

.qr-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: var(--transition-normal);
}

.qr-card:hover {
    transform: scale(1.02);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.qr-card img {
    width: 200px;
    height: 200px;
    margin-bottom: 16px;
}

.qr-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Sobre Section */
.sobre {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--midnight-light) 0%, var(--midnight) 100%);
}

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

.sobre-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(var(--midnight), var(--midnight)) padding-box,
        linear-gradient(135deg, var(--pink-neon), var(--emerald)) border-box;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--pink-neon), transparent, var(--emerald), transparent);
    animation: rotate-glow 6s linear infinite;
    z-index: -1;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 20px;
    line-height: 1.8;
}

.sobre-quote {
    margin-top: 32px;
    padding: 24px;
    background: rgba(255, 0, 110, 0.1);
    border-left: 4px solid var(--pink-neon);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.sobre-quote blockquote {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 12px;
}

.sobre-quote cite {
    font-size: 0.9rem;
    color: var(--pink-neon);
}

/* Contato Section */
.contato {
    padding: var(--section-padding) 0;
    background: var(--midnight);
    position: relative;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-neon), transparent);
}

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

.contato-text p {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contato-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contato-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-300);
}

.benefit-check {
    color: var(--emerald);
    font-weight: bold;
}

/* Lead Form */
.contato-form-wrapper {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
}

.form-group input,
.form-group select {
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.form-group input::placeholder {
    color: var(--gray-500);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--emerald);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--emerald);
    text-decoration: underline;
}

.form-checkbox label a:hover {
    color: var(--emerald-light);
}

.btn-submit {
    margin-top: 10px;
    position: relative;
}

.btn-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-submit.loading .btn-text {
    visibility: hidden;
}

.btn-submit.loading .btn-loading {
    display: block;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(15, 23, 42, 0.3);
    border-top-color: var(--midnight);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-message {
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--emerald);
    color: var(--emerald-light);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #fca5a5;
}

/* Footer */
.footer {
    background: var(--midnight-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--emerald);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--emerald);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-tagline {
    color: var(--gray-400);
}

/* Video Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    background: var(--midnight-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--pink-neon);
}

.video-container {
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    color: var(--gray-400);
    font-size: 1.2rem;
}

/* Video Gallery Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 3, 36, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    max-width: 1100px;
    width: 95%;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(23, 16, 63, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-normal);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(139, 92, 246, 0.15),
        0 0 30px rgba(255, 0, 110, 0.1);
}

.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.video-modal-close:hover {
    background: linear-gradient(135deg, #8b5cf6, #ff006e);
    transform: rotate(90deg);
}

/* Video Gallery */
.video-gallery {
    padding: 40px;
    max-height: 85vh;
    overflow-y: auto;
}

.video-gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-gallery-header h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.video-gallery-header p {
    color: var(--gray-400);
    font-size: 1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.video-card {
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-card:hover {
    transform: translateY(-8px);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(255, 0, 110, 0.2));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.video-card:hover .video-thumb {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(139, 92, 246, 0.2);
}

.video-thumb-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #ff006e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    transition: var(--transition-normal);
}

.video-card:hover .video-thumb-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.video-number {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.video-card h4 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
}

/* Video Player View */
.video-player-view {
    padding: 30px 40px;
}

.video-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    margin-bottom: 24px;
}

.video-back-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.video-player-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-player-container video {
    width: 100%;
    display: block;
    background: #000;
}

.video-player-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 20px;
    text-align: center;
}

/* Video Gallery Responsive */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .video-gallery {
        padding: 24px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .video-gallery-header h2 {
        font-size: 1.5rem;
    }

    .video-player-view {
        padding: 20px;
    }

    .video-player-title {
        font-size: 1.1rem;
    }
}

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

    .video-card h4 {
        font-size: 0.85rem;
    }
}

/* Legal Modals */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.legal-modal.active {
    opacity: 1;
    visibility: visible;
}

.legal-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 3, 36, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.legal-modal-content {
    position: relative;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(23, 16, 63, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-normal);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(139, 92, 246, 0.15),
        0 0 30px rgba(255, 0, 110, 0.1);
}

.legal-modal.active .legal-modal-content {
    transform: scale(1) translateY(0);
}

.legal-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(255, 0, 110, 0.2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-modal-header h2 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.legal-modal-close {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-modal-close:hover {
    background: linear-gradient(135deg, #8b5cf6, #ff006e);
    transform: rotate(90deg);
}

.legal-modal-body {
    padding: 32px;
    max-height: calc(85vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.5) rgba(255, 255, 255, 0.1);
}

.legal-modal-body::-webkit-scrollbar {
    width: 8px;
}

.legal-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6, #ff006e);
    border-radius: 4px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9d6ffa, #ff3388);
}

.legal-update {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--emerald);
    background: rgba(16, 185, 129, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.legal-modal-body h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 28px 0 12px;
}

.legal-modal-body h3:first-of-type {
    margin-top: 0;
}

.legal-modal-body p {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-modal-body ul {
    margin: 12px 0 20px;
    padding-left: 24px;
}

.legal-modal-body li {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-modal-body li strong {
    color: var(--white);
}

.legal-modal-body strong {
    color: var(--emerald);
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corretores-content,
    .whatsapp-content,
    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-content {
        text-align: center;
    }

    .sobre-image {
        order: -1;
    }
}

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

    .hero-content {
        padding: 90px 20px 0;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        margin-bottom: 40px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(15, 10, 40, 0.95) 0%, rgba(23, 16, 63, 0.98) 50%, rgba(30, 20, 60, 0.95) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 24px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
        border-bottom: 1px solid rgba(139, 92, 246, 0.3);
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(139, 92, 246, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), rgba(255, 0, 110, 0.5), transparent);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 16px 0;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card:last-child {
        grid-column: span 2;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

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

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

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

    .footer-main {
        grid-template-columns: 1fr;
    }

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

    .badges-showcase {
        width: 300px;
        height: 300px;
    }

    .badge-float {
        width: 70px;
    }

    .badge-5 {
        width: 90px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 80px 16px 0;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 1.8rem;
        gap: 4px;
    }

    .title-connector {
        font-size: 0.5em;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Stats Section Mobile */
    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

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

    .stat-card .stat-number {
        font-size: 1.6rem;
    }

    .stat-card .stat-plus,
    .stat-card .stat-percent,
    .stat-card .stat-suffix {
        font-size: 1rem;
    }

    .stat-card .stat-label {
        font-size: 0.7rem;
    }

    .stat-icon svg {
        width: 28px;
        height: 28px;
    }

    /* Features Mobile */
    .features {
        padding: 60px 0;
    }

    .feature-card {
        padding: 28px 20px;
    }

    .feature-icon {
        height: 48px;
        margin-bottom: 16px;
    }

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

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-tag {
        font-size: 0.75rem;
    }

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

    /* Corretores Section Mobile */
    .corretores {
        padding: 60px 0;
    }

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

    .benefit-item {
        font-size: 0.9rem;
        padding: 12px 0;
    }

    /* WhatsApp Section Mobile */
    .whatsapp-section {
        padding: 60px 0;
    }

    .whatsapp-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-qr {
        margin-top: 32px;
    }

    .qr-card img {
        width: 180px;
        height: 180px;
        object-fit: contain;
        aspect-ratio: 1 / 1;
    }

    /* About Section Mobile */
    .sobre {
        padding: 60px 0;
    }

    .image-frame {
        width: 180px;
        height: 180px;
    }

    .sobre-text p {
        font-size: 0.95rem;
    }

    .sobre-quote blockquote {
        font-size: 1rem;
    }

    /* Contact Form Mobile */
    .contato {
        padding: 60px 0;
    }

    .contato-form-wrapper {
        padding: 24px 16px;
    }

    .lead-form input,
    .lead-form select {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Footer Mobile */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }
}

/* ===================================
   Video Modal Styles
   =================================== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 3, 36, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: rgba(30, 41, 59, 0.95);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 0, 110, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.video-modal-close:hover {
    background: var(--pink-neon);
    transform: scale(1.1);
}

/* Gallery View */
.video-gallery {
    padding: 24px;
    overflow-y: auto;
    max-height: 85vh;
}

.video-gallery-header {
    text-align: center;
    margin-bottom: 24px;
}

.video-gallery-header h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-gallery-header p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.video-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: var(--radius-md);
    padding: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.video-card:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: var(--emerald);
    transform: translateY(-4px);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--midnight), var(--midnight-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
}

.video-thumb-icon {
    font-size: 1.5rem;
    color: var(--emerald);
}

.video-number {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--pink-neon);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.video-card h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
}

/* Player View */
.video-player-view {
    display: none;
    padding: 24px;
    height: 100%;
    flex-direction: column;
}

.video-player-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.video-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.video-back-btn:hover {
    background: var(--emerald);
}

.video-player-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.video-player-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 0;
    margin-bottom: 16px;
}

.video-player-container video {
    width: 100%;
    height: 100%;
    max-height: 60vh;
    object-fit: contain;
}

/* Mobile Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .video-gallery {
        padding: 16px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .video-gallery-header h2 {
        font-size: 1.4rem;
    }

    .video-player-view {
        padding: 16px;
    }

    .video-player-container video {
        max-height: 40vh;
    }
}