/**
 * Godaa - Main Stylesheet
 * Modern, App-like Design with Dark/Light Theme Support
 */

/* ========================================
   CSS VARIABLES - DYNAMIC THEMING
   ======================================== */
:root {
    /* Brand Colors - Controlled via Dashboard */
    --color-primary: #7F39F8;
    --color-secondary: #44A5FF;
    --color-accent: #00D4AA;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-hero: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', var(--font-primary);

    /* Font Sizes - Balanced */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

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

    /* 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);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px -10px var(--color-primary);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ========================================
   LIGHT THEME (Default)
   ======================================== */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --text-inverse: #ffffff;

    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ========================================
   DARK THEME
   ======================================== */
[data-theme="dark"] {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a24;
    --bg-card: #16161f;
    --bg-glass: rgba(22, 22, 31, 0.8);

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;
    --text-inverse: #0f172a;

    --border-color: #2a2a3a;
    --border-light: #1f1f2e;

    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color var(--transition-slow), color var(--transition-slow);
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: white;
}

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

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

/* Lists */
ul, ol {
    list-style: none;
}

/* Buttons */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    text-wrap: balance;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

@media (min-width: 768px) {
    h1 { font-size: var(--text-5xl); }
    h2 { font-size: var(--text-4xl); }
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    text-wrap: pretty;
}

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

.text-muted {
    color: var(--text-tertiary);
}

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

.section {
    padding: var(--space-16) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-24) 0;
    }
}

/* ========================================
   GLASSMORPHISM COMPONENTS
   ======================================== */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-4) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--space-3) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.logo svg,
.logo img {
    height: 32px;
    width: auto;
}

.nav {
    display: none;
    align-items: center;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-2) 0;
    transition: color var(--transition-fast);
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--bg-card);
    color: var(--color-primary);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-primary);
    padding: var(--space-8);
    z-index: var(--z-modal);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: calc(var(--z-modal) - 1);
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.mobile-nav-link {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px -3px var(--color-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px var(--color-primary);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--color-primary);
}

.btn-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-glass:hover {
    background: var(--bg-card);
    border-color: var(--color-primary);
}

/* Hero: "Ver resultados" outline com borda gradiente em desktop */
@media (min-width: 1024px) {
    .hero-buttons .btn-glass {
        position: relative;
        border: none;
        background: transparent;
    }

    .hero-buttons .btn-glass::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius-lg);
        padding: 1.5px;
        background: var(--gradient-primary);
        -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;
        transition: opacity var(--transition-fast);
    }

    .hero-buttons .btn-glass:hover {
        background: rgba(127, 57, 248, 0.08);
    }
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: var(--space-16);
}

@media (min-width: 768px) {
    .hero {
        padding-bottom: 0;
    }
}

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

.hero-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-gradient-1 {
    background: var(--color-primary);
    top: -200px;
    right: -200px;
}

.hero-gradient-2 {
    background: var(--color-secondary);
    bottom: -200px;
    left: -200px;
    animation-delay: -10s;
}

.hero-gradient-3 {
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 50px) scale(1.05); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--text-5xl);
    }
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    max-width: 500px;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin-left: 0;
        margin-right: auto;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-mockup {
    position: relative;
}

.hero-mockup-wrapper {
    position: relative;
}

.hero-mockup-inner {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-4);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Desktop mockup */
.hero-mockup-desktop {
    opacity: 0;
    transform: scale(0.95);
}

.hero-mockup-desktop.active {
    opacity: 1;
    transform: scale(1);
}

/* Mobile mockup - tamanho controlado por JS */
.hero-mockup-mobile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.hero-mockup-mobile.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hero-mockup-mobile svg {
    display: block;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
}

