body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fff8f4;
  color: #333;
}

h1 {
  font-family: 'DM Serif Display', serif;
  color: #ffafc3;
}

h2 {
  font-family: 'DM Serif Display', serif;
  color: #bd6b7f;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header com imagem de fundo e texto centralizado */
.hero {
  background: url("img/capa.jpg") center center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* escurece um pouco pra destacar o texto */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta {
  background: #a14f63;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.cta:hover {
  background: #8a4054;
}

.sobre, .publico, .conteudo, .cta-final {
  background: #fff;
  padding: 3rem 0;
  text-align: center;
}

.publico ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

.publico li {
  margin: 1rem 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  text-align: left;
  padding: 2rem 0;
}

.grid div {
  background: #fff1f4;
  padding: 1rem;
  border-left: 4px solid #a14f63;
  border-radius: 4px;
}

footer {
  background: #fddde2;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Botões sociais */
.btn-social {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

.btn-social.whatsapp {
  background-color: #25D366;
}

.btn-social.instagram {
  background-color: #E1306C;
}

.btn-social:hover {
  filter: brightness(1.1);
}

/* Fundo personalizado (caso queira usar depois) */
.secao-com-fundo {
  background: url("img/background.png") center center/cover no-repeat;
  padding: 4rem 2rem;
  color: #fff;
  position: relative;
}

.secao-com-fundo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.secao-com-fundo .container {
  position: relative;
  z-index: 2;
}

/* 
.fade-in {
  opacity: 1;
  transition: opacity 1s ease;
}*/

/* Estilo extra para seção bônus */
.bonus ul li {
  margin: 0.75rem 0;
  font-size: 1.1rem;
}

/* Oferta flutuante no topo do header */
.oferta-flutuante {
  background-color: #a9455e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  display: inline-block;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease forwards;
}

/* Animação da oferta */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo opcional */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .cta {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

  .grid {
    text-align: center;
  }
}
