/* HERO */
.hero {
  position: relative;
  padding-top: 80px; /* altura da navbar */
  height: 95vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  z-index: -1;
}

.hero-content {
  max-width: 950px;
  color: var(--white);
  padding: 0 2rem;
  animation: fadeUp 1.2s forwards;
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.3rem;
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 2.2rem;
  opacity: 0.95;
}

.cta-button {
  padding: 1rem 2.6rem;
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

/* BENEFÍCIOS */
.benefits {
  padding: 85px 20px;
  background: #f8fafc;
  text-align: center;
}

.benefits h2 {
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
}

.benefit-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: var(--white);
  padding: 2.3rem;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* DEPOIMENTOS */
.testimonials {
  padding: 80px 20px;
  background: #f8f9fc;
}

.testimonials h2 {
  font-size: 2.4rem;
  margin-bottom: 45px;
}

.testimonial-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* CTA FINAL */
.cta-final {
  background: var(--primary-color);
  padding: 75px 20px;
  text-align: center;
  color: var(--white);
}

/* ANIMAÇÃO */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

html, body {
  margin: 0;
  padding: 0;
}
