/* Animação */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal - Estilo adaptado */
#modal-ofertaS {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Classe para esconder o modal */
#modal-ofertaS.esconderS {
  display: none !important;
}

/* Conteúdo do modal */
#modal-ofertaS .modal-oferta-content {
  padding: 2rem;
  width: 90%;
  height: 90%;
  overflow-y: auto;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
  background: white;
  animation: fadeSlideIn 0.4s ease forwards;
  opacity: 0; /* Evita aparecer antes da animação */
}

/* Botão de fechar */
#modal-ofertaS .modal-oferta-closeSS {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  z-index: 1;
}

/* Imagem no modal */
#modal-ofertaS .modal-oferta-body img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
}

/* Título */
#modal-ofertaS .modal-oferta-body h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

/* Nível */
#modal-ofertaS .modal-oferta-body span {
  font-weight: bold;
  color: #0077cc;
  margin-bottom: 0.5rem;
  display: block;
}

/* Descrição */
#modal-ofertaS .modal-oferta-body p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Botão PDF */
#modal-ofertaS .modal-oferta-body .modal-oferta-pdf {
  display: inline-block;
  background-color: #0077cc;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

#modal-ofertaS .modal-oferta-body .modal-oferta-pdf:hover {
  background-color: #005fa3;
}
.modal-oferta-body,
.modal-oferta-body>img,
.modal-oferta-body>h3,
.modal-oferta-body>span,
.modal-oferta-body>p,
.modal-oferta-body>a{
  background: none;
}