body { font-family: 'Roboto', sans-serif; }
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }
.hidden { display: none !important; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Estilos para Formularios --- */
.form-label { font-weight: 500; color: #4b5563; }
.form-field {
  appearance: none;
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  color: #1f2937;
  width: 100%;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.form-field:focus {
  outline: none;
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.form-field::placeholder { color: #9ca3af; }

select.form-field {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* --- Estilos para Formulario Multi-Step --- */
.form-step { display: none; animation: fadeIn 0.5s; }
.form-step.active-step { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Estilos para Autocompletado --- */
.autoComplete_wrapper > ul {
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  max-height: 280px;
  overflow-y: auto;
  z-index: 10;
}
.autoComplete_wrapper > ul[hidden] { display: none; }
.autoComplete_wrapper > ul > li {
  padding: 0.75rem 1.25rem;
  color: #374151;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.autoComplete_wrapper > ul > li mark {
  background-color: transparent;
  color: #ef4444;
  font-weight: 700;
}
.autoComplete_wrapper > ul > li[aria-selected="true"] {
  background-color: #fee2e2;
}
#address-input[aria-expanded="true"], #email-input[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* --- Estilos para Vista Previa de Fotos --- */
.photo-preview-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
}
.delete-photo-btn {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: bold;
  cursor: pointer;
  opacity: 1;
  border: 1px solid white;
  transition: background-color 0.2s ease-in-out;
}
.delete-photo-btn:hover {
    background-color: rgba(220, 38, 38, 0.8);
}

/* --- Estilos para Modal de Éxito --- */
#success-modal.modal-visible {
  opacity: 1;
}
#success-modal.modal-visible > div {
  transform: scale(1);
}
#form-title{
  font-size: 22px;     /* 16–18px queda bien */
  line-height: 1.25;
  font-weight: 700;    /* o 700 si querés más marcado */
  margin: 6px 0 10px;
  text-decoration: underline;
}
.grecaptcha-badge { 
  visibility: hidden !important; 

}
.actualizar-app {
        position: relative; /* O absolute, dependiendo de tu layout general */
        min-height: 100vh; /* Para asegurar que tenga al menos el alto de la pantalla */
    }

    .boton-rojo-redondo {
        position: fixed; /* Fija el botón al viewport */
        bottom: 0;      /* Lo alinea al fondo de la pantalla */
        left: 0;        /* Lo alinea al borde izquierdo */
        /* Si quieres alinear a la derecha, usa: right: 0; */
        width: 100%;    /* O el ancho que desees */
        padding: 15px;  /* Espaciado interno */
        background-color: red; /* Color de fondo */
        color: white;   /* Color del texto */
        border: none;   /* Sin borde */
        cursor: pointer; /* Cursor de puntero al pasar por encima */
        text-align: center; /* Centra el texto dentro del botón */
    }