/* Modal geral */
#modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Conteúdo da modal */
#modal-content {
  position: relative;
  width: 800px;
  max-width: 95%;
  height: auto;
  margin: 50px auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: transparent;
  padding: 0;
}

/* Imagem dentro da modal */
#modal-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Container dos botões dentro da imagem */
.modal-buttons {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Botão: Conhecer Agora */
.btn-conhecer-agora {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  gap: 8px;
  width: 200px;
  height: 56px;
  background-color: #D60B52;
  color: #FFFFFF;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.4px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

/* Botão: Conhecer Depois */
.btn-conhecer-depois {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  gap: 8px;
  width: 200px;
  height: 56px;
  background-color: #151515;
  color: #D60B52;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.4px;
  border: 1px solid #D60B52;
  border-radius: 12px;
  cursor: pointer;
}

/* Botão de fechar (X) */
#modal .close {
  position: absolute;
  top: 12px;
  right: 16px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}


