* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #080808;
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(8, 8, 8, 0.95);
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: #f5c400;
}

.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  color: #ddd;
  text-decoration: none;
  font-weight: 600;
}

.menu a:hover {
  color: #f5c400;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
}

.hero {
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1571019613914-85f342c6a11e?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 78px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.55));
}

.hero-content {
  position: relative;
  max-width: 750px;
}

.tag {
  color: #f5c400;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 20px;
  color: #ddd;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
}

.primary {
  background: #f5c400;
  color: #080808;
}

.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-3px);
}

section {
  padding: 90px 0;
}

.sobre {
  background: #111;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.sobre h2,
.cta h2,
.contato h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.sobre p,
.cta p,
.contato p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 15px;
}

.sobre-img img {
  width: 100%;
  border-radius: 22px;
}

.stats {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stats div {
  background: #1c1c1c;
  padding: 22px;
  border-radius: 14px;
  min-width: 150px;
}

.stats strong {
  display: block;
  color: #f5c400;
  font-size: 32px;
}

.stats span {
  color: #ccc;
  font-size: 14px;
}

.center {
  text-align: center;
}

.center-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}

.estrutura-grid,
.team-grid,
.planos-grid,
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.estrutura-card,
.team-card,
.plano,
.depoimento {
  background: #151515;
  border: 1px solid #242424;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.estrutura-card:hover,
.team-card:hover,
.plano:hover,
.depoimento:hover {
  transform: translateY(-8px);
  border-color: #f5c400;
}

.estrutura-card img,
.team-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.estrutura-card h3,
.team-card h3 {
  font-size: 24px;
  padding: 22px 22px 8px;
}

.estrutura-card p,
.team-card p {
  color: #bbb;
  padding: 0 22px 25px;
  line-height: 1.6;
}

.equipe,
.depoimentos {
  background: #111;
}

.team-card {
  text-align: center;
}

.cta {
  background: #f5c400;
  color: #080808;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta p {
  color: #222;
}

.cta .primary {
  background: #080808;
  color: #fff;
}

.planos {
  background: #080808;
}

.plano {
  padding: 35px;
  position: relative;
}

.plano h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.price {
  display: block;
  color: #f5c400;
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 10px;
}

.plano p {
  color: #bbb;
  margin-bottom: 25px;
}

.plano ul {
  list-style: none;
  margin-bottom: 30px;
}

.plano li {
  color: #ddd;
  margin-bottom: 12px;
}

.plano li::before {
  content: "✓";
  color: #f5c400;
  margin-right: 8px;
  font-weight: bold;
}

.plano a {
  display: block;
  text-align: center;
  padding: 14px;
  background: #f5c400;
  color: #080808;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.destaque {
  border-color: #f5c400;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f5c400;
  color: #080808;
  padding: 7px 12px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 900;
}

.depoimento {
  padding: 30px;
}

.depoimento p {
  color: #ddd;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.depoimento strong {
  color: #f5c400;
}

.faq {
  background: #080808;
}

.faq-list {
  max-width: 850px;
  margin: auto;
}

.faq-item {
  background: #151515;
  border: 1px solid #242424;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: #bbb;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 150px;
}

.contato {
  background: #111;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 45px;
  align-items: center;
}

.contato i {
  color: #f5c400;
  margin-right: 8px;
}

.social {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.social a {
  width: 52px;
  height: 52px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social a i {
  color: #fff;
  margin: 0;
  font-size: 24px;
}

.insta {
  background: #e1306c;
}

.face {
  background: #1877f2;
}

.zap {
  background: #25d366;
}

.map iframe {
  width: 100%;
  height: 390px;
  border: none;
  border-radius: 18px;
}

.footer {
  background: #050505;
  text-align: center;
  padding: 25px;
  color: #888;
}

.whatsapp-fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
  z-index: 1001;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .menu {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #080808;
    flex-direction: column;
    text-align: center;
    padding: 25px 0;
    display: none;
  }

  .menu.active {
    display: flex;
  }

  .hero h1 {
    font-size: 40px;
  }

  .sobre-grid,
  .estrutura-grid,
  .team-grid,
  .planos-grid,
  .depoimentos-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .center-title,
  .sobre h2,
  .cta h2,
  .contato h2 {
    font-size: 32px;
  }
}