/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Barra de Contagem Regressiva */
.countdown-bar {
    background-color: #d9534f;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    font-size: 18px;
}

.countdown-bar p {
    margin: 0;
}

#countdown {
    font-size: 20px;
    font-weight: 700;
}

/* Cabeçalho */
.header {
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header h1 span {
    color: #f1c40f;
}

.subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 300;
}

.header-video {
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.header-video iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background-color: #f1c40f;
    color: #2c3e50;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* Seção de Benefícios */
.benefits {
    padding: 80px 0;
    text-align: center;
}

.benefits h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.benefit-item {
    padding: 30px 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item i {
    font-size: 40px;
    color: #9d50bb;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Seção de Depoimentos */
.testimonials {
    padding: 80px 0;
    background-color: #f1f1f1;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #9d50bb;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.rating {
    color: #f1c40f;
    margin-bottom: 10px;
}

.client-name {
    font-weight: bold;
    color: #2c3e50;
}

.testimonial-nav {
    margin-top: 30px;
}

.testimonial-nav button {
    background: none;
    border: none;
    font-size: 24px;
    color: #9d50bb;
    cursor: pointer;
    margin: 0 10px;
    transition: color 0.3s;
}

.testimonial-nav button:hover {
    color: #6e48aa;
}

/* Seção de Oferta */
.offer {
    padding: 80px 0;
    text-align: center;
}

.offer-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1c40f;
}

.offer h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.price-box {
    margin: 30px 0;
}

.old-price {
    font-size: 24px;
    text-decoration: line-through;
    color: #999;
}

.new-price {
    font-size: 32px;
    font-weight: bold;
    color: #d9534f;
    margin: 10px 0;
}

.cash-price {
    font-size: 20px;
    color: #5cb85c;
    font-weight: bold;
}

.bonuses {
    text-align: left;
    margin: 30px 0;
}

.bonuses h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.bonuses ul {
    list-style: none;
}

.bonuses li {
    margin-bottom: 10px;
    font-size: 18px;
}

.bonuses i {
    color: #5cb85c;
    margin-right: 10px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.security-badges img {
    height: 50px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: #f1f1f1;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background-color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-answer {
    padding: 20px;
    background-color: white;
    border-radius: 0 0 8px 8px;
    margin-top: 2px;
    display: none;
}

.faq-answer p {
    font-size: 16px;
}

/* Rodapé */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: #f1c40f;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}