* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

.header {
  background: #0b0b0b;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.nav {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-size: 26px;
}

.logo span {
  color: #f5b301;
}

.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.menu a:hover {
  color: #f5b301;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
}

.hero {
  min-height: 100vh;
  padding-top: 120px;
  background:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.85)),
    url("https://images.unsplash.com/photo-1571613316887-6f8d5cbf7ef7?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.tag {
  color: #f5b301;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  color: #ddd;
  font-size: 18px;
  max-width: 650px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn,
.btn-outline {
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn {
  background: #f5b301;
  color: #111;
}

.btn:hover {
  background: #ffcc33;
}

.btn-outline {
  border: 1px solid #f5b301;
  color: #f5b301;
}

.hero-card {
  background: rgba(17, 17, 17, 0.92);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(245, 179, 1, 0.3);
}

.hero-card h3 {
  color: #f5b301;
  margin-bottom: 20px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  margin-bottom: 12px;
}

.section,
.how,
.events,
.testimonials,
.faq,
.contact {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title p {
  color: #f5b301;
  font-weight: bold;
}

.section-title h2 {
  font-size: 36px;
  margin-top: 8px;
}

.cards,
.products,
.pricing,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card,
.product,
.price-card,
.step {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
}

.card h3,
.step h3,
.product h3,
.price-card h3 {
  color: #f5b301;
  margin-bottom: 12px;
}

.card p,
.step p,
.product p,
.price-card li {
  color: #ccc;
}

.how {
  background: #151515;
}

.step span {
  width: 45px;
  height: 45px;
  background: #f5b301;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 18px;
}

.product {
  padding: 0;
  overflow: hidden;
}

.product img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product h3,
.product p {
  padding: 0 22px;
}

.product h3 {
  margin-top: 20px;
}

.product p {
  padding-bottom: 25px;
}

.events {
  background:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.9)),
    url("https://images.unsplash.com/photo-1546622891-02c72c1537b6?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.events-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.events h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.events p {
  color: #ddd;
}

.event-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.event-list p {
  background: rgba(245, 179, 1, 0.12);
  border: 1px solid rgba(245, 179, 1, 0.3);
  padding: 18px;
  border-radius: 10px;
  color: #fff;
}

.price-card {
  text-align: center;
}

.price-card.destaque {
  border: 2px solid #f5b301;
  transform: scale(1.03);
}

.price {
  font-size: 26px;
  color: #fff;
  margin: 15px 0;
  font-weight: bold;
}

.price-card ul {
  list-style: none;
  margin: 25px 0;
}

.price-card li {
  margin-bottom: 10px;
}

.price-card a {
  background: #f5b301;
  color: #111;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
}

.testimonials {
  background: #151515;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #ccc;
}

.faq-item.active .faq-answer {
  display: block;
}

.contact {
  background: #f5b301;
  color: #111;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact p {
  margin-bottom: 25px;
  font-size: 18px;
}

.contact .btn {
  background: #111;
  color: #fff;
}

.social {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social a {
  color: #111;
  font-weight: bold;
  text-decoration: none;
}

footer {
  background: #0b0b0b;
  text-align: center;
  padding: 25px;
  color: #aaa;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0,0,0,.3);
}

@media (max-width: 900px) {
  .menu {
    display: none;
    position: absolute;
    top: 75px;
    right: 0;
    background: #0b0b0b;
    width: 100%;
    flex-direction: column;
    padding: 25px;
    text-align: center;
  }

  .menu.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero-content,
  .events-content {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 36px;
  }

  .cards,
  .products,
  .pricing,
  .steps {
    grid-template-columns: 1fr;
  }

  .price-card.destaque {
    transform: none;
  }

  .event-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .hero {
    padding-top: 110px;
  }

  .hero h2 {
    font-size: 30px;
  }

  .section-title h2,
  .events h2,
  .contact h2 {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn,
  .btn-outline {
    text-align: center;
  }
}