@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ==================== CUSTOM PROPERTIES ==================== */
:root {
    /* Colors */
    --primary-900: #0A4F8B;
    --primary-700: #1E6BA8;
    --primary-500: #3B82F6;
    --primary-300: #60A5FA;

    --accent-900: #00C49A;
    --accent-700: #14F195;
    --accent-500: #2DD4BF;
    --accent-300: #5EEAD4;

    --neutral-950: #020617;
    --neutral-900: #0f172a;
    --neutral-800: #1e293b;
    --neutral-700: #334155;
    --neutral-600: #475569;
    --neutral-500: #64748b;
    --neutral-400: #94a3b8;
    --neutral-300: #cbd5e1;
    --neutral-200: #e2e8f0;
    --neutral-100: #f1f5f9;
    --neutral-50: #f8fafc;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 60px -15px rgb(59 130 246 / 0.5);

    /* Borders */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Animations */
    --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: #f1f5f9;
    background: var(--neutral-950);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* ==================== ANIMATED GRADIENT BACKGROUND ==================== */
.animated-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg,
            var(--neutral-950) 0%,
            var(--neutral-900) 25%,
            #0a1628 50%,
            var(--neutral-900) 75%,
            var(--neutral-950) 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Animated particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8), transparent);
    border-radius: 50%;
    animation: float-particle 15s linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* ==================== ADVANCED GLASSMORPHISM ==================== */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==================== MODERN HEADER ==================== */
.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-smooth);
}

.header-modern.scrolled {
    padding: 0.85rem 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-modern.scrolled .logo-modern img {
    height: 85px !important;
    transition: height 0.4s var(--ease-smooth);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    transition: transform 0.3s var(--ease-spring);
}

.logo-modern:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

/* ==================== HERO SECTION ULTRA-MODERN ==================== */
.hero-ultra {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

/* Animated gradient orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent);
    bottom: -10%;
    right: -10%;
    animation-delay: -10s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent);
    top: 40%;
    right: 20%;
    animation-delay: -5s;
}

@keyframes float-orb {

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

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    animation: slideInLeft 1s var(--ease-smooth) forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-300);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-primary {
    background: linear-gradient(135deg, var(--primary-300) 0%, var(--accent-300) 50%, var(--primary-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--neutral-400);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* ==================== ADVANCED BUTTONS ==================== */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-300), var(--accent-500));
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==================== DASHBOARD MOCKUP ADVANCED ==================== */
.hero-visual {
    position: relative;
    animation: slideInRight 1s var(--ease-smooth) 0.3s forwards;
    opacity: 0;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.dashboard-container {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding-top: 2rem;
}

.dashboard-mockup {
    position: relative;
    width: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@keyframes float-dashboard {

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

    50% {
        transform: translateY(-20px) rotateY(2deg);
    }
}

.dashboard-mockup:hover {
    transform: scale(1.02) rotateY(5deg);
}

.dashboard-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating stats cards */
.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float-stat 4s ease-in-out infinite;
}

.floating-stat-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-stat-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: -2s;
}

@keyframes float-stat {

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

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

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--neutral-400);
    font-weight: 500;
}

/* ==================== FEATURE CARDS ULTRA-MODERN ==================== */
.features-section {
    padding: 8rem 2rem;
    position: relative;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.section-description {
    font-size: 1.25rem;
    color: var(--neutral-400);
    line-height: 1.6;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card-modern {
    position: relative;
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(6, 182, 212, 0.05));
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-500), var(--accent-500), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.feature-card-modern:hover::after {
    opacity: 1;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        0 0 40px -10px rgba(59, 130, 246, 0.4);
}

.feature-icon-modern {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    z-index: 1;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotateY(10deg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(6, 182, 212, 0.4));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-400);
    position: relative;
    z-index: 1;
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .floating-stat {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-logo {
        height: 180px !important;
    }

    .hero-ultra {
        padding: 6rem 1.5rem 3rem;
    }

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

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

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

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

    .features-section {
        padding: 4rem 1.5rem;
    }
}

/* ==================== PAIN POINTS SECTION ==================== */
.pain-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--neutral-950) 0%, var(--neutral-900) 100%);
    position: relative;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pain-card-sticky {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.pain-card-sticky::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(193, 39, 45, 0.05), rgba(193, 39, 45, 0.01));
    opacity: 0;
    transition: opacity 0.4s;
}

.pain-card-sticky:hover::before {
    opacity: 1;
}

.pain-card-sticky:hover {
    transform: translateY(-8px);
    border-color: rgba(193, 39, 45, 0.3);
    box-shadow: 0 30px 60px -15px rgba(193, 39, 45, 0.2);
}

.pain-stat {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #C1272D 0%, #A01F24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pain-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(193, 39, 45, 0.2), rgba(160, 31, 36, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
    padding: 8rem 2rem;
    background: var(--neutral-900);
    position: relative;
}

