/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner Hero */
.hero-banner {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 40px 0;
    color: white;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.banner-image, .banner-text {
    flex: 1;
    min-width: 300px;
}

.banner-img, .content-img, .benefits-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.banner-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.price-highlight {
    font-size: 3rem;
    color: #ffcc00;
    font-weight: bold;
    margin: 20px 0;
}

/* Seção de Conteúdo */
.content-section {
    padding: 60px 0;
    background: white;
}

.content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.content-image, .content-text {
    flex: 1;
    min-width: 300px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    background: #f8f9fa;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
}

.bonus-box {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

/* Seção de Benefícios */
.benefits-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefits-text, .benefits-image {
    flex: 1;
    min-width: 300px;
}

.features-highlight {
    background: #e74c3c;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.cta-box {
    text-align: center;
    margin-top: 30px;
}

/* Seção de Compra */
.purchase-section {
    padding: 60px 0;
    background: white;
}

.purchase-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
}

.price {
    font-size: 4rem;
    color: #e74c3c;
    font-weight: bold;
    margin: 10px 0;
}

.guarantee {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Botões */
.btn-buy, .btn-buy-large {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
    display: inline-block;
    text-decoration: none;
}

.btn-buy-large {
    padding: 20px 60px;
    font-size: 1.5rem;
}

.btn-buy:hover, .btn-buy-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.urgency-elements {
    margin-top: 20px;
    color: #e74c3c;
    font-weight: bold;
}

/* Rodapé */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .banner-content, .content-grid, .benefits-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text h1 {
        font-size: 2rem;
    }
    
    .price-highlight, .price {
        font-size: 2.5rem;
    }
    
    .banner-img, .content-img, .benefits-img {
        max-width: 100%;
    }
}
