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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #222;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header e Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1598515214211-89d3c73ae83b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ff9800;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #eee;
}

.cta-timer {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.timer p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ff9800;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

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

.time-block span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    background-color: #ff9800;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #ddd;
}

.price-tag {
    margin-bottom: 25px;
}

.old-price {
    font-size: 1.1rem;
    color: #aaa;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.old-price span {
    font-weight: 600;
}

.new-price {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
}

.new-price span {
    color: #ff9800;
    font-size: 2.2rem;
}

.cta-button, .buy-button {
    display: inline-block;
    background-color: #ff9800;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover, .buy-button:hover {
    background-color: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Video Section */
.video-section {
    background-color: #fff;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.stars {
    color: #ff9800;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

/* Content Section */
.content-section {
    background-color: #fff;
}

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

.content-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid #ff9800;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-icon {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 20px;
}

.content-card p {
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1518492104633-130d0cc84637?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1074&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 40px;
}

.ebook-mockup img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-content {
    text-align: left;
    max-width: 500px;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ddd;
}

.guarantee {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    background-color: rgba(255, 152, 0, 0.1);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #ff9800;
}

.guarantee i {
    font-size: 2rem;
    color: #ff9800;
    margin-right: 15px;
}

.guarantee p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.final-price {
    margin-bottom: 25px;
}

.buy-button {
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding: 18px 40px;
}

.payment-methods {
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 1.8rem;
    color: #ddd;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .final-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .time-block span:first-child {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .testimonial-grid, .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .cta-timer {
        padding: 20px;
    }
    
    .new-price span {
        font-size: 1.8rem;
    }
    
    .cta-button, .buy-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
}