/* Reset e Fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.btn-nav {
    background: linear-gradient(to right, #e74c3c, #f39c12);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, #fff6f6, #ffebeb);
    text-align: center;
    padding: 80px 5%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tag {
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background: linear-gradient(to right, #e74c3c, #f39c12);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 40px;
    transition: transform 0.3s;
}

.btn:hover {
    transform: translateY(-5px);
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits i {
    font-size: 24px;
    color: #e74c3c;
}

/* Seção Discover */
.discover {
    padding: 80px 5%;
    text-align: center;
    background: white;
}

.discover h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 40px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e74c3c;
}

/* Seção Depoimentos */
.testimonials {
    padding: 80px 5%;
    text-align: center;
    background: #f9f9f9;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #f1c40f;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial span {
    font-weight: 600;
    color: #e74c3c;
}

/* Seção Oferta */
.offer {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(135deg, #fff6f6, #ffebeb);
}

.offer h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.price-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-old {
    font-size: 18px;
    color: #777;
    margin-bottom: 10px;
}

.price-new {
    font-size: 36px;
    color: #e74c3c;
    margin-bottom: 30px;
}

.price-new strong {
    font-size: 48px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-card li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card i {
    color: #2ecc71;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.trust-badges img {
    height: 50px;
}

/* Seção Garantia */
.guarantee {
    padding: 60px 5%;
    text-align: center;
    background: #2ecc71;
    color: white;
}

.guarantee h2 {
    font-size: 32px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 40px 5%;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content .logo {
    color: white;
    margin-bottom: 20px;
}

.contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .benefits {
        flex-direction: column;
        gap: 15px;
    }

    .cards, .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .card, .testimonial {
        width: 100%;
    }

    .contact {
        flex-direction: column;
        gap: 15px;
    }
}

/* ========== MOBILE (Vertical) ========== */
@media (max-width: 768px) {
  /* Header */
  header {
    padding: 15px 5%;
    flex-direction: column;
    gap: 15px;
  }

  .btn-nav {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  /* Hero Section */
  .hero {
    padding: 60px 5%;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }

  .benefits {
    flex-direction: column;
    gap: 15px;
  }

  /* Cards Section */
  .discover {
    padding: 50px 5%;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    margin-bottom: 20px;
  }

  /* Testimonials */
  .testimonial-cards {
    flex-direction: column;
  }

  .testimonial {
    width: 100%;
  }

  /* Offer Section */
  .price-card {
    padding: 25px;
  }

  .price-new strong {
    font-size: 36px;
  }

  /* Footer */
  .contact {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
    .testimonial-cards {
        gap: 20px; /* Espaço entre cards */
    }
    
    .testimonial {
        padding: 20px; /* Reduz padding em mobile */
    }
}

.price-new .installment {
    font-size: 18px;
    font-weight: normal;
    display: block;
    margin-top: 8px;
    color: #666;
}

.price-new .installment small {
    font-size: 14px;
    color: #2ecc71;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .price-new .installment {
        font-size: 16px;
    }
}

/* Seção do Vídeo */
.video-section {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.video-section .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    color: #e74c3c;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin: 0 auto 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    color: #666;
    font-size: 16px;
    font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
}

/* Seção FAQ */
.faq {
    padding: 60px 5%;
    background: #fff;
    text-align: center;
}

.faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #e74c3c;
}

.faq-item {
    margin-bottom: 20px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 20px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #f9f9f9;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background: #fff;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.faq-answer p {
    margin: 0;
    text-align: justify;
}

/* FAQ responsivo */
@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}