﻿:root {
    --primary-color: #FFB800; /* Amber/Yellow for high impact */
    --primary-hover: #E6A600;
    --bg-dark: #121214;
    --bg-card: #1a1a1e;
    --text-light: #ffffff;
    --text-muted: #a8a8b3;
    --accent-red: #ff3e3e;
    --success: #00c853;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Global Typography */
h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 800;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.highlight {
    color: var(--primary-color);
}

.highlight-red {
    color: var(--accent-red);
}

/* Components */
.btn-primary {
    display: inline-block;
    background-color: var(--success);
    color: #fff;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    transition: transform 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: #00e676;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #fff;
    color: #fff;
}

/* 1. Header (Sticky) */
.top-bar {
    background-color: var(--primary-color);
    color: #000;
    text-align: center;
    padding: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* 2. Hero Section */
.hero-section {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1e 0%, #121214 100%);
}

.main-headline {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.sub-headline {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.hero-mockup {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

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

/* 4. Módulos */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.module-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.module-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* 5. Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* 8. Pricing */
.pricing-section {
    padding: 100px 0;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.plan-card.complete {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
}

.plan-features {
    flex-grow: 1;
    text-align: left !important;
    margin-bottom: 30px;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start;
    text-align: left !important;
    gap: 10px !important;
    font-size: 1rem;
    word-spacing: normal !important;
}

.plan-features li span {
    color: var(--success);
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
}

.currency { font-size: 1.5rem; vertical-align: top; }
.amount { font-size: 4rem; font-weight: 900; color: var(--primary-color); }
.cents { font-size: 1.5rem; font-weight: 700; }

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

/* 13. Garantia */
.guarantee-section {
    background: #000;
    padding: 60px 0;
}

.guarantee-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.guarantee-icon span {
    font-size: 100px;
    color: var(--primary-color);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--bg-card);
    border: none;
    color: #fff;
    text-align: left;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

footer {
    padding: 40px 0;
    background-color: var(--bg-dark);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 1.45rem; margin-bottom: 20px; }
    .main-headline { font-size: 1.6rem; margin-bottom: 15px; }
    section { padding: 30px 0 !important; }
    .container { padding: 0 15px; }
    .btn-primary { padding: 15px 20px; font-size: 1.05rem; }
    .plan-card { text-align: center; }
    
    .pricing-container { gap: 40px; }
    .plan-card.complete { transform: none; }
    .guarantee-flex { flex-direction: column; text-align: center; }
}

/* Production Readiness Classes */
.timer-container-box {
    display: inline-block;
    border: 2px solid #ff0000;
    border-radius: 12px;
    background: rgba(255,0,0,0.05);
    padding: 20px 30px;
    margin-bottom: 25px;
}
.timer-headline {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.countdown-grid-new {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    font-family: sans-serif;
}
.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.timer-num {
    color: #ff0000;
    font-size: 2.2rem;
    font-weight: 900;
    min-width: 45px;
    text-align: center;
}
.timer-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.timer-sep {
    font-size: 1.8rem;
    color: #ff0000;
    font-weight: 900;
    margin-top: -12px;
}
.guarantee-icon-box {
    flex-shrink: 0;
    min-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}
.guarantee-seal-img {
    width: 150px;
    height: auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: #1a1a1e;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    max-width: 450px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.modal-header {
    background-color: var(--primary-color);
    color: #000;
    padding: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #fff;
}

.modal-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-timer {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff3e3e;
    margin: 15px 0;
    font-family: monospace;
}

.modal-price {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
}

.new-price {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
}

.btn-upsell-confirm {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    font-size: 1.1rem !important;
}

.btn-link {
    display: block;
    color: var(--text-muted);
    text-decoration: underline;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.btn-link:hover {
    color: #fff;
}