/* Indicator dots */
.hero-mockup-indicator {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.indicator-dot.active {
    background: var(--gradient-primary);
    width: 24px;
    border-radius: var(--radius-full);
}

.indicator-dot:hover {
    background: var(--color-primary);
}

/* ========================================
   FEATURES / CARDS GRID
   ======================================== */
/* Features - Desktop: Grid */
.features-wrapper {
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.feature-card {
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

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

/* Features - Mobile: Carousel (igual testimonials) */
@media (max-width: 767px) {
    .features-wrapper {
        margin: 0 calc(var(--space-6) * -1);
        padding: 0 var(--space-6);
    }

    .features-grid {
        display: flex;
        gap: var(--space-5);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: var(--space-4) 0;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .feature-card,
    .feature-card.animate-in {
        flex: 0 0 300px;
        scroll-snap-align: start;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .feature-card::before {
        display: none;
    }
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    color: white;
}

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

.feature-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.feature-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
    text-wrap: pretty;
}

/* Practice List - Como isso se traduz na prática */
.practice-list {
    margin-top: var(--space-12);
    padding-top: var(--space-10);
    border-top: 1px solid var(--border-color);
}

.practice-title {
    text-align: center;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-8);
}

.practice-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

.practice-item {
    text-align: center;
    text-wrap: pretty;
}

.practice-item strong {
    display: block;
    font-size: var(--text-base);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.practice-item span {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .practice-items {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .practice-item {
        text-align: left;
        padding-left: var(--space-4);
        border-left: 2px solid var(--color-primary);
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-12);
}

.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ========================================
   CLIENTS / PORTFOLIO SECTION
   ======================================== */
.clients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

@media (min-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
}

.client-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: var(--space-4);
}

.client-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.client-card:hover::after {
    opacity: 0.05;
}

.client-logo {
    width: 30px;
    height: 30px;
    padding: 20px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #3e3e51;
    box-sizing: content-box;
}

[data-theme="dark"] .client-logo {
    background: #3e3e51;
    color: white;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.client-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.client-category {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-bottom: var(--space-2);
}

.client-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.client-btn.completed {
    background: rgba(0, 212, 170, 0.12);
    color: var(--color-accent);
}

.client-btn.completed:hover {
    background: rgba(0, 212, 170, 0.22);
}

.client-btn.disabled {
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
    pointer-events: none;
}

/* ========================================
   CASE HIGHLIGHT
   ======================================== */
.case-highlight {
    margin-top: var(--space-10);
    padding: var(--space-8);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .case-highlight {
        grid-template-columns: auto 1fr;
        text-align: left;
        align-items: start;
    }

    .case-highlight-icon {
        grid-row: 1 / 3;
    }
}

.case-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.case-highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    justify-self: center;
}

@media (min-width: 768px) {
    .case-highlight-icon {
        justify-self: start;
    }
}

.case-highlight-icon svg {
    width: 24px;
    height: 24px;
}

.case-highlight-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .case-highlight-content {
        align-items: flex-start;
    }
}

.case-highlight-text {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    text-wrap: pretty;
}

.case-highlight-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.case-highlight-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--gradient-primary);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-lg);
    white-space: nowrap;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px -3px var(--color-primary);
}

.case-highlight-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px var(--color-primary);
}

/* Animation for case highlight */
.case-highlight {
    opacity: 0;
    transform: translateY(40px);
}

.case-highlight.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.5s;
}

.no-js .case-highlight {
    opacity: 1;
    transform: none;
}

/* ========================================
   PROCESS / STEPS - Timeline Style
   ======================================== */
.process-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: var(--space-4);
}

/* Mobile: Timeline vertical */
.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    position: relative;
    text-align: left;
}

/* Linha conectando os números - animada com scroll */
.process-step {
    --line-scale: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    background: var(--gradient-primary);
    transform-origin: top center;
}

/* Mobile: linha vertical */
.process-step::before {
    left: 29px;
    top: 60px;
    bottom: auto;
    width: 2px;
    height: calc(100% - 30px);
    transform: scaleY(var(--line-scale));
}

.process-step:last-child::before {
    content: none !important;
    display: none !important;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    font-size: var(--text-2xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

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

.process-content {
    padding-top: var(--space-2);
}

.process-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-1);
}

.process-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
    text-wrap: pretty;
}

.process-note {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-top: var(--space-12);
    font-style: italic;
}

/* Data-driven section */
.data-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

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

