.modal-custom {
	display: none;
	position: fixed;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	z-index: 9999;
	padding: 60px 50px;
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	width: 90%;
	flex-direction: row;
	max-width: 730px;
	align-items: center;
	gap: 20px;
}

.modal-custom form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

.modal-custom input[type="text"],.modal-custom input[type="email"],.modal-custom input[type="tel"] {
	padding: 10px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 6px;
	width:100%;
}

.accept-btn {
  background-color: #03B484;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  
  font-family: 'Mont-regular';
}

.modal-step1 {
	width: 85%;
	margin-top: 30px;
}

.modal-step2 {
	width: 65%;
	margin-top: 15px;
}

.close-btn {
	position: absolute;
	top: 10px; right: 10px;
	background: #03B484;
	color: white;
	border: none;
	border-radius: 50%;
	width: 35px;
  	height: 35px;
  	font-size: 20px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.close-btn:hover,.accept-btn:hover {
	background-color: #029d73;
}

.col-img-modal1{
	display: flex;
    align-items: center;
}

#modalContainer::before {
	content: '';
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.4);
	z-index: 9998;
	display: none;
}

#modalContainer.show::before {
	display: block;
}

/* Mostrar el modal como flex cuando se active */
#modalContainer.show #modal1 {
  display: flex;
}

/*MODAL 1*/
.titulo_modal1{
	font-size: 24px;
	margin-bottom: 18px;
	font-family:'Mont-regular';
	color:#03B484;
}
.texto_modal1{
	display: flex;
	flex-direction:column;
	line-height: 40px;
}
.texto_descargar{
	font-size: 34px;
	font-family:'Mont-regular';
	color:#03B484;
}
.texto_brochure{
	font-size: 34px;
	font-family:'Mont-bold';
	color:#03B484;
}
/*MODAL 2*/
.texto_modal2_1{
	font-size: 16px;
	font-family:'Mont-regular';
	color:black;
}
.texto_modal2_2{
	font-size: 16px;
	font-family:'Mont-bold';
	color:black;
}
.campos_oblig_modal2{
	font-size: 12px;
	margin-top:25px;
	margin-bottom: 10px;
	font-family:'Mont-regular';
	color:black;
}

/*MODEL 3*/
.texto_modal3{
	display:flex;
	flex-direction: column;
	align-items: center;
}
.texto1_modal3{
	font-size: 34px;
	font-family:'Mont-bold';
	color:#03B484;
	margin-top:24px;
}
.texto2_modal3{
	font-size: 20px;
	font-family:'Mont-regular';
	color:#03B484;
	text-align: center;
	margin-top: 15px;
}
.texto3_modal3{
font-size: 30px;font-family:'Mont-bold';color:#03B484;margin-top: 20px;
}

