@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Syne&display=swap');
*{
box-sizing: border-box;
}
body {
	font-family: 'Syne', sans-serif;
	margin: 0;
}
/*----------------------------Estilos Base----------------------------*/
img {
	display: block;
	width: 100%;
	max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
}
.container {
	width: 100%;
	margin: auto;
}
.container--flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.column {
	width: 100%;
}
/*------------------------Boton Flotant WhatsApp-----------------------*/
.btn-wsp {
	position: fixed;
	width: 55px;
	height: 55px;
	line-height: 68px;
	bottom: 110px;
	right: 31px;
	background: #0df053;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	font-size: 2.3em;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.5);
	z-index: 2000;
}
.btn-wsp:hover {
	text-decoration: none;
	color: #0df053;
	background: #fff;
}
/*----------------------------Estilos Header----------------------------*/
.main-header {
	width: 100%;
	text-align: left;
}
.container .container--flex {
	position: relative;
	bottom: 0;
	left: 0;
}
.logo {
	width: 348px;
	height: 87px;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: 6px;
	position:static;
	top: 0;
	left: 0;
}
.cita__link {
    text-decoration: none;
    background-image: -webkit-linear-gradient(180deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
    background-image: -moz-linear-gradient(180deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
    background-image: -o-linear-gradient(180deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
    background-image: linear-gradient(270deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
    color: white;
    margin: 0 ;
    padding: 10px;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,1.00);
}
.mainheader__contactInfo__whatsapp {
	background-color: rgba(29,202,211,1.00);
	color: white;
	margin: 0 auto;
	padding: 10px;
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
	text-shadow: 1px 1px 1px rgba(0,0,0,1.00);
	text-decoration: none;
}
.main-header [class*="icon-"]:before {
	position: relative;
	top: 2px;
	right: 5px;
	
}

/*----------------------------Estilos del Menú----------------------------*/

.main-nav {
	width: 100%;
	position: relative;
	z-index: 2000;
	padding: 10px;
	padding-right: 32px;
}
.icon-menu {
	display: block;
	background: rgba(247,247,247,0.80);
	color: rgba(29,202,211,0.85);
	border: 2px solid rgba(29,202,211,0.85);
	border-radius: 5px;
	width: 40px;
	height: 40px;
	line-height: 45px;
	text-align: center;
	margin-left: 3%;
	cursor: pointer;
	font-size: 1.5em;
	-webkit-box-shadow: 1px 1px 1px 1px rgba(29,202,211,0.85);
	box-shadow: 1px 1px 1px 1px rgba(123,134,140,1.00);
}

.social-icon {
	display: flex;
	justify-content: space-between;
}
.social-icon [class*="icon-"] {
	color: rgba(29,202,211,0.80);
	margin-left: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.3em;
	width: 35px;
	height: 35px;
	background: white;
	border-radius: 50%;/*Comando para redondear los iconos de las redes sociales*/
	-webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.60);
	box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.60);
}
.social-icon__link {
	text-decoration: none;
}
.menu {
	/*Comando para desaparecer o aparecerel menu desplegable (display: none;)*/
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	background: rgba(29,202,211,0.70);
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	height: 0;/*Comando para animar el menú*/
	overflow: hidden;/*Comando para animar el menú*/
	transition: height .3s linear;/*Comando para animar el menú*/
}
.menu__link {
	display: block;
	padding: 15px;
	color: white;
	text-decoration: none;
}
.menu__link:hover {
	background: rgba(123,134,140,0.70);
}
.menu__link--select {
	background: rgba(123,134,140,0.70);
}
.mostrar {/*Comando para enlazar el menú* con js*/
	height: 196px;/*Comando para tamaño de menu para poder animarlo*/
}

/*----------------------------Estilos del Banner----------------------------*/

.banner {
	margin-top: -60px;
	position: relative;
}
.banner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(29,202,211,0.00);
	z-index: 1000;
	top: 0;
}
.banner__img {
	width: 100%;
	height: 400px;
	object-fit: cover;/*Comando para q no se estire verticalmente la imagen*/
}
.banner__content {
	width: 90%;
	color: white;
	text-align: center;
	position: absolute;
	z-index: 1500;/*Comando para q un objeto pase atras o adelante, dependiendo del valor*/
	top: 80%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-size: 1.5em;
	font-weight: bold;
	text-shadow: 2px 2px 2px rgba(0,0,0,1.00);
}

