/* ===================================
   ZYON CAPITAL — Página de Captura
   Design System: Dark + Verde (#00C853)
   Font: Inter (Google Fonts)
   Mobile-first
   =================================== */

/* --- VARIABLES --- */
:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-surface: #1a1a1a;
    --color-border: #2a2a2a;
    --color-green: #00C853;
    --color-green-light: #69F0AE;
    --color-green-dark: #00A844;
    --color-telegram: #2AABEE;
    --color-telegram-light: #55C4F0;
    --color-telegram-dark: #1A8FCC;
    --color-white: #FFFFFF;
    --color-gray: #9a9a9a;
    --color-gray-light: #c4c4c4;
    --color-red: #FF3D3D;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1080px;
    --glow-green: 0 0 30px rgba(0, 200, 83, 0.3);
    --glow-telegram: 0 0 30px rgba(42, 171, 238, 0.3);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-white);
    line-height: 1.6;
    font-size: 16px;
    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;
}

/* --- CONTAINER --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- SECTION BASE --- */
section {
    padding: 60px 0;
}

/* --- BADGE --- */
.badge {
    display: inline-block;
    background: rgba(0, 200, 83, 0.12);
    color: var(--color-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 200, 83, 0.25);
    margin-bottom: 20px;
}

/* --- SECTION TITLE --- */
.section-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-gray-light);
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 40px 0 60px;
    background: var(--color-bg);
    background-image: radial-gradient(ellipse at top center, rgba(0, 200, 83, 0.04) 0%, transparent 60%);
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-logo {
    height: 36px;
    width: auto;
    margin: 0 auto 32px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 600px;
}

.hero h1 .highlight {
    color: var(--color-green);
}

.hero-sub {
    font-size: 16px;
    color: var(--color-gray-light);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 540px;
}

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

/* --- HERO IMAGE --- */
.hero-image-wrapper {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--color-border);
    background: var(--color-surface);
    aspect-ratio: 3 / 4;
}

.hero-image-wrapper.hero-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-size: 14px;
}

.hero-image-wrapper.hero-image-fallback::after {
    content: 'Foto do Bryan';
}

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

/* --- SCROLL CTA (ghost button no hero) --- */
.scroll-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-gray-light);
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 28px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.scroll-cta:hover {
    color: var(--color-green);
    border-color: rgba(0, 200, 83, 0.4);
    background: rgba(0, 200, 83, 0.05);
}

.scroll-cta svg {
    transition: transform 0.3s ease;
}

.scroll-cta:hover svg {
    transform: translateY(3px);
}

/* --- CTA BUTTON --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-telegram);
    color: #fff;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--glow-telegram);
    width: 100%;
    max-width: 420px;
    min-height: 54px;
}

.cta-button:hover {
    background: var(--color-telegram-light);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(42, 171, 238, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

.cta-button-large {
    font-size: 17px;
    padding: 18px 36px;
    min-height: 58px;
    max-width: 460px;
}

.cta-note {
    font-size: 13px;
    color: var(--color-gray);
    margin-top: 12px;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* --- TODAY COUNTER --- */
.today-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 50px;
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(0, 200, 83, 0); }
}

/* ===================================
   BARRA DE NÚMEROS
   =================================== */
.stats-bar {
    padding: 32px 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

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

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-green);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray);
}

/* ===================================
   QUEM É O BRYAN
   =================================== */
.about {
    background: var(--color-bg);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.about-photo {
    width: 220px;
    height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    box-shadow: 0 0 40px rgba(0, 200, 83, 0.08);
    flex-shrink: 0;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-size: 13px;
}

.about-text p {
    font-size: 16px;
    color: var(--color-gray-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--color-white);
}

.about .cta-container {
    margin-top: 32px;
}

.about-transition {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-gray-light);
    text-align: center;
    max-width: 600px;
    margin: 40px auto 0;
}

.about-transition strong {
    color: var(--color-green);
}

/* ===================================
   A REALIDADE (O PROBLEMA)
   =================================== */
.problem {
    background: var(--color-bg-alt);
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.problem-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-red);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.problem-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(255, 61, 61, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-red);
}

.problem-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.problem-card p {
    font-size: 14px;
    color: var(--color-gray-light);
    line-height: 1.5;
}

