/* =========================================
   ZÉ DA TOUCA — Premium Dark Mode Design
   ========================================= */

/* ====== DESIGN TOKENS ====== */
:root {
    /* Colors */
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-tertiary: #1a2236;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-card-hover: rgba(26, 34, 54, 0.9);

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --accent-green: #10b981;
    --accent-green-light: #34d399;
    --accent-green-dark: #059669;
    --accent-green-glow: rgba(16, 185, 129, 0.3);

    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;
    --accent-gold-glow: rgba(245, 158, 11, 0.3);

    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --accent-blue-glow: rgba(59, 130, 246, 0.3);

    --accent-red: #ef4444;
    --accent-red-light: #f87171;

    --whatsapp-green: #25D366;

    --gradient-primary: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 50%, var(--accent-gold) 100%);
    --gradient-hero: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    --gradient-card: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);

    --border-subtle: rgba(148, 163, 184, 0.1);
    --border-hover: rgba(16, 185, 129, 0.3);

    /* Glass */
    --glass-bg: rgba(17, 24, 39, 0.6);
    --glass-border: rgba(148, 163, 184, 0.12);
    --glass-blur: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow-green: 0 0 30px rgba(16, 185, 129, 0.2);
    --shadow-glow-gold: 0 0 30px rgba(245, 158, 11, 0.2);

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

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* ====== UTILITY CLASSES ====== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-green);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ====== ANIMATIONS ====== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease infinite;
}

.btn--primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: var(--shadow-glow-green);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

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

.btn--ghost:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-2px);
}

.btn--whatsapp {
    background: var(--whatsapp-green);
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn--xl {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

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

.header.scrolled {
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.5rem;
}

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

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.cta-nav {
    background: var(--gradient-primary);
    color: #000 !important;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow-green);
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
    border-radius: 2px;
}

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

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

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

/* ====== HERO ====== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
    background: var(--gradient-hero);
}

.hero__bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-green-glow) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
    bottom: -50px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-green-light);
    margin-bottom: 24px;
}

.badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

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

.hero__ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-item svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* Hero Visual */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__card-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 380px;
}

.hero__stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    animation: slide-up 0.8s ease-out forwards;
    opacity: 0;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero__stat-card:hover {
    transform: translateX(8px);
}

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

.hero__stat-card--1:hover {
    box-shadow: var(--shadow-glow-green);
    border-color: rgba(16, 185, 129, 0.3);
}

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

.hero__stat-card--2:hover {
    box-shadow: var(--shadow-glow-gold);
    border-color: rgba(245, 158, 11, 0.3);
}

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

.hero__stat-card--3:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-card__icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card__icon--green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green-light);
}

.stat-card__icon--gold {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold-light);
}

.stat-card__icon--blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue-light);
}

.stat-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-card__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card__value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.stat-card__value--green { color: var(--accent-green-light); }
.stat-card__value--gold { color: var(--accent-gold-light); }
.stat-card__value--blue { color: var(--accent-blue-light); }

/* Hero Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounce-subtle 2s ease-in-out infinite;
}

/* ====== PROOF BAR ====== */
.proof-bar {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.proof-bar__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

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

.proof-bar__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.proof-bar__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-bar__divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* ====== SOBRE ====== */
.sobre {
    padding: var(--section-padding);
}

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

.sobre__image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    max-width: 400px;
}

.sobre__image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 14, 23, 0.7) 100%);
    z-index: 1;
}

.sobre__image-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.sobre__image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 12px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.image-badge__years {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-green-light);
    line-height: 1;
}

.image-badge__text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sobre__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.sobre__text strong {
    color: var(--text-primary);
}

.sobre__highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.highlight-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateX(6px);
}

.highlight-card__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-card__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.highlight-card__text strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.highlight-card__text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sobre__disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sobre__disclaimer svg {
    color: var(--accent-blue-light);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ====== COMO FUNCIONA ====== */
.como-funciona {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -10px;
    position: relative;
    z-index: 0;
}

.step__content {
    position: relative;
    z-index: 1;
}

.step__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-green-light);
    transition: all var(--transition-base);
}

.step:hover .step__icon {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-glow-green);
    transform: scale(1.1);
}

.step__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step__connector {
    display: none;
}

/* ====== FEATURES ====== */
.features {
    padding: var(--section-padding);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ====== RESULTADOS ====== */
.resultados {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.resultado-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-base);
}

.resultado-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.resultado-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.resultado-card__month {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
}

.resultado-card__badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.resultado-card__badge--green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green-light);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.resultado-card__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.resultado-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.resultado-stat__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resultado-stat__value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

.resultado-stat__value--green { color: var(--accent-green-light); }
.resultado-stat__value--red { color: var(--accent-red-light); }