/*----------------------------Estilos Principales----------------------------*/

/*---------------Ortodoncia---------------*/

.group--color .container {
	background: rgba(29,202,211,1.00);
	color: white;
	padding: 35px;
	text-align: center;
}
.main__title {
	text-align: center;
	margin: 10px;
	font-size: 1.8em;
	font-family: 'Alata', sans-serif;
	font-weight: 100;
	color: rgba(123,134,140,1.00);
	text-shadow: 2px 2px 2px rgba(0,0,0,0.80);
}
/*---------------Ubicación---------------*/
.column__txt {
	text-align: justify;
	padding: 2%;
	font-size: 1em;
}
.column__title {
	text-align: center;
	font-family: 'Alata', sans-serif;
	font-size: 1.5em;
	color: white;
	text-shadow: 0px 0px 6px rgba(0,0,0,1.00);
}
.main__about__description .column:nth-child(2) {
	padding: 10px;
	background: rgba(29,202,211,0.50);
}
.btn {
	display: block;
	text-align: center;
	text-decoration: none;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.80);
	width: 120px;
	background: rgba(29,202,211,1.00);
	color: white;
	padding: 7px;
	margin: 10px auto;
	border-radius: 7px;
	box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.40);
}
/*---------------Servicios---------------*/
.group__title {
	text-align: center;
	font-family: 'Alata', sans-serif;
	font-size: 1.5em;
	margin: 30px;
	color: rgba(123,134,140,1.00);
	text-shadow: 0px 0px 2px rgba(29,202,211,1.00);
}
.servicios .column {
	margin-bottom: 10px;
	text-align: center;
}
.servicios__img {
	/*margin: auto;*/
	width: 100%;
	height: 250px;
	object-fit: cover;
	/*cursor: pointer;*/
	transition: all 0.5s;
}
.servicios__img:hover {
	transform: scale(1.02);
}
.servicios__title {
	text-align: center;
	font-size: 1.1em;
	padding-top: 10px;
	padding-bottom: 10px;
	color: rgba(123,134,140,1.00)
}
.servicios__price {
}

/*----------------------------Estilos del Footer----------------------------*/

.main-footer {
	color: white;
	padding: 40px;
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 0.8em;
	background: rgba(35,39,40,1.00)
}
.copy {
	text-align: left;
	/*margin: auto;*/
	margin-top: 62px;
	color: rgba(29,202,211,1.00)
}
.main-footer [class*="icon-"] {
	color: white;
	text-decoration: none;
}

.main-footer [class*="icon-"]:before {
	position: relative;
	top: 3px;
	right: 5px;
}
.column__titles {
	font-family: 'Alata', sans-serif;
	font-size: 1.2em;
	color: rgba(29,202,211,1.00);
	text-shadow: 0px 0px 2px rgba(0,0,0,0.80);
}
.wc {
	display: inline-block;
	width: 41px;
	font-size: 8.5px;
	text-align: center;
}
/*----------------------------Estilos del RESPONSIVE----------------------------*/

@media screen and (min-width:640px) {
	/*.main-header__contactInfo {
		text-align:right;
	}
	.mainheader__contactInfo__whatsapp {
		background: none;
		text-align:right;
	}*/
	.logo {
	margin-left: 20px;
	}
	.main-nav {
	background: rgba(29,202,211,0.30);
	padding-right: 32px;
	}
	.banner__img {
	height: 600px;
	}
	.banner__content {
	font-size: 2em;
	}
	/*.column--50 {
		width: 49%;
	}*/
	.main-footer .container--flex {
	align-items: flex-start;
	}
	.main-footer .container--flex {
	align-items: flex-start;
	}
	.column--50-25 {
	width: 49%;
	}
	.column--33 {
	width: 32%;
	}
}

