/* BASE GERAL */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  background-color: #f1f3f6;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  scroll-behavior: smooth;
}

/* CORREÇÃO ANCORAGEM */
[id]::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}

/* HERO */
.hero {
  padding: 25px;
  background: radial-gradient(circle, #0d6efd, #002b80);
  color: #fff;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 20px auto;
  line-height: 1.6;
}

/* BOTÃO PADRÃO */
.btn-amarelo-br {
  background-color: #f8d90f;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s, background-color 0.3s;
  text-decoration: none;
  display: inline-block;
  min-height: 48px;
}
.btn-amarelo-br:hover {
  background-color: #ffe600;
  transform: scale(1.05);
}

/* BENEFÍCIOS */
.beneficios {
  padding: 20px 20px;
  background-color: #fff;
  text-align: center;
}
.beneficios h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #006400;
  margin-bottom: 40px;
}
.beneficios-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.beneficio-box {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1 1 280px;
  max-width: 320px;
}
.beneficio-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.beneficio-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #002b80;
}
.beneficio-box p {
  color: #444;
  font-size: 1rem;
}

/* CTA FINAL */
.cta {
  background-color: #002b80;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
.cta h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* PLANOS */
.valores {
  padding: 20px 20px;
  background-color: #fff;
}
.titulo-valores, .subtitulo-valores {
  text-align: center;
}
.titulo-valores {
  color: #002b80;
  font-weight: 700;
  font-size: 2rem;
}
.subtitulo-valores {
  max-width: 700px;
  margin: 20px auto;
  font-size: 1rem;
  color: #333;
}
.tag-topo {
  background-color: #f8d90f;
  color: #000;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

/* CARDS */
.planos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.card-plano {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  padding: 30px;
  max-width: 320px;
  flex: 1 1 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-plano h4 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0d6efd;
}
.card-plano .de {
  text-decoration: line-through;
  color: #888;
  font-size: 0.95rem;
}
.card-plano .por {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000;
  margin: 8px 0;
}
.card-plano small {
  color: #333;
  font-size: 0.95rem;
}
.card-plano a {
  margin-top: 20px;
  text-decoration: none;
}

/* DESTAQUE */
.card-plano.destaque {
  border: 2px solid #f8d90f;
  background-color: #fffbe6;
  box-shadow: 0 4px 12px rgba(248, 217, 15, 0.2);
}

/* MENU FIXO */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
.titulo-site a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #002b80;
  text-decoration: none;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.main-nav a {
  text-decoration: none;
  color: #002b80;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: #0d6efd;
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #002b80;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 16px;
  }

  .main-nav {
    display: none;
    width: 100%;
    background-color: #fff;
    padding: 12px 20px;
    border-top: 1px solid #ddd;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .main-nav a {
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
  }

  .nav-wrapper {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .card-plano {
    margin-bottom: 30px;
  }
}

/* MOBILE RESPONSIVO GERAL */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .cta h2 {
    font-size: 1.5rem;
  }
  .btn-amarelo-br {
    font-size: 1rem;
    padding: 12px 20px;
  }
}
