/* Reset e estilos básicos */
* {
  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: 20px 0;
}

/* Header */
header {
  background-color: #1a6b3b;
  color: white;
  text-align: center;
  padding: 60px 0;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease-in-out;
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-in-out;
}

/* Seção do vídeo e CTA */
.video-section {
  padding: 60px 0;
  background-color: white;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 30px;
  animation: fadeInLeft 1s ease-in-out;
}

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

.cta-box {
  background-color: #f0f8ff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: fadeInRight 1s ease-in-out;
}

.price {
  margin: 20px 0;
  font-size: 1.2rem;
}

.old-price {
  text-decoration: line-through;
  color: #777;
}

.new-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e74c3c;
  margin: 10px 0;
}

.installments {
  color: #555;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  width: 100%;
  max-width: 400px;
  margin: 10px 0;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #c0392b;
  transform: scale(1.05);
}

.guarantee {
  color: #555;
  margin-top: 15px;
  font-size: 0.9rem;
}

.guarantee i {
  margin-right: 5px;
  color: #1a6b3b;
}

/* Seção de benefícios */
.benefits {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #1a6b3b;
}

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

.benefit-item {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.benefit-item i {
  font-size: 2.5rem;
  color: #1a6b3b;
  margin-bottom: 15px;
}

.benefit-item h3 {
  margin-bottom: 10px;
  color: #1a6b3b;
}

/* Depoimentos */
.testimonials {
  padding: 60px 0;
  background-color: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #1a6b3b;
}

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

.testimonial {
  display: none;
  text-align: center;
  padding: 30px;
  background-color: #f0f8ff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.author {
  font-weight: bold;
  color: #1a6b3b;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}

.slider-controls button {
  background-color: #1a6b3b;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-controls button:hover {
  background-color: #0e4a2a;
}

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

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #1a6b3b;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background-color: white;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

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

.faq-question i {
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background-color: white;
}

.faq-answer.show {
  padding: 20px;
  max-height: 200px;
}

/* Final CTA */
.final-cta {
  padding: 60px 0;
  text-align: center;
  background-color: #1a6b3b;
  color: white;
}

.final-cta h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.final-cta p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

footer p {
  margin-bottom: 10px;
}

/* Responsividade */
@media (min-width: 768px) {
  .video-section .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
  }
  
  .video-wrapper {
      margin-bottom: 0;
  }
  
  header h1 {
      font-size: 3rem;
  }
}
