/*
 * Desenvolvido por Fernando Sousa, com ❤️ e sem IA
 */
/* =============================================
   LPMAX - Estilos da Landing Page
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- Variáveis CSS ---- */
:root {
    --color-primary: #10b981;
    --color-primary-dark: #059669;
    --color-primary-glow: rgba(16, 185, 129, 0.4);
    --color-secondary: #1a2e1a;
    --color-bg: #0a1f0a;
    --color-bg-light: #132613;
    --color-text: #f0fdf4;
    --color-text-muted: #bbf7d0;
    --color-accent: #34d399;
    --color-gold: #fbbf24;
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --glass-bg: rgba(16, 185, 129, 0.06);
    --glass-border: rgba(16, 185, 129, 0.15);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Barra de Rolagem ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ---- Reset ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- Utilidades ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* ---- Animações (Keyframes) ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--color-primary-glow);
    }

    50% {
        box-shadow: 0 0 40px var(--color-primary-glow), 0 0 60px rgba(16, 185, 129, 0.15);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes bgFadeInOut {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(15px) scale(1.1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-50px) translateX(-10px) scale(0.9);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-20px) translateX(20px) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(16, 185, 129, 0.2);
    }

    50% {
        border-color: rgba(16, 185, 129, 0.5);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---- Revelar ao Rolar ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Atrasos em cascata */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* =============================================
   SEÇÃO PRINCIPAL (HERO)
   ============================================= */
.hero {
    background: linear-gradient(135deg, rgba(10, 31, 10, 0.98), rgba(13, 43, 13, 0.97), rgba(6, 78, 59, 0.98)),
        url('assets/hero-bg.png') center/cover no-repeat;
    background-size: cover;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent, rgba(6, 78, 59, 0.15)),
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
    animation: bgFadeInOut 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--color-bg-light), transparent);
    pointer-events: none;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 50px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-tag {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-urgency {
    display: inline-block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: #f87171;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s both, urgencyPulse 2s ease-in-out 1.3s infinite;
}

@keyframes urgencyPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.03);
    }
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero h1 .highlight {
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-subtitle strong {
    color: var(--color-text);
}

/* Destaque de Preço da Seção Principal */
.hero-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 30px 0 8px;
    animation: fadeInUp 0.8s ease 0.55s both;
}

.hero-price-currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.hero-price-value {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent), #6ee7b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(16, 185, 129, 0.35));
    padding-right: 4px;
}

.hero-price-cents {
    font-size: 3rem;
    font-weight: 700;
}

.hero-price-sub {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 35px;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease 0.6s both;
}


/* Área de CTA da Seção Principal */
.hero-cta-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: white;
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 25px var(--color-primary-glow);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(16, 185, 129, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}



/* =============================================
   SEÇÃO COMPARTILHADA
   ============================================= */
.section-tag {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.section-tag-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-title .hl {
    color: var(--color-primary);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-subtitle strong {
    color: var(--color-text);
}

/* =============================================
   SEÇÃO DE BENEFÍCIOS
   ============================================= */
.benefits {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(10, 31, 10, 0.97), rgba(15, 23, 15, 0.97)),
        url('assets/benefits-bg.png') center/cover no-repeat;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 45px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.4s var(--transition-smooth);
    transform-origin: left;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.08);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-text);
    font-weight: 700;
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* =============================================
   SEÇÃO DE DEPOIMENTOS / SUCESSO
   ============================================= */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(10, 31, 10, 0.99), rgba(6, 78, 59, 0.95), rgba(10, 31, 10, 0.99)),
        url('assets/benefits-bg.png') center/cover no-repeat;
    text-align: center;
}

.testimonial-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.testimonial-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    animation: gradientShift 8s ease-in-out infinite;
    pointer-events: none;
}

.testimonial-box p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-box .emphasis {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
    margin-top: 30px;
    display: block;
    position: relative;
    z-index: 1;
}

.testimonial-bottom {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ---- Divisor de Seções Sutil ---- */
.section-divider {
    height: 1px;
    width: 100%;
    margin: 0;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1) 20%, rgba(16, 185, 129, 0.1) 80%, transparent);
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.8) 50%, transparent);
    animation: dividerWave 6s infinite linear;
}

@keyframes dividerWave {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* =============================================
   TIPOGRAFIA & TÍTULOS
   ============================================= */

/* =============================================
   SEÇÃO DE MOTIVOS
   ============================================= */
.reasons {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(15, 23, 15, 0.97), rgba(10, 31, 10, 0.97)),
        url('assets/hero-bg.png') center/cover no-repeat;
}

