/* Resetando o estilo padrão */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

/* Estilo base do corpo */
body {
  background-color: #f7f7f7;
  color: #333;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

/* Cabeçalho Hero */
.hero {
  background: linear-gradient(135deg, #0066cc, #004a99);
  color: white;
  text-align: center;
  padding: 120px 20px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  animation: fadeIn 2s ease-in-out;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero .intro {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.cta-button {
  padding: 15px 30px;
  background-color: #ff9800;
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #f57c00;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Seção Oferta */
.oferta {
  background-color: #e0fbfc;
  padding: 70px 20px;
  text-align: center;
}

.oferta h2 {
  font-size: 2.8rem;
  color: #0066cc;
  margin-bottom: 20px;
  font-weight: 700;
}

.promo-text {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.cta-container h3 {
  font-size: 1.8rem;
  margin-top: 30px;
  color: #ff9800;
}

.cta-container p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}

/* Seção Benefícios */
.benefits {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.benefits h2 {
  font-size: 2.8rem;
  color: #0066cc;
  margin-bottom: 50px;
  font-weight: 700;
}

.benefit-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.benefit-item {
  background-color: #f7f7f7;
  padding: 40px;
  border-radius: 8px;
  width: 30%;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 40px;
  position: relative;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
}

.benefit-item h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #0066cc;
}

.benefit-item p {
  font-size: 1.2rem;
  color: #333;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 5px;
  background-color: #ff9800;
  border-radius: 10px;
}

/* Rodapé */
footer {
  background-color: #0066cc;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

footer a {
  color: #ff9800;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  .benefit-list {
    flex-direction: column;
    align-items: center;
  }

  .benefit-item {
    width: 80%;
    margin-bottom: 20px;
  }

  .cta-button {
    font-size: 1.2rem;
    padding: 12px 25px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero .intro {
    font-size: 1.2rem;
  }

  .oferta h2 {
    font-size: 2.4rem;
  }

  .promo-text {
    font-size: 1.4rem;
  }

  .cta-container h3 {
    font-size: 1.5rem;
  }
}

/* Animações */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efeito de animação em hover para CTA */
@keyframes hoverEffect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.cta-button:active {
  animation: hoverEffect 0.3s ease-in-out;
}