/* 💻 Desktop (padrão) */
.venha-conhecer {
  text-align: left;
  padding: 30px 7% 10px 7%;
  background-color: #f8f9fa;
  max-width: 100%;
}

.venha-conhecer h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #2A3D4A;
}

.venha-conhecer hr {
  width: 80px;
  height: 3px;
  background-color: #A9472E;
  border: none;
  margin: 0 0 10px 0;
}

.venha-conhecer p {
  white-space: nowrap;
  font-size: 1.2rem;
  color: #5D737E;
  max-width: 600px;
  font-weight: bold;
  margin: 0;
}

/* 📱 Tablets e telas médias (até 1024px) */
@media (max-width: 1024px) {
  .venha-conhecer h2 {
      font-size: 2.2rem;
  }

  .venha-conhecer p {
      font-size: 1.1rem;
  }
}

/* 📱 Mobile (até 768px) */
@media (max-width: 768px) {
  .venha-conhecer {
      padding: 25px 5% 10px 5%;
  }

  .venha-conhecer h2 {
      font-size: 2rem;
  }

  .venha-conhecer p {
      font-size: 1rem;
  }
}

/* 📱📱 Mobile pequeno (até 480px) */
@media (max-width: 480px) {
  .venha-conhecer {
      padding: 20px 5% 10px 5%;
  }

  .venha-conhecer h2 {
      font-size: 1.8rem;
  }

  .venha-conhecer hr {
      width: 60px;
      height: 2px;
      margin-bottom: 10px;
  }

  .venha-conhecer p {
      font-size: 0.95rem;
  }
}

/* Conteúdo das Categorias */
.categorias-imagens {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 5%;
  background-color: #f8f9fa;
  flex-wrap: wrap;
  align-items: flex-start;
}

.categoria-img {
  position: relative;
  width: 280px;
  height: 380px;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.categoria-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.categoria-img:hover img {
  transform: translateY(-10px);
  opacity: 0.9;
}

.categoria-legenda {
  position: absolute;
  right: 10px;
  bottom: 20px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Aleo', serif;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(20px);
  opacity: 0;
}

.categoria-img:hover .categoria-legenda {
  transform: translateY(0);
  opacity: 1;
}

/* Escadinha crescente */
.categoria-img:nth-child(1) {
  margin-top: 60px;
}

.categoria-img:nth-child(2) {
  margin-top: 20px;
}

.categoria-img:nth-child(3) {
  margin-top: 0px;
}

/* Responsivo */
@media (max-width: 768px) {
  .categorias-imagens {
      flex-direction: column;
      align-items: center;
  }

  .categoria-img {
      width: 90%;
      height: auto;
  }

  .categoria-legenda {
      font-size: 1.5rem;
      bottom: 10px;
      right: 6px;

      /* 🚀 Correção: deixar sempre visível no mobile */
      opacity: 1 !important;
      transform: translateY(0) !important;
      writing-mode: horizontal-tb;
      text-align: center;
      width: 100%;
      left: 0;
      right: 0;
  }

  .categoria-img:nth-child(1),
  .categoria-img:nth-child(2),
  .categoria-img:nth-child(3) {
      margin-top: 0;
  }
}