@media screen and (min-width:900px) {
	.logo {
	width: 400px;
	height: 100px;
	margin-left: 20px;
	}
	.main-header__contactInfo {
	text-align: right;
	/*}
	.cita {
	text-align: right;
	margin: 5px;
	padding: 10px;
	}
	.cita__link {
    text-decoration: none;
    background-image: -webkit-linear-gradient(0deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
    background-image: -moz-linear-gradient(0deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
    background-image: -o-linear-gradient(0deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
    background-image: linear-gradient(90deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
    color: white;
    margin: 5px auto;
    padding-right: 10px;
    text-align: left;
    font-size: 1.3em;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,1.00);*/	
	}
	.mainheader__contactInfo__whatsapp {
	/*background: rgba(29,202,211,0.30);*/
	text-align: right;
	font-size: 1.3em;
	padding-right: 35px;
	background-image: -webkit-linear-gradient(0deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
	background-image: -moz-linear-gradient(0deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
	background-image: -o-linear-gradient(0deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
	background-image: linear-gradient(90deg,rgba(255,255,255,1.00) 6.74%,rgba(29,202,211,0.70) 54.40%);
	}
	.main-nav {
	background: rgba(29,202,211,0.30);
	padding-right: 35px;
	padding-left: 5px;
	}
	.menu {
	font-size: 1.1em;
	}
	.main__title {
	font-size: 2.5em;
	}
	.column__txt {
	font-size: 1.2em;
	line-height: 30px
	}
	.banner__img {
	height: 450px;
	}
	.banner__content {
	font-size: 2em;
	}
	.column--50 {
	width: 49%;
	}
	.column--50-25 {
	width: 49%;
	}
	.column--33 {
	width: 32%;
	}
}

@media screen and (min-width:1080px) {
	.logo {
	width: 440px;
	height: 110px;
	margin-left: 20px;
	}
	.main-header__contactInfo {
	text-align:right;
	}
	.mainheader__contactInfo__whatsapp {
	/*background-color: rgba(29,202,211,0.30);*/
	text-align: right;
	font-size: 1.8em;
	padding-right: 40px;
	background-image: -webkit-linear-gradient(0deg,rgba(255,255,255,1.00) 0%,rgba(29,202,211,1.00) 32.12%);
	background-image: -moz-linear-gradient(0deg,rgba(255,255,255,1.00) 0%,rgba(29,202,211,1.00) 32.12%);
	background-image: -o-linear-gradient(0deg,rgba(255,255,255,1.00) 0%,rgba(29,202,211,1.00) 32.12%);
	background-image: linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(29,202,211,1.00) 32.12%);
	}
	.main-nav {
	/*background: rgba(29,202,211,0.30);*/
	padding-right: 35px;
	padding-left: 30px;
	}
	.icon-menu {
	display:  none;
	}
	.menu {
	font-size: 1.2em;
	display: flex;
	height: auto;
	position: static;
	width: auto;
	}
	.menu__link {
	padding: 9px;
	}
	.mostrar {
	height: 212px;
	}
	.main__title {
	font-size: 3.5em;
	}
	.column__title {
	font-size: 3em;
	}
	.column__txt {
	font-size: 1.3em;
	line-height: 35px
	}
	.banner__content {
	font-size: 2.9em
	}
	.banner__img {
	height: 940px;
	}
	.banner__content {
	font-size: 2em;
	}
	.btn {
	width: 150px;
	padding: 12px;
	margin: 10px auto;
	border-radius: 7px;
	font-size: 1.2em;
	}
	.group__title {
	font-size: 3em;
	}
	.servicios__img {
	/*margin: auto;*/
	width: 100%;
	height: 360px;
	object-fit: cover;
	}
	.servicios__title {
	font-size: 1.2em
	}
	.column__titles {
	font-size: 2em;
	}
	.copy {
	font-size: 1.2em;
	}
	.column--50 {
	width: 49%;
	}
	.column--50-25 {
	width: 25%;
	}
	.column--33 {
	width: 32%;
	}
}