.benefit-card-modern {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

.benefit-card-modern:hover::after {
    transform: scaleX(1);
}

.benefit-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.4);
}

.benefit-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-300), var(--accent-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

/* ==================== TRANSFORMATION SECTION ==================== */
.transformation-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--neutral-950) 0%, var(--neutral-900) 50%, var(--neutral-950) 100%);
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.before-card,
.after-card {
    padding: 3rem;
    border-radius: var(--radius-2xl);
    position: relative;
}

.before-card {
    background: rgba(193, 39, 45, 0.05);
    border: 2px solid rgba(193, 39, 45, 0.2);
}

.after-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.05));
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.comparison-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.before-badge {
    background: rgba(193, 39, 45, 0.1);
    color: #C1272D;
    border: 1px solid rgba(193, 39, 45, 0.2);
}

.after-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-300);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.comparison-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 8rem 2rem;
    background: var(--neutral-900);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s var(--ease-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-500);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
    padding: 8rem 2rem;
    background: var(--neutral-950);
    position: relative;
}

.steps-container {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-500), var(--accent-500));
    opacity: 0.3;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.5);
    position: relative;
    z-index: 1;
}

.step-content {
    padding-top: 0.5rem;
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== LEAD FORM ==================== */
.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
}

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

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

.form-success {
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    color: #10B981;
    text-align: center;
    font-weight: 600;
}

