*
{
	margin:0;
	padding:0;
	box-sizing: border-box;
	font-family: 'Belleza', sans-serif;
}

.cuerpo{
	width: 99%;
	margin: 1%;
	overflow: hidden;
}


.contactUs{
	position:relative;
	width: 100%;
	padding: 1px 100px;
}

.contactUs .title{
	display:flex;
	justify-content:center;
	align-items:center;
	font-size: 2em;
}

.contactUs .title h2{
	color: #000;
	font-weight: 500;
}


.form{
	grid-area: form;
}

.info{
	grid-area: info;
}

.map{
	grid-area: map;
}

.contact{
	padding: 40px;
	background: #fff;
	box-shadow:0 5px 35px rgba(0,0,0,0.15);
}

.box{
	position: relative;
	display: grid;
	grid-template-columns: 2fr 4fr;
	grid-template-rows: 3fr 4fr;
	grid-template-areas: "form info"
	"form map";
	grid-gap: 10px;
	margin-top: 20px;
}

/*formu*/

.formBox{
	position: relative;
	width:100%;
}

.formBox .row50{
	display: flex;
	gap:20px;
}

.inputBox{
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
	width: 50%;
}

.formBox .row100 .inputBox{
	width: 100%;
}

.inputBox span{
	color: #18b7ff;
	margin-top: 10px;
	margin-bottom: 5px;
	font-weight: 500;
}

.inputBox input{
	padding: 10px;
	font-size: 1.1em;
	outline: none;
	border: 1px solid #333;
}

.inputBox textarea{
	padding: 10px;
	font-size: 1.1em;
	outline: none;
	border: 1px solid #333;
	resize: none;
	min-height: 220px;
	margin-bottom: 10px;
}

.inputBox input[type="submit"]{
	background: #777;
	color: #000;
	border: none;
	font-size: 1.1em;
	max-width: 120px;
	font-weight: 500;
	cursor: pointer;
	padding: 14px 15px;
}

.inputBox ::placeholder{
	color: #999;
}

/* infor */
/*
.info{
	background: #0e3959;
}*/

.info h3{
	color: #000;
}

.contenido{
	position: absolute;
	top: 200px;
	right: 50px;
	text-align: right;
	padding: 0px 50px 0px 0px;
	
}
.contenido h2{
	font-size: 50px;
}
.contenido h4{
	font-size: 20px;
}

.info .infoBox div{
	display: flex;
	align-items: center;
	margin-bottom: 10px;

}

.info .infoBox div span{
	min-width: 40px;
	height: 40px;
	color: #fff;
	background: #18b7ff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	border-radius: 50%;
	margin-right: 15px;
}

.info .infoBox div p{
	color: #000;
	font-size: 1.1em;
}

.info .infoBox div a{
	color: #000;
	text-decoration: none;
	font-size: 1.1em;
}

.sci li{
	list-style: none;
	margin-right: 15px;
}
.sci li a{
	color: #000;
	font-size: 2em;
	color: #ccc;
}

.map{
	padding: 0;
}
.map iframe{
	width: 100%;
	height: 100%;
}


/*banner*/

.bannerd{
	width: 100%;
	padding: 0 50px 60px 70px  ;
}



/*banner*/


@media screen and (max-width:921px){
	.contactUs{
		padding: 20px;
	}
	.box{
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-template-areas: "form"
		"info"
		"map";
	}
	.map{
		min-height: 300px;
	}

	.formBox .row50 {
		display: flex;
		gap:0;
		flex-direction: column;
	}
	.inputBox{
		display: flex;
		flex-direction: column;
		margin-bottom: 10px;
		width: 100%;
	}
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #3498db;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #000;
}

#loadingOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

