/* ===========================================
   LANDING PAGE — Viralize seu Negócio
   Design System igual ao link da bio
   =========================================== */

:root {
    --preto: #050505;
    --azul: #0033FF;
    --branco: #FFFFFF;
    --laranja: #FF5722;
    --cinza-escuro: #1F1F1F;
    --cinza-medio: #333333;
    --cinza-claro: #888888;
    --whatsapp: #25D366;
    --bg-card: #0D0D0D;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 50%;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

/* ===========================================
   RESET & BASE
   =========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--preto);
    color: var(--branco);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ===========================================
   LAYOUT
   =========================================== */

.lp-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===========================================
   HERO
   =========================================== */

.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl) var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 51, 255, 0.08) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.lp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 540px;
}

.lp-badge {
    display: inline-block;
    background: rgba(0, 51, 255, 0.15);
    border: 1px solid rgba(0, 51, 255, 0.3);
    color: var(--azul);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
}

.lp-hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
}

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

.lp-hero-sub {
    font-size: 1.05rem;
    color: var(--cinza-claro);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

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

.lp-hero-price-tag {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1rem 2rem;
    margin-bottom: var(--spacing-lg);
}

.lp-hero-price-tag .old-price {
    text-decoration: line-through;
    color: var(--cinza-claro);
    font-size: 0.8rem;
}

.lp-hero-price-tag .new-price {
    color: var(--branco);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
}

.lp-hero-price-tag .cash-price {
    color: var(--cinza-claro);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===========================================
   BUTTONS
   =========================================== */

.lp-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem var(--spacing-lg);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.lp-btn-primary {
    background: var(--azul);
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.lp-btn-primary::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: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.lp-btn-primary:hover {
    background: #0029cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 51, 255, 0.4);
}

.lp-btn-secondary {
    background: transparent;
    color: var(--azul);
    border: 2px solid var(--azul);
}

.lp-btn-secondary:hover {
    background: rgba(0, 51, 255, 0.1);
    transform: translateY(-2px);
}

.lp-cta-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--cinza-claro);
    margin-top: var(--spacing-xs);
    text-align: center;
}

/* ===========================================
   SECTION COMMON
   =========================================== */

.lp-section {
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid var(--border-subtle);
}

.lp-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--azul);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.lp-section-title {
    font-size: clamp(1.4rem, 4vw, 1.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.lp-section-desc {
    font-size: 0.95rem;
    color: var(--cinza-claro);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* ===========================================
   PARA QUEM É
   =========================================== */

.lp-audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.lp-audience-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    transition: border-color var(--transition-normal);
}

.lp-audience-list li:hover {
    border-color: var(--azul);
}

.lp-audience-list li .icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ===========================================
   COMO FUNCIONA — 3 STEPS
   =========================================== */

.lp-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    counter-reset: step;
}

.lp-step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
    counter-increment: step;
}

.lp-step-card:hover {
    transform: translateY(-4px);
    border-color: var(--azul);
}

.lp-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--azul);
    color: var(--branco);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.lp-step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.lp-step-card p {
    font-size: 0.9rem;
    color: var(--cinza-claro);
    line-height: 1.7;
}

/* ===========================================
   O QUE VOCÊ RECEBE — MÓDULOS
   =========================================== */

.lp-modules-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(0, 51, 255, 0.08);
    border: 1px solid rgba(0, 51, 255, 0.15);
    border-radius: var(--radius-sm);
}

.lp-modules-header .stat {
    font-size: 0.9rem;
    color: var(--branco);
    font-weight: 600;
}

.lp-modules-header .stat-divider {
    color: var(--cinza-claro);
}

.lp-module-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.lp-module-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: border-color var(--transition-normal);
}

.lp-module-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.lp-module-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0, 51, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.lp-module-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.lp-module-info span {
    font-size: 0.75rem;
    color: var(--cinza-claro);
}

/* ===========================================
   BÔNUS
   =========================================== */

.lp-bonus-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 51, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.lp-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--azul), var(--laranja));
}

.lp-bonus-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--laranja);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.lp-bonus-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.lp-bonus-card p {
    font-size: 0.9rem;
    color: var(--cinza-claro);
    line-height: 1.7;
}

/* ===========================================
   PREÇO / OFERTA
   =========================================== */

.lp-offer {
    text-align: center;
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid var(--border-subtle);
}

.lp-offer-box {
    background: var(--bg-card);
    border: 2px solid var(--azul);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.lp-offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 51, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.lp-offer-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--azul);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.lp-offer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.lp-offer-items {
    list-style: none;
    text-align: left;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.lp-offer-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--border-subtle);
}

.lp-offer-items li:last-child {
    border-bottom: none;
}

.lp-offer-items li .check {
    color: var(--azul);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.lp-price-block {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.lp-price-old {
    font-size: 1.1rem;
    color: var(--cinza-claro);
    text-decoration: line-through;
    margin-bottom: var(--spacing-xs);
}

.lp-price-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--branco);
    line-height: 1;
}

.lp-price-new span {
    font-size: 1rem;
    font-weight: 600;
    vertical-align: super;
}

.lp-price-installment {
    font-size: 0.85rem;
    color: var(--cinza-claro);
    margin-top: var(--spacing-xs);
}

/* ===========================================
   GARANTIA
   =========================================== */

.lp-guarantee {
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid var(--border-subtle);
}

.lp-guarantee-box {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
}

.lp-guarantee-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.lp-guarantee-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.lp-guarantee-box p {
    font-size: 0.9rem;
    color: var(--cinza-claro);
    line-height: 1.7;
}

/* ===========================================
   FAQ
   =========================================== */

.lp-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

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

.lp-faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.lp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--spacing-md);
    background: none;
    border: none;
    color: var(--branco);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: var(--spacing-sm);
}

.lp-faq-question .faq-arrow {
    font-size: 0.8rem;
    color: var(--cinza-claro);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.lp-faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.lp-faq-item.active .lp-faq-answer {
    max-height: 300px;
}

.lp-faq-answer-inner {
    padding: 0 var(--spacing-md) var(--spacing-md);
    font-size: 0.9rem;
    color: var(--cinza-claro);
    line-height: 1.7;
}

/* ===========================================
   FOOTER
   =========================================== */

.lp-footer {
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.lp-footer p {
    font-size: 0.8rem;
    color: var(--cinza-claro);
}

.lp-footer-handle {
    color: var(--azul);
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

/* ===========================================
   MID-PAGE CTA STRIP
   =========================================== */

.lp-cta-strip {
    text-align: center;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--border-subtle);
}

.lp-cta-strip p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

/* ===========================================
   RESPONSIVIDADE
   =========================================== */

@media (max-width: 480px) {
    .lp-hero {
        min-height: auto;
        padding: var(--spacing-xl) var(--spacing-md);
        padding-top: calc(var(--spacing-xl) + 2rem);
    }

    .lp-hero h1 {
        font-size: 1.5rem;
    }

    .lp-section {
        padding: var(--spacing-xl) 0;
    }

    .lp-offer-box {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .lp-price-new {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .lp-hero {
        min-height: 85vh;
    }

    .lp-step-card {
        padding: var(--spacing-xl);
    }

    .lp-offer-box {
        padding: var(--spacing-2xl) var(--spacing-xl);
    }
}