/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: var(--bg-main);
  color: #ffffff;
  line-height: 1.6;
}

/* HERO */
.hero {
  min-height: 90vh;
  background-image:
    linear-gradient(rgba(4,7,20,0.75), rgba(4,7,20,0.95)),
    url("../img/streaming-bg.jpg");
  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.logo-title img {
  max-width: 360px;
  width: 100%;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* BOTÕES */
.btn {
  background: var(--gradient-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn.outline {
  background: transparent;
  border: 2px solid var(--primary);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--gradient-hover);
}

/* SEÇÕES */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

section p {
  max-width: 750px;
  margin: auto;
  opacity: 0.9;
}

/* PLANOS */
.plans {
  background-color: var(--bg-secondary);
  border-radius: 12px;
  margin: 40px auto;
}

.plan {
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 8px;
  margin: 10px auto;
  max-width: 400px;
  font-weight: bold;
}

/* FAQ (COM ANIMAÇÃO SUAVE) */
.faq {
  text-align: left;
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: var(--card-bg);
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 1.6rem;
}

/* ANIMAÇÃO */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: var(--primary-dark);
  font-size: 0.95rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  opacity: 0.7;
  background-color: var(--primary-dark);
}

/* LINK FOOTER */
.footer-links a {
  color: var(--primary);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* RESPONSIVO */
@media (max-width: 600px) {

  header.hero {
    padding: 60px 20px;
  }

  .logo-title img {
    max-width: 260px;
  }

  section {
    padding: 40px 15px;
  }

  section h2 {
    font-size: 1.6rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .plan {
    max-width: 100%;
  }

}