.form-error {
    padding: 1.5rem;
    background: rgba(193, 39, 45, 0.1);
    border: 1px solid rgba(193, 39, 45, 0.3);
    border-radius: var(--radius-lg);
    color: #C1272D;
    text-align: center;
    font-weight: 600;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* ==================== SUCCESS STORY BANNER ==================== */
.success-story-banner {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.success-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(96, 165, 250, 0.1);
    color: #60A5FA;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.story-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #60A5FA;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.story-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60A5FA;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Carousel Styles */
.image-carousel {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    /* Changed to black for video background */
}

.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.carousel-controls {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* ==================== VISUAL SHOWCASE ==================== */
.visual-showcase {
    padding: 6rem 2rem;
    background: rgba(15, 23, 42, 0.5);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(45, 212, 191, 0.1);
    color: #2DD4BF;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.showcase-container {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.showcase-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed from cover to contain to show full screen recording */
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.showcase-video-wrapper:hover .video-overlay {
    opacity: 1;
}

.video-controls-custom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.video-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.video-progress-fill {
    height: 100%;
    background: var(--primary-500);
    width: 0%;
    transition: width 0.1s linear;
}

.video-label {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.showcase-playlist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    max-height: 100%;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    color: var(--neutral-300);
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.playlist-item.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-500);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.playlist-item i {
    width: 20px;
    height: 20px;
    color: var(--primary-400);
}

.playlist-item.active i {
    color: var(--primary-300);
}

/* Responsive Showcase */
@media (max-width: 1024px) {
    .showcase-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .showcase-playlist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .showcase-playlist {
        grid-template-columns: 1fr;
    }
}

/* ==================== PREVENT HORIZONTAL SCROLL ==================== */
/* APENAS HTML E BODY TEM SCROLL - TODO O RESTO É FLUIDO */
html {
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    height: 100%;
}

body {
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* Container geral - SEM SCROLL */
.container {
    max-width: 100%;
    overflow: visible;
    width: 100%;
}

/* Seções - SEM SCROLL, apenas fluem */
section {
    max-width: 100vw;
    overflow: visible;
    width: 100%;
}

/* Grids - SEM SCROLL */
.features-grid,
.pain-grid,
.benefits-grid,
.comparison-grid,
.showcase-grid,
.testimonial-grid,
.steps-container {
    max-width: 100%;
    overflow: visible;
    width: 100%;
}

/* Cards - overflow hidden apenas para efeitos visuais */
.feature-card-modern,
.pain-card,
.benefit-card,
.comparison-card,
.testimonial-card,
.showcase-item {
    max-width: 100%;
    overflow: hidden;
}

/* Hero e outras seções grandes - SEM SCROLL */
.hero-ultra,
.hero-content,
.dashboard-container,
.success-story-banner,
.visual-showcase {
    max-width: 100%;
    overflow: visible;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-menu-item:hover {
    color: white;
}

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

/* Tablets e Laptops */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-ultra {
        padding: 5rem 2rem 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dashboard-preview img {
        max-width: 90%;
    }
}

/* Tablets */
@media (max-width: 768px) {

    /* APENAS HTML TEM SCROLL */
    html {
        overflow-x: hidden !important;
        overflow-y: scroll !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    body {
        overflow: visible !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    /* TODOS containers e seções SEM SCROLL */
    .container,
    section,
    .features-grid,
    .pain-grid,
    .benefits-grid,
    .comparison-grid,
    .showcase-grid {
        overflow: visible !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Success Story Banner */
    .success-story-banner {
        padding: 4rem 1.5rem;
    }

    .success-story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-quote {
        font-size: 1.125rem;
    }

    .story-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Visual Showcase */
    .visual-showcase {
        padding: 4rem 1.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Header */
    .header-modern {
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 100vw;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
    }

    /* Esconder menu desktop */
    .nav-desktop {
        display: none !important;
    }

    /* Mostrar botão hamburger */
    .mobile-menu-btn {
        display: flex;
    }

    /* Logo menor em mobile */
    .logo-modern img {
        height: 60px !important;
        max-width: 200px;
    }

    /* Hero Section */
    .hero-ultra {
        padding: 4rem 1.5rem 3rem;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    .hero-description {
        font-size: 1.125rem !important;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

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

    /* Dashboard Preview */
    .dashboard-preview {
        margin-top: 4rem;
    }

    .dashboard-preview img {
        max-width: 100%;
        border-radius: 1rem;
    }

    /* Sections */
    .pain-section,
    .benefits-section,
    .transformation-section,
    .testimonials-section,
    .how-it-works-section {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .section-description {
        font-size: 1rem !important;
    }

    /* Pain Cards */
    .pain-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    /* Benefits Cards */
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    /* Comparison Cards */
    .comparison-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 100%;
    }

    /* Cards individuais */
    .pain-card,
    .benefit-card,
    .comparison-card,
    .testimonial-card {
        width: 100%;
        max-width: 100%;
    }

    /* Step Items */
    .step-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-item:not(:last-child)::before {
        left: 29px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-container {
        padding: 3rem 2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {

    /* APENAS HTML TEM SCROLL */
    html {
        overflow-x: hidden !important;
        overflow-y: scroll !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    body {
        overflow: visible !important;
        max-width: 100vw !important;
        width: 100% !important;
        position: relative;
        margin: 0;
        padding: 0;
    }

    /* Forçar todos os elementos a respeitarem a largura */
    * {
        max-width: 100vw;
    }

    /* Containers em mobile - SEM SCROLL */
    .container {
        max-width: 100% !important;
        width: 100% !important;
        overflow: visible !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Seções em mobile - SEM SCROLL */
    section {
        max-width: 100vw !important;
        width: 100% !important;
        overflow: visible !important;
    }

    /* Grids em mobile - SEM SCROLL */
    .features-grid,
    .pain-grid,
    .benefits-grid,
    .comparison-grid,
    .showcase-grid,
    .steps-container {
        max-width: 100% !important;
        width: 100% !important;
        overflow: visible !important;
    }

    /* Logo */
    .logo-modern img,
    .header-content img[alt="HELDE Logo"] {
        height: 60px !important;
    }

    /* Hero */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 1rem !important;
        max-width: 100%;
    }

    .stats-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    /* Imagens responsivas */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Dashboard preview */
    .dashboard-preview,
    .dashboard-preview img {
        width: 100%;
        max-width: 100%;
    }

    /* Botões */
    .btn-modern,
    .cta-group {
        width: 100%;
        max-width: 100%;
    }

    /* Sections */
    .pain-section,
    .benefits-section,
    .transformation-section,
    .testimonials-section,
    .how-it-works-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    .section-description {
        font-size: 0.9375rem !important;
    }

    /* Cards */
    .pain-card,
    .benefit-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    /* Form */
    .form-cta {
        padding: 2rem 1.5rem;
    }

    .form-group input {
        font-size: 0.9375rem;
        padding: 0.875rem 1rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem !important;
    }

    .logo-modern img {
        height: 70px !important;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .btn-modern {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* ==================== VISIBILITY FIX - TEMA ESCURO ==================== */
/* Forçar cores CLARAS em fundo escuro */
body,
section {
    color: #f1f5f9 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff !important;
}

p,
li,
span:not(.gradient-text):not(.gradient-text-primary) {
    color: #cbd5e1 !important;
}

/* Seções mantêm fundo escuro */
.pain-section,
.transformation-section,
.benefits-section,
.testimonials-section,
.how-it-works-section {
    background: transparent;
}

/* Cards com fundo semi-transparente escuro */
.pain-card,
.comparison-card,
.benefit-card,
.testimonial-card,
.step-card {
    background: rgba(30, 41, 59, 0.5) !important;
    color: #f1f5f9 !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pain-card h3,
.benefit-card h3,
.testimonial-card h4,
.step-content h3 {
    color: #ffffff !important;
}

.pain-card p,
.benefit-card p,
.step-content p {
    color: #cbd5e1 !important;
}

/* Hero section - textos claros */
.hero-title {
    color: #ffffff !important;
}

.hero-description {
    color: #cbd5e1 !important;
}

.hero-badge {
    background: rgba(59, 130, 246, 0.1);
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Garantir que todos os textos sejam brancos/claros */
section *:not(.gradient-text):not(.gradient-text-primary) {
    color: inherit;
}

/* VIDEO HERO STYLES */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: #000;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 2;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Ajuste no dashboard-mockup para remover padding/background se necessário */
.dashboard-mockup.video-container {
    background: transparent;
    padding: 0;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* SWIPER STYLES */
.hero-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 3rem;
    /* Space for pagination */
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide .hero-content {
    width: 100%;
    max-width: 1600px;
    /* Increased from 1400px for larger desktop view */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Give more space to video (1.2fr) vs text (0.8fr) */
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
    /* Add padding to prevent edge touching */
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--primary-500);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--primary-500);
}

/* Responsive adjustments for Swiper */
/* Responsive adjustments for Swiper */
@media (max-width: 1024px) {
    .swiper-slide .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 1rem;
    }

    /* Make video predominant on mobile */
    .hero-visual {
        order: -1;
        width: 100%;
        /* Use 100% of parent instead of viewport width to avoid overflow issues */
        margin-bottom: 2rem;
        transform: none;
    }

    .dashboard-mockup.video-container {
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.05);
    }

    .video-wrapper {
        border-radius: 1rem;
    }

    .hero-text {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem;
    }

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

    .hero-cta {
        justify-content: center;
    }

    /* Adjust floating stats for mobile */
    .floating-stat {
        display: none;
        /* Hide floating stats on mobile to focus on video */
    }
}

@media (max-width: 768px) {
    .hero-visual {
        margin-bottom: 0.5rem;
    }

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

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* 
==================== MOBILE OVERFLOW FIX - CRITICAL ==================== */
/* Correção definitiva para scroll horizontal em mobile */

/* Reset global para mobile */
@media (max-width: 768px) {

    /* Forçar contenção de overflow */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    /* Esconder orbs que causam overflow */
    .gradient-orb,
    .orb-1,
    .orb-2,
    .orb-3 {
        display: none !important;
    }

    /* Particles também podem causar overflow */
    .particles {
        display: none !important;
    }

    /* Animated background contido */
    .animated-bg {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    /* Hero section fix */
    .hero-ultra {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero-swiper,
    .swiper-wrapper,
    .swiper-slide {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }

    .hero-visual {
        width: 100% !important;
        max-width: 100% !important;
    }

    .dashboard-container,
    .dashboard-mockup {
        width: 100% !important;
        max-width: 100% !important;
    }

    .video-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Header fix */
    .header-modern {
        width: 100% !important;
        max-width: 100vw !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .header-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* Sections fix */
    section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Grids fix */
    .features-grid,
    .pain-grid,
    .comparison-grid,
    .benefits-grid,
    .testimonials-grid {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Cards fix */
    .pain-card-sticky,
    .benefit-card-modern,
    .testimonial-card,
    .feature-card-modern,
    .before-card,
    .after-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Success story fix */
    .success-story-banner,
    .success-story-content {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    .image-carousel,
    .carousel-container {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Showcase fix */
    .visual-showcase,
    .showcase-container {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    /* Form fix */
    .form-cta,
    .lead-form {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Footer fix */
    footer {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    /* Imagens responsivas */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Vídeos responsivos */
    video {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Iframes responsivos */
    iframe {
        max-width: 100% !important;
    }
}

/* Mobile menu styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-menu-item:hover {
    color: var(--primary-300);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
    }

    .nav-desktop {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}


/* ==================== HERO MATERIALS ==================== */
.hero-materials {
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-materials .hero-title {
    margin-bottom: 1.5rem;
}

.hero-materials .hero-description {
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ==================== FILTERS ==================== */
.filters-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--neutral-400);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-500);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

/* ==================== MATERIALS GRID ==================== */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 8rem;
}

.material-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.material-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.material-thumb {
    height: 200px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.material-thumb i {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s var(--ease-smooth);
}

.material-card:hover .material-thumb i {
    transform: scale(1.1);
    color: var(--primary-300);
}

.material-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

.type-ebook {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-300);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.type-presentation {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.type-checklist {
    background: rgba(245, 158, 11, 0.2);
    color: #FBBF24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.material-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.material-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.material-description {
    color: var(--neutral-400);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.material-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn {
    width: 100%;
    margin-top: auto;
    justify-content: center;
}

/* ==================== CTA SECTION ==================== */
.materials-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6rem 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-materials {
        padding: 6rem 1.5rem 3rem;
    }

    .materials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filters-container {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
    }

    .filter-btn {
        white-space: nowrap;
    }
}

/* ==================== ROADMAP SECTION (BOARD STYLE) ==================== */
.roadmap-section {
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

.roadmap-board {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

.roadmap-path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.path-line {
    stroke-dasharray: 10;
    animation: dash 60s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 1000;
    }
}

.roadmap-milestone {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.roadmap-milestone.left {
    justify-content: flex-start;
    padding-left: 2rem;
}

.roadmap-milestone.right {
    justify-content: flex-end;
    padding-right: 2rem;
}

.roadmap-milestone.center {
    justify-content: center;
}

.milestone-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    width: 320px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.milestone-content:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--primary-500);
    box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.4);
    z-index: 10;
}

.milestone-icon {
    width: 48px;
    height: 48px;
    background: var(--neutral-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-500);
    color: var(--primary-300);
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.milestone-date {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-300);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.milestone-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.milestone-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.milestone-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-300);
    font-size: 0.9rem;
}

.milestone-list li i {
    width: 14px;
    height: 14px;
    color: var(--accent-400);
    flex-shrink: 0;
}

.milestone-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

/* Specific Styles for Statuses */
.active-pulse {
    border-color: var(--primary-500);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.active-pulse::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    border: 2px solid var(--primary-500);
    animation: pulse-border 2s infinite;
    opacity: 0;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

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

.future {
    border-style: dashed;
}

.ongoing {
    border-color: var(--accent-500);
}

.ongoing .milestone-icon {
    border-color: var(--accent-500);
    color: var(--accent-300);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* ==================== TEAM SECTION ==================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-10px);
}

.team-photo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neutral-800), var(--neutral-900));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.team-name {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.team-role {
    display: block;
    color: var(--primary-300);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-bio {
    color: var(--neutral-400);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social .social-link {
    color: var(--neutral-500);
    transition: all 0.3s ease;
}

.team-social .social-link:hover {
    color: var(--primary-300);
    transform: scale(1.1);
}

@media (max-width: 768px) {

    .roadmap-milestone.left,
    .roadmap-milestone.right {
        justify-content: center;
        padding: 0;
    }

    .path-line {
        display: none;
    }
}


/* ==================== VIP SECTION ==================== */
.vip-info-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vip-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.vip-info-box h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.vip-info-box p {
    color: var(--neutral-300);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.vip-price-info {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    font-weight: 600;
    color: var(--accent-300);
}

/* ==================== BOARD GAME STYLE (MONOPOLY VIBE) ==================== */
.roadmap-board {
    padding-top: 2rem;
}

/* Base Card Style Updates */
.milestone-content {
    background: #0f172a;
    /* Dark solid mostly */
    border: 2px solid #1e293b;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    padding: 0;
    /* Reset for board style */
}

/* Property Cards */
.property-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 320px;
    background: #0f172a;
}

.property-header {
    padding: 1.5rem 1rem;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.color-q1 {
    background: #EF4444;
}

/* Red */
.color-q2 {
    background: #F59E0B;
}

/* Yellow/Orange */
.color-q3 {
    background: #10B981;
}

/* Green */

.property-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.milestone-icon-small {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: white;
}

.property-price {
    margin-top: auto;
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.6;
    padding-top: 1rem;
}

/* Big Cards (Start/Go squares) */
.big-card {
    padding: 2rem;
    text-align: left;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 2px solid var(--primary-500);
    position: relative;
    min-width: 350px;
}

.milestone-token {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e2e8f0, #94a3b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    border: 4px solid #0f172a;
    transform: rotate(15deg);
}

.milestone-token.spin {
    animation: slow-spin 10s linear infinite;
    background: linear-gradient(135deg, var(--accent-300), var(--accent-500));
    color: #064e3b;
}

@keyframes slow-spin {
    to {
        transform: rotate(375deg);
    }
}

.milestone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.milestone-status {
    font-size: 0.7rem;
    font-weight: 800;
    background: var(--primary-500);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
}

.milestone-body ul.milestone-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.milestone-body .icon-box {
    margin-right: 1rem;
    color: var(--primary-300);
}

.milestone-body strong {
    display: block;
    color: white;
    margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
    .big-card {
        min-width: auto;
        width: 100%;
    }
}


/* ==================== PREMIUM PROFILE CARD ==================== */
:root {
    --pc-pointer-x: 50%;
    --pc-pointer-y: 50%;
    --pc-pointer-from-center: 0;
    --pc-pointer-from-top: 0.5;
    --pc-pointer-from-left: 0.5;
    --pc-card-opacity: 0;
    --pc-rotate-x: 0deg;
    --pc-rotate-y: 0deg;
    --pc-background-x: 50%;
    --pc-background-y: 50%;
    --pc-grain: none;
    --pc-icon: none;
    --pc-behind-gradient: none;
    --pc-behind-glow-color: rgba(125, 190, 255, 0.67);
    --pc-behind-glow-size: 25%;
    --pc-inner-gradient: none;
    --pc-sunpillar-1: hsl(2, 100%, 73%);
    --pc-sunpillar-2: hsl(53, 100%, 69%);
    --pc-sunpillar-3: hsl(93, 100%, 69%);
    --pc-sunpillar-4: hsl(176, 100%, 76%);
    --pc-sunpillar-5: hsl(228, 100%, 74%);
    --pc-sunpillar-6: hsl(283, 100%, 73%);
    --pc-sunpillar-clr-1: var(--pc-sunpillar-1);
    --pc-sunpillar-clr-2: var(--pc-sunpillar-2);
    --pc-sunpillar-clr-3: var(--pc-sunpillar-3);
    --pc-sunpillar-clr-4: var(--pc-sunpillar-4);
    --pc-sunpillar-clr-5: var(--pc-sunpillar-5);
    --pc-sunpillar-clr-6: var(--pc-sunpillar-6);
    --pc-card-radius: 30px;
}

.pc-card-wrapper {
    perspective: 500px;
    transform: translate3d(0, 0, 0.1px);
    position: relative;
    touch-action: none;
    /* Added to center in grid */
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.pc-behind {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--pointer-x) var(--pointer-y),
            var(--behind-glow-color, rgba(125, 190, 255, 0.67)) 0%,
            transparent var(--behind-glow-size, 50%));
    filter: blur(50px) saturate(1.1);
    opacity: calc(0.8 * var(--card-opacity, 0));
    transition: opacity 200ms ease;
}

.pc-card-wrapper:hover,
.pc-card-wrapper.active {
    --card-opacity: 1;
}

.pc-card {
    height: 80svh;
    max-height: 540px;
    display: grid;
    aspect-ratio: 0.718;
    border-radius: var(--pc-card-radius);
    position: relative;
    background-blend-mode: color-dodge, normal, normal, normal;
    animation: glow-bg 12s linear infinite;
    box-shadow: rgba(0, 0, 0, 0.8) calc((var(--pointer-from-left) * 10px) - 3px) calc((var(--pointer-from-top) * 20px) - 6px) 20px -5px;
    transition: transform 1s ease;
    transform: translateZ(0) rotateX(0deg) rotateY(0deg);
    background: rgba(0, 0, 0, 0.9);
    backface-visibility: hidden;
    overflow: hidden;
}

.pc-card:hover,
.pc-card.active {
    transition: none;
    transform: translateZ(0) rotateX(var(--rotate-y)) rotateY(var(--rotate-x));
}

.pc-card-shell.entering .pc-card {
    transition: transform 180ms ease-out;
}

.pc-card-shell {
    position: relative;
    z-index: 1;
}

.pc-card * {
    display: grid;
    grid-area: 1/-1;
    border-radius: var(--pc-card-radius);
    pointer-events: none;
}

.pc-inside {
    inset: 0;
    position: absolute;
    background-image: var(--inner-gradient, linear-gradient(145deg, #60496e8c 0%, #71C4FF44 100%));
    background-color: rgba(0, 0, 0, 0.9);
    transform: none;
}


.pc-shine {
    mask-image: var(--pc-icon, none);
    mask-mode: luminance;
    mask-repeat: repeat;
    mask-size: 150%;
    mask-position: top calc(200% - (var(--pc-background-y) * 5)) left calc(100% - var(--pc-background-x));
    transition: filter 0.8s ease;
    filter: brightness(0.66) contrast(1.33) saturate(0.33) opacity(0.3);
    /* Opacity reduced from 0.5 to 0.3 */
    animation: holo-bg 18s linear infinite;
    animation-play-state: running;
    mix-blend-mode: color-dodge;
}

/* ... existing styles ... */

.pc-card:hover .pc-shine,
.pc-card.active .pc-shine {
    filter: brightness(0.75) contrast(1.2) saturate(0.5);
    /* Reduced brightness from 0.85 */
    animation-play-state: paused;
}

/* ... existing styles ... */

.pc-shine::before {
    background-image:
        linear-gradient(45deg,
            var(--pc-sunpillar-4),
            var(--pc-sunpillar-5),
            var(--pc-sunpillar-6),
            var(--pc-sunpillar-1),
            var(--pc-sunpillar-2),
            var(--pc-sunpillar-3)),
        radial-gradient(circle at var(--pc-pointer-x) var(--pc-pointer-y), hsl(0, 0%, 70%) 0%, hsla(0, 0%, 30%, 0.2) 90%),
        var(--pc-grain, none);
    background-size:
        250% 250%,
        100% 100%,
        220px 220px;
    background-position:
        var(--pc-pointer-x) var(--pc-pointer-y),
        center,
        calc(var(--pc-pointer-x) * 0.01) calc(var(--pc-pointer-y) * 0.01);
    background-blend-mode: color-dodge;
    filter: brightness(calc(1.5 - var(--pc-pointer-from-center))) contrast(calc(var(--pc-pointer-from-center) + 1.5)) saturate(calc(0.5 + var(--pc-pointer-from-center)));
    /* Reduced brightness factor */
    mix-blend-mode: luminosity;
    opacity: 0.6;
    /* Added base opacity constraint */
}

/* ... somewhere else ... */

.pc-glare {
    transform: translate3d(0, 0, 1.1px);
    overflow: hidden;
    background-image: radial-gradient(farthest-corner circle at var(--pc-pointer-x) var(--pc-pointer-y),
            hsl(248, 25%, 80%) 12%,
            hsla(207, 40%, 30%, 0.8) 90%);
    mix-blend-mode: overlay;
    filter: brightness(0.6) contrast(1.0);
    /* Reduced brightness from 0.8 and contrast from 1.2 */
    z-index: 4;
    opacity: 0.6;
    /* Added opacity constraint */
}


.pc-shine,
.pc-shine::after {
    --space: 5%;
    --angle: -45deg;
    transform: translate3d(0, 0, 1px);
    overflow: hidden;
    z-index: 3;
    background: transparent;
    background-size: cover;
    background-position: center;
    background-image:
        repeating-linear-gradient(0deg,
            var(--pc-sunpillar-clr-1) calc(var(--space) * 1),
            var(--pc-sunpillar-clr-2) calc(var(--space) * 2),
            var(--pc-sunpillar-clr-3) calc(var(--space) * 3),
            var(--pc-sunpillar-clr-4) calc(var(--space) * 4),
            var(--pc-sunpillar-clr-5) calc(var(--space) * 5),
            var(--pc-sunpillar-clr-6) calc(var(--space) * 6),
            var(--pc-sunpillar-clr-1) calc(var(--space) * 7)),
        repeating-linear-gradient(var(--angle),
            #0e152e 0%,
            hsl(180, 10%, 60%) 3.8%,
            hsl(180, 29%, 66%) 4.5%,
            hsl(180, 10%, 60%) 5.2%,
            #0e152e 10%,
            #0e152e 12%),
        radial-gradient(farthest-corner circle at var(--pointer-x) var(--pointer-y),
            hsla(0, 0%, 0%, 0.1) 12%,
            hsla(0, 0%, 0%, 0.15) 20%,
            hsla(0, 0%, 0%, 0.25) 120%);
    background-position:
        0 var(--background-y),
        var(--background-x) var(--background-y),
        center;
    background-blend-mode: color, hard-light;
    background-size:
        500% 500%,
        300% 300%,
        200% 200%;
    background-repeat: repeat;
}

.pc-shine::before,
.pc-shine::after {
    content: '';
    background-position: center;
    background-size: cover;
    grid-area: 1/1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.pc-card:hover .pc-shine,
.pc-card.active .pc-shine {
    filter: brightness(0.45) contrast(1.15) saturate(0.35);
    animation-play-state: paused;
}

.pc-card:hover .pc-shine::before,
.pc-card.active .pc-shine::before,
.pc-card:hover .pc-shine::after,
.pc-card.active .pc-shine::after {
    opacity: 1;
}

.pc-shine::before {
    background-image:
        linear-gradient(45deg,
            var(--pc-sunpillar-4),
            var(--pc-sunpillar-5),
            var(--pc-sunpillar-6),
            var(--pc-sunpillar-1),
            var(--pc-sunpillar-2),
            var(--pc-sunpillar-3)),
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), hsl(0, 0%, 70%) 0%, hsla(0, 0%, 30%, 0.2) 90%),
        var(--grain, none);
    background-size:
        250% 250%,
        100% 100%,
        220px 220px;
    background-position:
        var(--pointer-x) var(--pointer-y),
        center,
        calc(var(--pointer-x) * 0.01) calc(var(--pointer-y) * 0.01);
    background-blend-mode: color-dodge;
    filter: brightness(calc(2 - var(--pointer-from-center))) contrast(calc(var(--pointer-from-center) + 2)) saturate(calc(0.5 + var(--pointer-from-center)));
    mix-blend-mode: luminosity;
}

.pc-shine::after {
    background-position:
        0 var(--background-y),
        calc(var(--background-x) * 0.4) calc(var(--background-y) * 0.5),
        center;
    background-size:
        200% 300%,
        700% 700%,
        100% 100%;
    mix-blend-mode: difference;
    filter: brightness(0.8) contrast(1.5);
}

.pc-glare {
    transform: translate3d(0, 0, 1.1px);
    overflow: hidden;
    background-image: radial-gradient(farthest-corner circle at var(--pointer-x) var(--pointer-y),
            hsl(248, 25%, 80%) 12%,
            hsla(207, 40%, 30%, 0.8) 90%);
    mix-blend-mode: overlay;
    filter: brightness(0.65) contrast(1.1);
    z-index: 4;
    opacity: 0.55;
}

.pc-avatar-content {
    mix-blend-mode: normal;
    /* Changed from luminosity to allow color */
    overflow: visible;
    transform: translateZ(2);
    backface-visibility: hidden;
}

.pc-avatar-content .avatar {
    width: 100%;
    height: 100%;
    /* Ensure it fills */
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: var(--pc-card-radius);
    /* Removed complex transforms for simpler cover fit */
    will-change: transform;
}

.pc-avatar-content::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    backdrop-filter: none;
    pointer-events: none;
}

.pc-user-info {
    position: absolute;
    --ui-inset: 20px;
    --ui-radius-bias: 6px;
    bottom: var(--ui-inset);
    left: var(--ui-inset);
    right: var(--ui-inset);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.4);
    /* Darker for legibility */
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(max(0px, var(--pc-card-radius) - var(--ui-inset) + var(--ui-radius-bias)));
    padding: 12px 14px;
    pointer-events: auto;
}

.pc-user-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pc-mini-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.pc-mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pc-user-text {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
}

.pc-handle {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

.pc-status {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.pc-contact-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.pc-contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.pc-details {
    width: 100%;
    position: absolute;
    top: 3em;
    display: flex;
    flex-direction: column;
    z-index: 10;
    text-align: center;
}

.pc-details h3 {
    font-weight: 700;
    margin: 0;
    font-size: min(5svh, 3em);
    background-image: linear-gradient(to bottom, #3b82f6, #60a5fa);
    background-size: 1em 1.5em;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.pc-details p {
    font-weight: 600;
    position: relative;
    white-space: nowrap;
    font-size: 18px;
    margin: 0 auto;
    width: min-content;
    background-image: linear-gradient(to bottom, #60a5fa, #93c5fd);
    background-size: 1em 1.5em;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

@keyframes glow-bg {
    0% {
        --bgrotate: 0deg;
    }

    100% {
        --bgrotate: 360deg;
    }
}

@keyframes holo-bg {
    0% {
        background-position: 0 var(--background-y), 0 0, center;
    }

    100% {
        background-position: 0 var(--background-y), 90% 90%, center;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pc-card {
        height: 70svh;
        max-height: 450px;
    }

    .pc-details {
        top: 2em;
    }

    .pc-details h3 {
        font-size: min(4svh, 2.5em);
    }

    .pc-user-info {
        --ui-inset: 15px;
        padding: 10px 12px;
    }
}


/* ========================================
   QUEM SOMOS PAGE - RESPONSIVE STYLES
   ======================================== */

.team-section-responsive {
    padding: 5rem 0 6rem;
    background: rgba(0, 0, 0, 0.2);
}

.team-section-responsive .section-header {
    margin-bottom: 4rem;
}

.team-grid-responsive {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.team-card-responsive {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.team-card-responsive:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.team-icon-wrapper i {
    width: 40px;
    height: 40px;
    color: var(--accent-400);
}

.team-card-responsive .team-info h3 {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.team-card-responsive .team-info span {
    color: var(--accent-400);
    font-size: 0.85rem;
    font-weight: 500;
}

.team-card-responsive .team-info p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.75rem;
}

/* Footer Responsivo */
.footer-responsive {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    height: 120px;
    width: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-nav a:hover {
    color: var(--accent-400);
}

.footer-nav i {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Tablet */
@media (max-width: 992px) {
    .team-section-responsive {
        padding: 4rem 0 5rem;
    }
    
    .team-section-responsive .section-header {
        margin-bottom: 3rem;
    }
    
    .team-grid-responsive {
        gap: 3rem;
    }
    
    .team-cards-container {
        gap: 1.5rem;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        height: 100px;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .team-section-responsive {
        padding: 3rem 0 4rem;
    }
    
    .team-section-responsive .section-header {
        margin-bottom: 2.5rem;
    }
    
    .team-grid-responsive {
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .team-cards-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 400px;
    }
    
    .team-card-responsive {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .team-icon-wrapper {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
    
    .team-icon-wrapper i {
        width: 32px;
        height: 32px;
    }
    
    .team-card-responsive .team-info h3 {
        font-size: 1.05rem;
    }
    
    .footer-responsive {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        padding: 0 1.5rem;
    }
    
    .footer-logo {
        height: 80px;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        max-width: 280px;
    }
    
    .footer-nav {
        gap: 1.25rem;
    }
    
    .footer-nav a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .team-section-responsive {
        padding: 2.5rem 0 3rem;
    }
    
    .team-grid-responsive {
        gap: 2rem;
    }
    
    .team-card-responsive {
        padding: 1.25rem;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .footer-nav {
        gap: 1rem;
    }
}


/* Titulo Quem Somos - Mais Chamativo */
.team-section-responsive .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.team-section-responsive .section-description {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .team-section-responsive .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .team-section-responsive .section-title {
        font-size: 2.5rem;
    }
    
    .team-section-responsive .section-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .team-section-responsive .section-title {
        font-size: 2.2rem;
    }
    
    .team-section-responsive .section-description {
        font-size: 1rem;
    }
}