.reasons-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.reason-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    padding: 22px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s var(--transition-smooth);
}

.reason-item:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.reason-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    min-width: 45px;
}

.reason-text {
    font-size: 1.05rem;
    color: var(--color-text);
    font-weight: 500;
}

/* =============================================
   SEÇÃO DE ETAPAS / PROCESSO
   ============================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px var(--color-primary-glow);
    transition: all 0.3s ease;
}

.step-card:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px var(--color-primary-glow);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* =============================================
   SEÇÃO DE APRENDIZADO / GANHOS
   ============================================= */
.learning {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(10, 31, 10, 0.97), rgba(10, 31, 10, 0.97)),
        url('assets/benefits-bg.png') center/cover no-repeat;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.learning-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.learning-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.learning-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, transparent 60%, rgba(16, 185, 129, 0.05) 100%);
    pointer-events: none;
}

.learning-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.35);
}

.learning-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.learning-card:hover .learning-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.learning-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-weight: 700;
}

.learning-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* =============================================
   SEÇÃO DE PORTFÓLIO
   ============================================= */
.portfolio {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(15, 23, 15, 0.97), rgba(10, 31, 10, 0.97)),
        url('assets/pricing-bg.png') center/cover no-repeat;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    cursor: pointer;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    transition: opacity 0.4s ease;
    z-index: 0;
}

.portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.portfolio-card:hover::before {
    opacity: 0.8;
}

.portfolio-card-content {
    position: relative;
    z-index: 1;
}

.portfolio-badge {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
    transition: background 0.3s ease;
}

.portfolio-card:hover .portfolio-badge {
    background-color: rgba(255, 255, 255, 0.3);
}

.portfolio-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: white;
    font-weight: 700;
}

.portfolio-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Fundos do Portfólio (Imagens Reais) */
.portfolio-clinica {
    background: url('assets/portfolio-clinica.png') center top/cover no-repeat;
}

.portfolio-burger {
    background: url('assets/portfolio-burger.png') center top/cover no-repeat;
}

.portfolio-advocacia {
    background: url('assets/portfolio-advocacia.png') center top/cover no-repeat;
}

.portfolio-curso {
    background: url('assets/portfolio-curso.png') center top/cover no-repeat;
}

.portfolio-moda {
    background: url('assets/portfolio-moda.png') center top/cover no-repeat;
}

.portfolio-saas {
    background: url('assets/portfolio-saas.png') center top/cover no-repeat;
}

/* =============================================
   SEÇÃO DE PREÇOS
   ============================================= */
.pricing {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(10, 31, 10, 0.97), rgba(15, 23, 15, 0.97)),
        url('assets/pricing-bg.png') center/cover no-repeat;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card-essential {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.pricing-card-essential:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.1);
}

.pricing-card-complete {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: 0 10px 40px var(--color-primary-glow);
}

.pricing-card-complete:hover {
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.35);
}

.pricing-popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.pricing-card-essential h3 {
    color: var(--color-text);
}

.pricing-card-complete h3 {
    color: white;
}

.pricing-description {
    margin-bottom: 30px;
}

.pricing-card-essential .pricing-description {
    color: var(--color-text-muted);
}

.pricing-card-complete .pricing-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-amount-wrapper {
    margin-bottom: 30px;
}

