/* --- ESTILOS GERAIS --- */

/* Input padrão para formulários (Tailwind usa classes, mas é bom ter um base) */
.input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid #e5e7eb; /* gray-200 */
    border-radius: 0.75rem; /* rounded-xl */
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input:focus {
    outline: none;
    border-color: #0A72D8;
    box-shadow: 0 0 0 3px rgba(10, 114, 216, 0.2);
}

/* --- ESTILOS DO MODAL (POPUP) --- */
/* (Baseado no seu arquivo original) */

.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo um pouco mais escuro */
  display: none; /* Inicia escondido */
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 2.0rem 2.5rem; /* Mais padding */
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  border-radius: 12px; /* Mais arredondado */
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease-out;
}

.close-button {
  color: #aaa;
  position: absolute; /* Posição absoluta */
  top: 15px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* --- BOTÃO FLUTUANTE (WHATSAPP/MODAL) --- */
/* (Baseado no seu arquivo original) */

.fixed-whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #0A72D8; /* Cor azul da identidade */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, background-color 0.3s;
  z-index: 999;
}

.fixed-whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #085cb0; /* Tom mais escuro no hover */
}

/* Animações do Modal */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}