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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Cores principais */
.yellow-text { color: #FFD700; }
.green-text { color: #28a745; }
.white-text { color: #ffffff; }

/* Header Principal */
.main-header {
    text-align: center;
    padding: 40px 20px 60px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.offer-tag {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
    text-decoration: none; /* Remove sublinhado */
    cursor: pointer;
}

.offer-tag i {
    margin-right: 8px;
    animation: bounce 1s infinite;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #cccccc;
}

.benefits-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #28a745;
    font-weight: 600;
}

.benefit-icon i {
    font-size: 1.2rem;
}

/* Botões CTA */
.cta-button {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.6);
    background: linear-gradient(90deg, #20c997 0%, #28a745 100%);
}

.cta-button i {
    font-size: 1.2rem;
}

/* Seções */
section {
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #FFD700;
    line-height: 1.2;
}

/* Seção Por que escolher */
.why-choose {
    background: #0a0a0a;
}

.benefits-grid {
    display: grid;
    gap: 25px;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #2a2a3e;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFD700;
}

.benefit-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
}

.networking-card {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, #2a1a0e 0%, #3e2616 100%);
}

/* Seção de Depoimentos */
.testimonials {
    background: #0f0f1a;
    border-radius: 20px;
    margin: 40px 20px;
}

.rating {
    text-align: center;
    margin-bottom: 40px;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-right: 15px;
}

.rating-count {
    color: #888;
    font-size: 1rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #FFD700;
    position: relative;
}

.testimonial-card .stars {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    color: #ffffff;
}

.testimonial-author h4 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #888;
    margin-bottom: 15px;
}

.result-badge {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

/* Seção de Garantia */
.guarantee {
    padding: 40px 20px;
}

.guarantee-card {
    background: linear-gradient(135deg, #0d4f1c 0%, #28a745 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.guarantee-card i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    display: block;
}

.guarantee-card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.guarantee-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.9;
}

/* CTA Final */
.final-cta {
    background: #0a0a0a;
    text-align: center;
    padding: 60px 20px;
}

.final-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.final-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.4;
}

.final-cta-btn {
    max-width: 450px;
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Responsividade */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefits-icons {
        gap: 20px;
    }
    
    .benefit-icon {
        font-size: 0.9rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 16px 30px;
    }
    
    .final-title {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .offer-tag {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .benefits-icons {
        flex-direction: column;
        gap: 15px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .guarantee-card {
        padding: 30px 20px;
    }
}