.data-note {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-top: var(--space-10);
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop: Horizontal com linha conectando */
@media (min-width: 768px) {
    .process-grid {
        flex-direction: row;
        justify-content: space-between;
        max-width: 100%;
        gap: 0;
    }

    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        padding: 0 var(--space-4);
    }

    /* Desktop: linha horizontal */
    .process-step::before {
        left: 50%;
        right: auto;
        top: 30px;
        bottom: auto;
        width: 100%;
        height: 2px;
        transform-origin: left center;
        transform: scaleX(var(--line-scale));
    }

    .process-step:last-child::before {
        display: none;
    }

    .process-number {
        margin-bottom: var(--space-4);
    }

    .process-content {
        padding-top: 0;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

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

@media (min-width: 768px) {
    .cta-text {
        text-align: left;
    }
}

.cta-title {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: var(--text-3xl);
    }
}

.cta-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.cta-card {
    display: flex;
    justify-content: center;
}

.btn-whatsapp {
    background: var(--color-primary);
    color: white;
    padding: var(--space-4) var(--space-6);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

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

.btn-whatsapp:hover::after {
    animation: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: var(--space-16) 0 var(--space-8);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: var(--space-4);
}

.footer-logo img {
    height: 32px;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

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

.footer-column h5 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

.footer-cnpj {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-top: var(--space-2);
    opacity: 0.7;
}

/* ========================================
   ANIMATIONS & UTILITIES
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 500ms; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
.hover-lift {
    transition: transform var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.hover-scale {
    transition: transform var(--transition-fast);
}

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

/* ========================================
   LOADING SCREEN
   ======================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0; margin-left: 0; }
    50% { width: 100%; margin-left: 0; }
    100% { width: 0; margin-left: 100%; }
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
@media (max-width: 767px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
    .hide-desktop { display: none !important; }
}

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing utilities */
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: var(--space-4); }
.gap-8 { gap: var(--space-8); }

/* ========================================
   TESTIMONIALS - Carousel Style
   ======================================== */
.testimonials-wrapper {
    position: relative;
    margin: 0 calc(var(--space-6) * -1);
    padding: 0 var(--space-6);
}

.testimonials-grid {
    display: flex;
    gap: var(--space-5);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-4) 0;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

@media (max-width: 767px) {
    .testimonial-card {
        flex: 0 0 300px;
    }
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Ícone de citação */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: var(--space-4);
    right: var(--space-5);
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237F39F8'%3E%3Cpath d='M4.583 17.321C3.553 16.227 3 15 3 13.011c0-3.5 2.457-6.637 6.03-8.188l.893 1.378c-3.335 1.804-3.987 4.145-4.247 5.621.537-.278 1.24-.375 1.929-.311 1.804.167 3.226 1.648 3.226 3.489a3.5 3.5 0 01-3.5 3.5c-1.073 0-2.099-.49-2.748-1.179zm10 0C13.553 16.227 13 15 13 13.011c0-3.5 2.457-6.637 6.03-8.188l.893 1.378c-3.335 1.804-3.987 4.145-4.247 5.621.537-.278 1.24-.375 1.929-.311 1.804.167 3.226 1.648 3.226 3.489a3.5 3.5 0 01-3.5 3.5c-1.073 0-2.099-.49-2.748-1.179z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.15;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: var(--text-xl);
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--bg-card);
    box-shadow: var(--shadow-md);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.testimonial-role {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    display: block;
    margin-top: 2px;
}

.testimonial-role a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed var(--text-tertiary);
    transition: all var(--transition-fast);
}

.testimonial-role a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.testimonial-content {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-5);
    text-wrap: pretty;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: var(--text-sm);
}

.testimonial-social a {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.testimonial-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.testimonial-social svg {
    width: 16px;
    height: 16px;
}

/* Video Testimonial Feature */
.video-testimonial-feature {
    max-width: 800px;
    margin: 0 auto var(--space-12);
}

.video-testimonial-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
}

.video-testimonial-container video {
    width: 100%;
    display: block;
    border-radius: var(--radius-2xl);
}

.video-testimonial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.video-testimonial-overlay:hover {
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 100%);
}

.video-testimonial-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(127, 57, 248, 0.4);
    transition: all var(--transition-base);
}

.video-testimonial-overlay:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(127, 57, 248, 0.5);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.video-testimonial-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-8) var(--space-6) var(--space-6);
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    color: white;
    pointer-events: none;
}

.video-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin: 0 0 var(--space-2);
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    opacity: 0.9;
}

.video-author {
    font-weight: 500;
}

.video-separator {
    opacity: 0.6;
}

.video-context {
    opacity: 0.8;
}

.video-testimonial-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--gradient-primary);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .video-testimonial-feature {
        margin-bottom: var(--space-8);
    }

    .video-play-btn {
        width: 64px;
        height: 64px;
    }

    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }

    .video-testimonial-info {
        padding: var(--space-6) var(--space-4) var(--space-4);
    }

    .video-title {
        font-size: var(--text-lg);
    }

    .video-meta {
        font-size: var(--text-xs);
    }
}

/* ========================================
   FOUNDER / ABOUT ME SECTION
   ======================================== */
