/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background-color: #f9f9ef;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f9f9ef 0%, #e8e8d8 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 249, 239, 0.95) 0%, rgba(232, 232, 216, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-text {
    color: #008037;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Emoji removido para design mais profissional */

.highlight {
    color: #008037;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}

.highlight-text {
    color: #008037;
    font-weight: 700;
    background: rgba(0, 128, 55, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

/* CTA Card Moderno e Responsivo */
.cta-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 40px 0;
    box-shadow: 0 20px 60px rgba(0, 128, 55, 0.15);
    border: 2px solid rgba(0, 128, 55, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #008037, #006b2f);
}

.price-highlight {
    margin-bottom: 30px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.old-price-hero {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: #e74c3c;
    font-weight: 500;
    opacity: 0.8;
}

.discount-label {
    background: linear-gradient(135deg, #008037, #006b2f);
    color: #f9f9ef;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-discount 2s infinite;
}

@keyframes pulse-discount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.current-price-hero {
    font-size: 2.2rem;
    font-weight: 800;
    color: #008037;
    text-shadow: 0 2px 4px rgba(0, 128, 55, 0.1);
    margin-bottom: 5px;
}

.cta-button-hero {
    width: 100%;
    background: linear-gradient(135deg, #008037 0%, #006b2f 100%);
    color: #f9f9ef;
    border: none;
    padding: 20px 40px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 128, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.cta-button-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button-hero:hover::before {
    left: 100%;
}

.cta-button-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 128, 55, 0.4);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 128, 55, 0.05);
    border: 1px solid rgba(0, 128, 55, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #008037;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(0, 128, 55, 0.1);
    transform: translateY(-2px);
}

.trust-badge i {
    color: #008037;
    font-size: 1rem;
}

.satisfaction-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(0, 128, 55, 0.05);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #008037;
    border: 1px solid rgba(0, 128, 55, 0.1);
}

.satisfaction-guarantee i {
    color: #008037;
    font-size: 1.1rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-mockup {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ebook-cover {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #008037, #006b2f);
    border: 3px solid #f9f9ef;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 128, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ebook-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(249, 249, 239, 0.05), rgba(249, 249, 239, 0.1));
}

.ebook-title {
    text-align: center;
    color: #f9f9ef;
    z-index: 1;
    position: relative;
}

.ebook-title h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.ebook-title p {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Elementos flutuantes removidos para design mais profissional */

/* Seção de Benefícios */
.benefits-section {
    padding: 100px 0;
    background: #f9f9ef;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #008037;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 128, 55, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 128, 55, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 128, 55, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f9f9ef, #e8e8d8);
    border: 3px solid #008037;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: #008037;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #008037;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Seção de Oferta */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9ef 0%, #e8e8d8 100%);
    color: #008037;
}

.offer-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #008037;
}

.offer-box {
    background: rgba(0, 128, 55, 0.05);
    border-radius: 16px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 128, 55, 0.2);
}

.ebook-preview {
    display: flex;
    justify-content: center;
}

.ebook-mini {
    width: 200px;
    height: 280px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.ebook-mini h4 {
    color: #f9f9ef;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.ebook-mini-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.ebook-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 128, 55, 0.2);
    border: 3px solid #f9f9ef;
}

.offer-right h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #008037;
}

.offer-list {
    list-style: none;
    margin-bottom: 40px;
}

.offer-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.offer-list i {
    color: #008037;
    font-size: 1.2rem;
    background: rgba(0, 128, 55, 0.1);
    padding: 4px;
    border-radius: 50%;
}

.price-box {
    background: rgba(0, 128, 55, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    border: 2px solid rgba(0, 128, 55, 0.2);
}

.old-price-large {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: rgba(0, 128, 55, 0.7);
    margin-bottom: 10px;
}

.current-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #008037;
    margin-bottom: 10px;
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #008037;
    color: #f9f9ef;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid #f9f9ef;
}

.cta-button.large {
    width: 100%;
    padding: 20px;
    font-size: 1.4rem;
    margin-bottom: 20px;
    background: #008037;
    color: #f9f9ef;
    border: 2px solid #008037;
}

.cta-button.large:hover {
    background: transparent;
    color: #008037;
    border-color: #008037;
}

.guarantee {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
    background: rgba(0, 128, 55, 0.1);
    padding: 12px;
    border-radius: 8px;
}

.guarantee i {
    color: #008037;
    margin-right: 8px;
}

/* Seção de Depoimentos */
.testimonials-section {
    padding: 100px 0;
    background: #f9f9ef;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 128, 55, 0.1);
    text-align: center;
    border: 1px solid rgba(0, 128, 55, 0.1);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #008037;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    color: #555;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #008037;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-weight: 600;
}

/* Seção de Urgência */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #008037, #006b2f);
    color: #f9f9ef;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.countdown-item {
    background: rgba(249, 249, 239, 0.1);
    padding: 20px;
    border-radius: 12px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 249, 239, 0.2);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #008037;
    background: #f9f9ef;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.urgent {
    background: #f9f9ef;
    color: #008037;
    font-size: 1.4rem;
    padding: 20px 50px;
    border: 2px solid #f9f9ef;
    animation: pulse 2s infinite;
}

.cta-button.urgent:hover {
    background: #008037;
    color: #f9f9ef;
    border-color: #008037;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Footer */
.footer {
    background: #008037;
    color: #f9f9ef;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(249, 249, 239, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f9f9ef;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-card {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .current-price-hero {
        font-size: 1.8rem;
    }
    
    .cta-button-hero {
        font-size: 1.2rem;
        padding: 18px 30px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .satisfaction-guarantee {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .offer-box {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-card {
        padding: 25px 15px;
        margin: 25px 0;
    }
    
    .price-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .current-price-hero {
        font-size: 1.6rem;
    }
    
    .cta-button-hero {
        font-size: 1.1rem;
        padding: 16px 25px;
    }
    
    .trust-badge {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .satisfaction-guarantee {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .offer-box {
        padding: 20px;
    }
    
    .current-price-large {
        font-size: 2rem;
    }
    
    .urgency-content h2 {
        font-size: 2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }
} 