/* ============================
   BOTÃO DE RESERVA
============================= */
.icone_whatsapp_container {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.botao_reserva {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #25D366; /* Verde WhatsApp */
  color: #fff;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.botao_reserva:hover {
  background-color: #1ebe5d;
  transform: scale(1.03);
}

.icone_whatsapp_destinos {
  width: 24px;
  height: 24px;
}

/* ============================
   BOTÃO FLUTUANTE WHATSAPP
============================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}

/* ============================
   BOTÕES DE TOGGLE (PLUS/MINUS)
============================= */
.btn-destaque {
  box-shadow: 0 0 0 4px rgba(178, 6, 120, 0.4); /* Rosa Encanto com transparência */
  transform: scale(1.03);
  transition: all 0.3s ease;
}

.btn-destaque:hover {
  box-shadow: 0 0 0 6px rgba(178, 6, 120, 0.6);
  transform: scale(1.05);
}