.founder-section {
    background: var(--bg-primary);
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .founder-card {
        flex-direction: row;
        text-align: left;
        gap: var(--space-10);
    }
}

.founder-photo {
    flex-shrink: 0;
}

.founder-photo img {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-2xl);
    object-fit: cover;
    border: 4px solid var(--bg-card);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--border-color);
}

@media (min-width: 768px) {
    .founder-photo img {
        width: 200px;
        height: 200px;
    }
}

.founder-content {
    flex: 1;
}

.founder-name {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-1);
    color: var(--text-primary);
}

.founder-role {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-5);
}

.founder-bio {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    text-wrap: pretty;
}

.founder-bio p {
    margin-bottom: var(--space-4);
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

.founder-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
}

@media (min-width: 768px) {
    .founder-highlights {
        justify-content: flex-start;
    }
}

.founder-highlight {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-secondary);
}

.founder-highlight svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}

/* ========================================
   FIT CHECK - Qualification Block
   ======================================== */
.fit-check {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-top: var(--space-12);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.fit-check-heading {
    grid-column: 1 / -1;
    text-align: center;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .fit-check {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }
}

.fit-check-card {
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.fit-check-yes {
    background: rgba(0, 212, 170, 0.05);
    border-color: rgba(0, 212, 170, 0.2);
}

.fit-check-no {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
}

.fit-check-title {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.fit-check-yes .fit-check-title {
    color: var(--color-accent);
}

.fit-check-no .fit-check-title {
    color: var(--text-tertiary);
}

.fit-check-title svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.fit-check-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.fit-check-list li {
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--text-secondary);
    text-wrap: pretty;
}

.fit-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.fit-check-yes .fit-check-list li::before {
    background: var(--color-accent);
}

.fit-check-no .fit-check-list li::before {
    background: var(--text-tertiary);
    opacity: 0.5;
}

/* Animation for fit check */
.fit-check {
    opacity: 0;
    transform: translateY(40px);
}

.fit-check.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.no-js .fit-check {
    opacity: 1;
    transform: none;
}

.fit-check-note {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-top: var(--space-10);
    font-style: italic;
}

.founder-cta {
    margin-top: var(--space-12);
    text-align: center;
    padding-top: var(--space-10);
    border-top: 1px solid var(--border-color);
}

.founder-cta-lead {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.founder-cta-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.founder-cta-note {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-top: var(--space-4);
}

@media (min-width: 768px) {
    .founder-cta-text {
        font-size: var(--text-3xl);
    }
}

/* ========================================
   SCROLL ANIMATIONS (CSS-based)
   ======================================== */
.section-header,
.client-card,
.process-step,
.founder-card,
.cta {
    opacity: 0;
    transform: translateY(40px);
}

.section-header.animate-in,
.client-card.animate-in,
.process-step.animate-in,
.founder-card.animate-in,
.cta.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Wrappers de carrossel: animar o container, não os cards */
.testimonials-wrapper,
.features-wrapper {
    opacity: 0;
    transform: translateY(40px);
}

.testimonials-wrapper.animate-in,
.features-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop only: feature-cards com animação individual */
@media (min-width: 768px) {
    .feature-card {
        opacity: 0;
        transform: translateY(40px);
    }

    .feature-card.animate-in {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature-card.animate-in:nth-child(1) { transition-delay: 0s; }
    .feature-card.animate-in:nth-child(2) { transition-delay: 0.15s; }
    .feature-card.animate-in:nth-child(3) { transition-delay: 0.3s; }
}

.client-card.animate-in:nth-child(1) { transition-delay: 0s; }
.client-card.animate-in:nth-child(2) { transition-delay: 0.08s; }
.client-card.animate-in:nth-child(3) { transition-delay: 0.16s; }
.client-card.animate-in:nth-child(4) { transition-delay: 0.24s; }
.client-card.animate-in:nth-child(5) { transition-delay: 0.32s; }
.client-card.animate-in:nth-child(6) { transition-delay: 0.4s; }

/* Process steps: animação controlada por GSAP ScrollTrigger */
.process-step {
    will-change: transform, opacity;
}

/* Fallback: show elements if JS disabled (no-js class on html) */
.no-js .section-header,
.no-js .feature-card,
.no-js .client-card,
.no-js .process-step,
.no-js .founder-card,
.no-js .testimonials-wrapper,
.no-js .features-wrapper,
.no-js .cta {
    opacity: 1;
    transform: none;
}