.pricing-old-price {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.pricing-card-essential .pricing-old-price {
    color: var(--color-text-muted);
}

.pricing-card-complete .pricing-old-price {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-currency {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
    margin-right: 2px;
}

.pricing-card-essential .pricing-currency {
    color: var(--color-text-muted);
}

.pricing-card-complete .pricing-currency {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-amount {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-card-essential .pricing-amount {
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card-complete .pricing-amount {
    color: white;
}

.pricing-period {
    margin-top: 10px;
}

.pricing-card-essential .pricing-period {
    color: var(--color-text-muted);
}

.pricing-card-complete .pricing-period {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    text-align: left;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card-complete .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.pricing-features .check {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-card-complete .pricing-features .check {
    color: white;
}

.pricing-excluded {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-excluded li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
}

.cta-button-outline {
    display: inline-block;
    width: 100%;
    padding: 18px 48px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    text-align: center;
    letter-spacing: 0.02em;
}

.cta-button-outline:hover {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 8px 30px var(--color-primary-glow);
    transform: translateY(-2px);
}

.cta-button-white {
    display: inline-block;
    width: 100%;
    padding: 18px 48px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    background-color: white;
    color: var(--color-primary);
    border: none;
    text-align: center;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.cta-button-white:hover {
    background: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.pricing-bonus {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-bonus li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   SEÇÃO DE PERGUNTAS FREQUENTES
   ============================================= */
.faq {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(10, 31, 10, 0.97), rgba(10, 31, 10, 0.97)),
        url('assets/hero-bg.png') center/cover no-repeat;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 0;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.35);
}

.faq-item[open] {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-item summary {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 25px 28px;
    transition: color 0.3s ease;
}

.faq-item summary:hover {
    color: var(--color-primary);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-toggle {
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: transform 0.4s var(--transition-smooth);
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
}

.faq-item[open] .faq-toggle {
    transform: rotate(45deg);
    background: rgba(16, 185, 129, 0.2);
}

.faq-answer {
    padding: 0 28px 25px;
    color: var(--color-text-muted);
    line-height: 1.7;
    animation: fadeIn 0.4s ease;
}

/* =============================================
   SEÇÃO FINAL DE CHAMADA PARA AÇÃO
   ============================================= */
.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, rgba(10, 31, 10, 0.98), rgba(6, 78, 59, 0.98), rgba(4, 120, 87, 0.99)),
        url('assets/pricing-bg.png') center/cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.05));
    animation: bgFadeInOut 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.final-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.final-cta>.container>p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.final-cta .cta-button {
    background-color: white;
    color: var(--color-primary);
    font-size: 1.1rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

.final-cta .cta-button svg {
    fill: currentColor;
}

.final-cta .cta-button:hover {
    background-color: var(--color-text);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
}

.cta-button-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    letter-spacing: 0.02em;
}

.cta-button-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* =============================================
   RODAPÉ
   ============================================= */
footer {
    background-color: var(--color-bg);
    padding: 60px 20px 30px;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-secondary);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 1.3;
    min-width: 260px;
}

.footer-brand img {
    width: 55px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}


.footer-brand p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-col a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--color-secondary);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-bottom .made-with {
    margin-top: 10px;
    font-size: 0.85rem;
}

/* =============================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: all 0.4s var(--transition-smooth);
    animation: pulseGlow 3s ease-in-out infinite;
    --color-primary-glow: rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    flex-shrink: 0;
}

/* =============================================
   DESIGN RESPONSIVO
   ============================================= */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .learning-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .whatsapp-float.hidden-in-hero {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: scale(0.8) translateY(20px);
    }

    .hero {
        padding: 40px 20px 40px;
        align-items: center;
        min-height: 100svh;
    }

    .hero-logo {
        width: 40px;
        margin-bottom: 20px;
    }

    .hero-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 1.85rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .hero-urgency {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 10px;
    }

    .hero-price {
        margin: 20px 0 5px;
    }

    .hero-price-value {
        font-size: 4rem;
    }

    .hero-price-currency {
        font-size: 1.5rem;
    }

    .hero-price-cents {
        font-size: 1.8rem;
    }

    .hero-price-sub {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .hero-cta-wrapper {
        margin-top: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .benefits-grid,
    .reasons-list,
    .learning-grid,
    .learning-grid.grid-4,
    .portfolio-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.3rem;
    }

    .hero-badges {
        gap: 10px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .final-cta h2 {
        font-size: 1.9rem;
    }

    .cta-button {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .pricing-card {
        padding: 40px 28px;
    }

    .pricing-amount {
        font-size: 3.5rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 20px 30px;
        align-items: center;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-price-value {
        font-size: 3.5rem;
    }

    .hero-price-currency {
        font-size: 1.3rem;
    }

    .hero-price-cents {
        font-size: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .footer-grid {
        flex-direction: column;
    }

    .pricing-amount {
        font-size: 3rem;
    }
}

/* =============================================
   NOTIFICAÇÃO DE VENDAS (FOMO)
   ============================================= */
.fomo-toast {
    position: fixed;
    bottom: 28px;
    left: 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    /* Abaixo do botão do WhatsApp se sobrepor */
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fomo-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.fomo-icon {
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.fomo-content {
    flex: 1;
}

.fomo-text {
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.4;
}

.fomo-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

.fomo-time {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .fomo-toast {
        top: 20px;
        bottom: auto;
        left: 20px;
        right: 20px;
        padding: 8px 12px;
        gap: 10px;
        border-radius: 8px;
        transform: translateY(-100px);
        /* Escondido acima do topo */
    }

    .fomo-toast.show {
        transform: translateY(0);
    }

    .fomo-icon {
        min-width: 32px;
        height: 32px;
    }

    .fomo-icon svg {
        width: 16px;
        height: 16px;
    }

    .fomo-text {
        font-size: 0.8rem;
    }

    .fomo-time {
        font-size: 0.7rem;
    }
}