
.modal-home-link {
  text-align: center;
  margin-bottom: 16px;
}

.btn-modal-home {
  background: none;
  border: none;
   font-size: 40px !important;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  color: white
}






.modal-home-link{
  position: relative;
  z-index: 999999;   /* súper arriba */
  pointer-events: auto;
}

.btn-modal-home{
  position: relative;
  z-index: 999999;
  pointer-events: auto;

  outline: none;
  box-shadow: none;
}

.btn-modal-home:focus,
.btn-modal-home:active{
  outline: none !important;
  box-shadow: none !important;
}

/* .btn-modal-home:hover {
  text-decoration: underline;
} */


.btn-modal-home,
.btn-modal-home:focus,
.btn-modal-home:active {
  outline: none;
  box-shadow: none;
}









/************************************************/


.modal {
  display: none;              /* 🔑 nunca visible al cargar */
  position: fixed;
  inset: 0;
  z-index: 1000;

  background: #FF383C;

  justify-content: center;
  align-items: flex-start;

  pointer-events: auto;
  color: white;
}

.modal-content {
  position: relative;         /* 🔑 para el botón close */
  width: 100%;
  max-width: 532px;
  text-align: center;
   background-color: #FF383C;
  padding-top: 70px;
  padding-left: 40px;
  padding-right: 40px;
  border: 0px;
}

.modal-content select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'TitilliumWeb-Regular';
  color: #333;
  background: white;
  cursor: pointer;
}


.modal-content h3 {
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}


.form-row input,
.form-row input:focus,
.form-row input:active {
  outline: none;
  box-shadow: none;
}
.form-title{
  color: white;
  margin-bottom: 2rem;
}
.form-row-center {
  justify-content: center;
}

.modal-content input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-family: 'TitilliumWeb-Regular'
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}


.close,
.close:focus,
.close:active {
  outline: none;
  box-shadow: none;
}


.form-row-modal{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
.modal-content select {

  font-size: 16px;

}}