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

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #1a1a1a;
    --bg-card: #1f1f1f;
    --text-white: #ffffff;
    --text-gray: #a8a8a8;
    --green-primary: #00ff88;
    --green-accent: #00cc6a;
    --red-primary: #ff3b5c;
    --border-color: #2a2a2a;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TIMER DE CONTAGEM REGRESSIVA */
.countdown-timer {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--red-primary) 0%, #d92944 100%);
    border-bottom: 2px solid var(--green-primary);
    box-shadow: 0 4px 20px rgba(255, 59, 92, 0.4);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.countdown-timer.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.countdown-alert {
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
}

.countdown-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 16px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.countdown-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.countdown-label {
    font-size: 10px;
    font-weight: 700;
    margin-top: 4px;
    text-align: center;
}

.countdown-separator {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 900;
}

.countdown-text {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 10px;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(to bottom, #000000, var(--bg-dark), var(--bg-card));
    overflow: hidden;
}

.background-glow {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
}

.background-glow::before,
.background-glow::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.background-glow::before {
    top: 50px;
    left: 50px;
    width: 450px;
    height: 450px;
    background: var(--green-primary);
}

.background-glow::after {
    bottom: 50px;
    right: 50px;
    width: 550px;
    height: 550px;
    background: var(--green-accent);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.urgency-badge {
    display: inline-block;
    background: var(--red-primary);
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 36px;
    animation: bounce 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 59, 92, 0.4);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.text-red {
    color: var(--red-primary);
    font-weight: 900;
}

.text-green {
    color: var(--green-primary);
    font-weight: 700;
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 22px 54px;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.8px;
    position: relative;
}

.cta-primary {
    background: var(--green-primary);
    color: #000000;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.35);
}

.cta-primary:hover {
    background: var(--green-accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.5);
}

.cta-large {
    width: 100%;
    max-width: 600px;
    padding: 26px;
    font-size: 20px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin-top: 48px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
}

.badge-icon {
    color: var(--green-primary);
    font-size: 22px;
}

/* PAIN SECTION */
.pain-section {
    padding: 100px 0;
    background: var(--bg-card);
    position: relative;
}

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

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.divider {
    width: 120px;
    height: 5px;
    background: var(--green-primary);
    margin: 0 auto;
    border-radius: 10px;
}

.pain-cards {
    display: grid;
    gap: 32px;
    max-width: 1050px;
    margin: 0 auto 50px;
}

.pain-card {
    background: var(--bg-dark);
    border-left: 5px solid var(--red-primary);
    padding: 36px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pain-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.pain-card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 14px;
}

.pain-card-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.pain-highlight {
    background: linear-gradient(to right, rgba(255, 59, 92, 0.2), transparent);
    border: 2px solid var(--red-primary);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.pain-highlight-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 14px;
}

.pain-highlight-text {
    font-size: 22px;
    color: var(--text-gray);
    font-weight: 600;
}

/* SOLUTION SECTION */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-card), var(--bg-dark));
}

.solution-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.12);
    border: 2px solid var(--green-primary);
    color: var(--green-primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    font-weight: 500;
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    margin-bottom: 70px;
    align-items: start;
}

.comparison-card {
    background: var(--bg-darker);
    padding: 44px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.comparison-without {
    border: 2px solid rgba(255, 59, 92, 0.5);
}

.comparison-with {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 204, 106, 0.15));
    border: 2px solid var(--green-primary);
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.25);
}

.comparison-with:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 50px rgba(0, 255, 136, 0.35);
}

.comparison-header {
    text-align: center;
    margin-bottom: 36px;
}

.comparison-icon {
    font-size: 52px;
    margin-bottom: 18px;
}

.comparison-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 18px;
    padding-left: 12px;
}

.comparison-with .comparison-list li {
    color: var(--text-white);
    font-weight: 600;
}

.solution-box {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
}

.solution-box-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}

.solution-box-text {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.solution-highlight {
    display: inline-block;
    background: rgba(0, 255, 136, 0.12);
    border: 2px solid var(--green-primary);
    color: var(--green-primary);
    padding: 18px 36px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 36px;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25);
}

.benefit-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.benefit-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-card);
}

.stars {
    font-size: 36px;
    margin: 18px 0;
    color: #fbbf24;
    text-align: center;
}

.rating-text {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
}

.number-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 900;
}

/* TESTIMONIALS GRID */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    padding: 36px;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #000000;
}

.testimonial-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green-primary);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.avatar-green {
    background: var(--green-primary);
}

.testimonial-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-white);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-gray);
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.7;
}

/* SOCIAL PROOF BOX */
.social-proof-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 204, 106, 0.1));
    border: 3px solid var(--green-primary);
    padding: 48px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 16px 50px rgba(0, 255, 136, 0.5);
    }
}

.social-proof-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 36px;
    margin-bottom: 32px;
}