.problem-transition {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-light);
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.problem-transition strong {
    color: var(--color-green);
}

/* ===================================
   MÉTODO ESPELHO
   =================================== */
.method {
    background: var(--color-bg);
}

.method .section-title .highlight {
    color: var(--color-green);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: rgba(0, 200, 83, 0.15);
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(0, 200, 83, 0.1);
    border: 2px solid rgba(0, 200, 83, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-green);
}

.step-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    color: var(--color-gray-light);
    line-height: 1.6;
}

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

/* ===================================
   SEÇÃO COMPARATIVA
   =================================== */
.comparison {
    background: var(--color-bg-alt);
}

.comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.comparison-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    text-align: center;
}

.comparison-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    line-height: 1.4;
}

.comparison-option + .comparison-option {
    margin-top: 6px;
}

.comparison-bad {
    color: var(--color-gray);
}

.comparison-good {
    color: var(--color-green);
    font-weight: 600;
    background: rgba(0, 200, 83, 0.06);
    border: 1px solid rgba(0, 200, 83, 0.15);
}

.comparison-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-gray);
    white-space: nowrap;
    min-width: 90px;
    text-align: center;
    flex-shrink: 0;
}

.comparison-tag-green {
    background: rgba(0, 200, 83, 0.12);
    color: var(--color-green);
}

/* ===================================
   PROVA SOCIAL
   =================================== */
.social-proof {
    background: var(--color-bg);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.screenshot-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.screenshot-card img {
    width: 100%;
    height: auto;
}

.screenshot-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-size: 13px;
    padding: 20px;
    text-align: center;
}

.social-proof .cta-container {
    margin-top: 40px;
    text-align: center;
}

/* ===================================
   ANTI-OBJEÇÕES (nova)
   =================================== */
.objections {
    background: var(--color-bg-alt);
}

.objections-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 640px;
    margin: 32px auto 0;
}

.objection-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.objection-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(0, 200, 83, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.objection-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--color-green);
}

.objection-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.objection-answer {
    font-size: 14px;
    color: var(--color-gray-light);
    line-height: 1.5;
}

/* ===================================
   CTA FINAL
   =================================== */
.cta-final {
    background: var(--color-bg);
    border-top: 2px solid var(--color-green);
    text-align: center;
}

.cta-final-text {
    font-size: 17px;
    color: var(--color-gray-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 12px;
}

.cta-final-text strong {
    color: var(--color-white);
}

.cta-final-highlight {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 32px;
}

.cta-final .cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
}

/* --- DISCLAIMER --- */
.disclaimer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    font-size: 11px;
    color: var(--color-gray);
    line-height: 1.6;
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* --- FOOTER --- */
.footer {
    padding: 24px 0;
    background: var(--color-bg);
    text-align: center;
    font-size: 13px;
    color: var(--color-gray);
    border-top: 1px solid var(--color-border);
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===================================
   RESPONSIVE — TABLET
   =================================== */
@media (min-width: 480px) {
    .stats-grid {
        flex-direction: row;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
    }

    .stat-item + .stat-item {
        border-left: 1px solid var(--color-border);
    }

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

    .objections-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 32px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-sub {
        font-size: 18px;
    }

    .hero-image-wrapper {
        max-width: 280px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .problem-cards {
        flex-direction: row;
    }

    .problem-card {
        flex: 1;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .steps {
        flex-direction: row;
        gap: 32px;
    }

    .steps::before {
        display: none;
    }

    .step {
        flex: 1;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .about-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
    }

    .about-text {
        flex: 1;
    }

    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .comparison-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .comparison-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    .cta-final-highlight {
        font-size: 26px;
    }
}

/* ===================================
   RESPONSIVE — DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-sub {
        font-size: 18px;
    }

    .cta-button {
        width: auto;
    }

    .cta-button-large {
        width: auto;
    }

    .section-title {
        font-size: 36px;
    }

    .stat-number {
        font-size: 36px;
    }

    .comparison-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .comparison-card:nth-child(4) {
        grid-column: auto;
    }

    .comparison-card:last-child {
        grid-column: auto;
        max-width: none;
    }
}

/* ===================================
   REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .cta-button {
        transition: none;
    }
}
