/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.1),
    rgba(0, 188, 212, 0.1),
    rgba(156, 39, 176, 0.1)
  );
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-teal)
  );
  opacity: 0.1;
  border-radius: 50%;
  top: -250px;
  right: -250px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.badge-free {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-teal)
  );
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 3rem;
  max-width: 700px; /* Largura ideal para caber 2 botões de ~300px + gap */
}

.cta-buttons > * {
  flex: 1 1 280px; /* Base menor para não quebrar em telas médias */
  max-width: 320px; /* Mantém os botões com tamanho consistente */
  min-height: 60px; /* Garante altura mínima sem exageros */
}

.btn {
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* Centraliza o texto horizontalmente */
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-whatsapp {
  background: var(--primary-green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-whatsapp:hover {
  background: #1faa52;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-email {
  background: var(--white);
  color: var(--dark-blue);
  border: 2px solid var(--dark-blue);
}

.btn-register {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-teal)
  );
  color: var(--white);
  /* border: 2px solid var(--primary-green); */
}

.btn-email:hover {
  background: var(--dark-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center; /* Centraliza no mobile */
    gap: 0.75rem;
  }

  .cta-buttons > * {
    flex: 0 0 auto; /* Remove o estiramento de altura no mobile */
    width: 100%;
    max-width: 100%;
    min-height: 50px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .logo img {
    height: 40px;
  }
}