.proof-stat {
    background: rgba(0, 0, 0, 0.4);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.proof-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--green-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.proof-label {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 600;
}

.social-proof-highlight {
    font-size: 19px;
    color: var(--text-white);
    font-weight: 600;
    line-height: 1.6;
    background: rgba(0, 255, 136, 0.15);
    padding: 20px 28px;
    border-radius: 12px;
    display: inline-block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
}

.stat-card {
    background: var(--bg-dark);
    border: 2px solid rgba(0, 255, 136, 0.5);
    padding: 36px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.3);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--green-primary);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 600;
}

/* GUARANTEE SECTION */
.guarantee-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 204, 106, 0.15));
    border: 4px solid var(--green-primary);
    padding: 70px;
    border-radius: 24px;
    box-shadow: 0 12px 50px rgba(0, 255, 136, 0.35);
    max-width: 1050px;
    margin: 0 auto;
}

.guarantee-header {
    text-align: center;
    margin-bottom: 48px;
}

.guarantee-shield {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    background: var(--green-primary);
    border-radius: 50%;
    font-size: 56px;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
}

.guarantee-content {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 18px;
    margin-bottom: 36px;
    text-align: center;
}

.guarantee-promise {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}

.guarantee-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    margin-bottom: 36px;
}

.guarantee-feature {
    text-align: center;
}

.guarantee-feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.guarantee-feature-text {
    font-size: 15px;
    color: var(--text-gray);
}

.guarantee-footer {
    text-align: center;
    font-size: 22px;
    color: var(--text-white);
    font-weight: 600;
}

/* OFFER SECTION */
.offer-section {
    padding: 110px 0;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-card), var(--bg-dark));
    position: relative;
}

.urgency-alert {
    background: var(--red-primary);
    border: 4px solid rgba(255, 59, 92, 0.5);
    padding: 36px;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 70px;
    animation: pulse 3s infinite;
    box-shadow: 0 8px 30px rgba(255, 59, 92, 0.4);
}

.urgency-alert-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.urgency-alert-subtext {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 48px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 3px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 36px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: var(--green-primary);
    box-shadow: 0 16px 50px rgba(0, 255, 136, 0.25);
}

.pricing-card-featured {
    border: 4px solid var(--green-primary);
    box-shadow: 0 12px 50px rgba(0, 255, 136, 0.35);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.08) translateY(-12px);
}

.featured-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-primary);
    color: #000000;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.5);
}

.plan-badge {
    display: inline-block;
    background: var(--bg-darker);
    color: var(--text-gray);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
}

.plan-badge-featured {
    background: var(--green-primary);
    color: #000000;
}

.price-old {
    font-size: 20px;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-bottom: 12px;
}

.price-current-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.price-current {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    display: block;
    margin: 20px 0;
}

.pricing-card-featured .price-current {
    color: var(--green-primary);
}

.price-info {
    text-align: center;
}

.price-only {
    font-size: 14px;
    color: var(--text-gray);
}

.price-installment {
    font-size: 18px;
    color: var(--green-primary);
    font-weight: 700;
}

.discount-badge {
    display: inline-block;
    background: var(--red-primary);
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 44px;
    box-shadow: 0 4px 15px rgba(255, 59, 92, 0.4);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.pricing-feature {
    font-size: 17px;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.security-badges {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.security-item {
    font-size: 14px;
    color: var(--text-gray);
}

.offer-timer {
    text-align: center;
    margin-bottom: 50px;
    background: rgba(255, 59, 92, 0.1);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid rgba(255, 59, 92, 0.3);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.offer-timer-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.offer-countdown-box {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--red-primary);
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    min-width: 90px;
}

.offer-countdown-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--red-primary);
    line-height: 1;
}

.offer-countdown-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.offer-time {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--text-white);
    text-align: center;
}

.offer-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 6px;
    text-align: center;
}

.offer-separator {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--text-white);
}

.final-warning {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.warning-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}

.warning-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.warning-text-strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq-grid {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
}

.faq-toggle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--green-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 32px 28px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* FOOTER */
.footer-section {
    background: var(--bg-dark);
    border-top: 2px solid var(--border-color);
    padding: 80px 0 50px;
}

.footer-cta {
    text-align: center;
    margin-bottom: 60px;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}

.footer-text {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 36px;
}

.footer-info {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-disclaimer {
    font-size: 13px;
    color: rgba(168, 168, 168, 0.7);
    line-height: 1.6;
}

/* ANIMAÇÕES */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .comparison-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-featured:hover {
        transform: scale(1.02) translateY(-8px);
    }
    
    .price-current {
        font-size: 60px;
    }
    
    .guarantee-box {
        padding: 40px 28px;
    }
    
    .final-warning {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .countdown-display {
        gap: 8px;
    }
    
    .countdown-box {
        padding: 8px 12px;
    }
    
    .countdown-number,
    .countdown-separator {
        font-size: 20px;
    }
}