.resultado-card__bar {
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.resultado-bar__fill {
    height: 100%;
    width: var(--fill);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 1.5s ease-out;
}

.resultado-card__accuracy {
    font-size: 0.8rem;
    color: var(--accent-green);
    font-weight: 600;
}

.resultados__note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 40px;
    padding: 16px 20px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.resultados__note svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ====== DEPOIMENTOS ====== */
.depoimentos {
    padding: var(--section-padding);
}

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

.depoimento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.depoimento-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.depoimento-card__stars {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.depoimento-card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 24px;
    font-style: italic;
}

.depoimento-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.depoimento-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.depoimento-card__name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* ====== PRICING ====== */
.pricing {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.pricing__urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    padding: 16px 32px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency__icon {
    font-size: 1.5rem;
    animation: bounce-subtle 1.5s ease-in-out infinite;
}

.urgency__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.urgency__text > span {
    font-weight: 600;
    color: var(--accent-red-light);
    font-size: 0.9rem;
}

.urgency__timer {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.timer-block__value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    min-width: 50px;
    text-align: center;
}

.timer-block__label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.timer-sep {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing__card {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}

.pricing__card-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: calc(var(--radius-xl) + 2px);
    opacity: 0.5;
    filter: blur(20px);
    z-index: 0;
}

.pricing__card-inner {
    position: relative;
    z-index: 1;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
}

.pricing__popular {
    display: inline-flex;
    background: var(--gradient-primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.pricing__plan-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing__plan-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pricing__price-block {
    margin-bottom: 32px;
}

.pricing__old-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 8px;
    display: block;
}

.pricing__current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    line-height: 1;
    margin-bottom: 10px;
}

.pricing__currency {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-green-light);
    margin-top: 8px;
}

.pricing__amount {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing__cents {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green-light);
    margin-top: 8px;
}

.pricing__period {
    font-size: 1rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 12px;
    margin-left: 4px;
}

.pricing__savings {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing__features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
}

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

.pricing__features li svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.pricing__features li strong {
    color: var(--text-primary);
}

.pricing__guarantee {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.6;
}

.pricing__guarantee svg {
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing__payment-methods {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pricing__payment-methods > span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.payment-icons {
    display: flex;
    gap: 16px;
}

.payment-icon {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

/* ====== FAQ ====== */
.faq {
    padding: var(--section-padding);
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.faq-item.active {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-glow-green);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-item__chevron {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--text-muted);
}

.faq-item.active .faq-item__chevron {
    transform: rotate(180deg);
    color: var(--accent-green);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-item__answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ====== FINAL CTA ====== */
.final-cta {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.final-cta__bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.final-cta__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.final-cta__orb--1 {
    width: 400px;
    height: 400px;
    background: var(--accent-green-glow);
    top: -100px;
    left: 30%;
}

.final-cta__orb--2 {
    width: 300px;
    height: 300px;
    background: var(--accent-gold-glow);
    bottom: -100px;
    right: 20%;
}

.final-cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.final-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ====== FOOTER ====== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__brand-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 300px;
    line-height: 1.7;
}

.footer__links h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer__links a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--accent-green);
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer__disclaimer {
    font-size: 0.75rem !important;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.7;
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: bounce-subtle 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float__tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

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

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__card-stack {
        max-width: 350px;
        margin: 0 auto;
    }

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

    .sobre__image-frame {
        margin: 0 auto;
        max-width: 320px;
    }

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

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

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

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

    .header__nav {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(10, 14, 23, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1000;
    }

    .header__nav.active {
        display: flex;
    }

    .header__nav .nav-link {
        font-size: 1.3rem;
    }

    .header__nav .cta-nav {
        font-size: 1.1rem;
        padding: 14px 32px;
    }

    .header__hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__trust {
        flex-direction: column;
        align-items: center;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .proof-bar__inner {
        flex-direction: column;
        gap: 24px;
    }

    .proof-bar__divider {
        width: 60px;
        height: 1px;
    }

    .features__grid,
    .resultados__grid,
    .depoimentos__grid {
        grid-template-columns: 1fr;
    }

    .pricing__card-inner {
        padding: 36px 24px;
    }

    .pricing__amount {
        font-size: 4rem;
    }

    .pricing__urgency {
        flex-direction: column;
        padding: 20px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .final-cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float__tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

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

    .hero__stat-card {
        padding: 16px 18px;
    }

    .stat-card__value {
        font-size: 1.2rem;
    }

    .highlight-card {
        padding: 14px 16px;
    }

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

/* ====== PRINT ====== */
@media print {
    .header,
    .whatsapp-float,
    .hero__bg-effects,
    .final-cta__bg-effects {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }
}
