/* Fonte padrão */
body {
  font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .hero-cacimbo {
  background: #ffffff;
  padding: 80px 20px;
}

/* Container principal */
.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center; /* 🔥 garante alinhamento vertical perfeito */
  justify-content: space-between;
  gap: 60px;
}

/* TEXTO */
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 🔥 impede o texto de subir */
   transform: translateY(70px); /* 🔽 desce o texto suavemente */
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #222;
  margin-bottom: 25px;
}

.hero-text h1 span {
  color: #bb0206;
}

.hero-text p {
  font-size: 1.15rem;
  color: #555;
  max-width: 520px;
  line-height: 1.7;
}

/* IMAGEM */
.hero-image {
  flex: 1;
  height: 420px;
  border-radius: 16px;
  background-image: url("../imag/cacimbo.webp");
  background-size: cover;
  background-position: center;
  margin-top: 80px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .hero-container {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .hero-cacimbo {
    padding: 0;
    position: relative;
  }

  .hero-image {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }

  .hero-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 20px;
    align-items: center;
    text-align: center;
  }

  .hero-text h1 {
    color: #ffffff;
    font-size: 2.2rem;
  }

  .hero-text h1 span {
    color: #ff5fa2;
  }

  .hero-text p {
    color: #f1f1f1;
    font-size: 1.05rem;
    max-width: 90%;
  }
}

.modulos-cacimbo {
  padding: 90px 20px;
  background: #f6f8ff;
}

.modulos-container {
  max-width: 1200px;
  margin: auto;
}

.modulos-titulo {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  color: #0b30d8;
  margin-bottom: 70px;
}

/* GRID */
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* BLOCO */
.modulo {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.modulo:hover {
  transform: translateY(-10px);
}

/* IMAGEM */
.modulo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TEXTO */
.modulo h3 {
  font-size: 1.3rem;
  color: #0b30d8;
  margin: 25px 25px 10px;
}

.modulo p {
  font-size: 1rem;
  color: #555;
  margin: 0 25px 30px;
  line-height: 1.6;
}

/* TABLET */
@media (max-width: 992px) {
  .modulos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .modulos-grid {
    grid-template-columns: 1fr;
  }

  .modulos-titulo {
    font-size: 2.1rem;
  }
}