/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2D6A4F;
    --light-green: #52B788;
    --accent-green: #95D5B2;
    --bg-light: #F7FBF9;
    --text-dark: #1B4332;
    --text-muted: #555;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

/* Urgency Banner */
.urgency-banner {
    background: var(--primary-green);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-highlight {
    color: #FFD700;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.ebook-mockup img {
    max-width: 300px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

.cta-button {
    background: var(--light-green);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(82, 183, 136, 0.4);
}

.cta-button:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

/* Benefits Grid */
.benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--light-green);
    margin-bottom: 20px;
}

/* What You Get */
.what-you-get {
    padding: 60px 0;
    background: #EDF5F1;
}

.feature-list-horizontal {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-item i {
    color: var(--light-green);
}

/* Pricing Plans */
.pricing-plans {
    padding: 100px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid transparent;
}

.plan-card.premium {
    border-color: var(--light-green);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-green);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

.plan-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: var(--light-green);
}

.plan-button {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.basic-button {
    background: #e0e0e0;
    color: #555;
}

.premium-button {
    background: var(--light-green);
    color: white;
}

.plan-card.premium .highlight-feature {
    color: var(--primary-green);
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-author {
    margin-top: 20px;
    display: block;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Guarantee */
.guarantee {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.guarantee-large-icon {
    font-size: 4rem;
    color: var(--light-green);
    margin-bottom: 20px;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Final CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--primary-green);
    color: white;
}

.final-cta h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.final-cta p {
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .feature-list-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Pop-up Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-title {
    color: #DC2626;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.popup-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.popup-offer {
    background: #F0FDF4;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px dashed var(--light-green);
}

.popup-price {
    margin-top: 15px;
}

.old-price-popup {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.new-price-popup {
    display: block;
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 800;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-btn {
    padding: 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.accept-btn {
    background: var(--light-green);
    color: white;
    box-shadow: 0 4px 15px rgba(82, 183, 136, 0.4);
}

.accept-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.decline-btn {
    color: #999;
    font-size: 0.9rem;
    font-weight: 400;
}

.decline-btn:hover {
    color: #666;
    text-decoration: underline;
}
