@charset "utf-8";

* {
	margin: 0;
	padding:0;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding: 120px;
	--negro: #462b16;
	--negro2: #71533a;
	--blanco: #fdffff;
	--beige: #E9DEC8;
	--rosa: #FDC2A4;
	--gris: #d9d9d9;
	--grisClaro: #f5f5f5;
	--cafe: #85542b;
	--cafeClaro: #CDBFB4;
	--crema: #fffcf9;
	--crema2: #f4efeb;
	--crema2Fuerte: #cdbfb4;
	
	--azul: #58BEBD;
	--azulFuerte: #398a80;
	--azulClaro: #E5FFFC;
	--azulBlanco: #F6FFFE;
	
	--verdeWhats: #12d25b;
	
	background: #58BEBD;
	
	--width: calc(100% - 48px);
	--maxWidth: 1230px;
}

body {
	font-family: 'Instrument Light';
	font-weight: normal;
	color: var(--negro);
	background: var(--blanco);
	line-height:1.4;
	overflow-x:hidden !important;
}

h1 {
	line-height:1;
	font-family: 'Instrument';
	font-weight: normal;
	font-size: 3.9em;
}
h2 {
	font-family: 'Instrument';
	font-weight: normal;
	font-size: 1.8em;
	color: var(--dorado);
	line-height: 1;
}
h3 {
	font-family: 'Instrument';
	font-weight: normal;
	font-size: 2.4em;
	line-height: 1;
}
h4 {
	font-size: 1.5em;
	line-height: 1;
}
h1,
h2,
h3 {
	text-wrap: balance;
}
a {
	font-size: 1em;
    text-decoration:none;
	color: var(--negro);
	cursor: pointer;
	transition: all 0.6s ease-in-out;
}
a:active {
	outline: none;
    border: none;
}
button {
	font-family: 'Instrument';
	font-size:1.2em;
	border-radius: 0 !important;
	cursor: pointer !important;
	border: none;
	transition: all 0.6s ease-in-out;
}
button:active {
    outline: none;
    border: none;
}
button:hover {
	cursor:pointer;
}
button:focus,
input:focus,
textarea:focus {
	outline:none;
}
p, ul {
	font-size:1em;
}
p b,
p em {
	font-family: 'Instrument Bold';
	font-weight: normal;
}

::selection {
	color: var(--blanco);
	background: var(--rosa);
}
::-moz-selection {
	color: var(--blanco);
	background: var(--rosa);
}

/* --------------------------- full --------------------------- */

#superContainer {
    height: 100%;
    position: relative;
	-ms-touch-action: none; 
}
.section {
    position: relative;
}
.slide, .slidesContainer {
    height: 100% !important;
    display: block;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}
.tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height:100%;
}
#fullpage {
	overflow:hidden;
}

.section,
.section .slide,
.section .tableCell{
    height: auto !important;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}

/* --------------------------- css --------------------------- */

header {
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	transition: all ease-in-out 0.9s;
	padding:30px 0 0;
	z-index: 99;
}
header.active {
	padding:9px 0 0;
}
header .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding:12px 27px;
	background: var(--blanco);
	border-radius: 60px;
	box-shadow: 3px 3px 3px rgba(70,43,22,0.2);
}

header .inter div img {
	width: 150px;
	margin: 3px 0 0;
	transition: all 0.6s ease-in-out;
}
header .inter .menu {
	width: calc(100% - 198px);
	position: relative;
	display: flex;
	gap: 30px;
	justify-content: flex-end;
	align-items: center;
}
header .inter .menu a {
	font-family: 'Instrument Light';
	font-size: 0.84em;
	color: var(--negro);
	position: relative;
	text-transform: capitalize;
}
header .inter .menu a::after {
	content: '';
	width: 0;
	height:1px;
	background: var(--azul);
	position: absolute;
	left: 50%;
	bottom:-3px;
	transform: translateX(-50%);
	transition: all 0.6s ease-in-out;
	z-index: 1;
}
header .inter .menu a:hover::after,
header .inter .menu a.active::after {
	width: 100%;
}
header .inter .menu a:hover,
header .inter .menu a.active {
	color: var(--azul);
}

header .inter form {
	width: 165px;
	height:30px;
	position: relative;
}
header .inter form input {
	width: 120px;
	color: var(--azul);
	background: var(--azulClaro);
	border: solid 1px var(--azulClaro);
	border-radius: 45px;
	padding:9px 24px;
	position: absolute;
	right: 0;
	bottom:-2px;
	transition: all 0.6s ease-in-out;
	z-index: 6;
}
header .inter form input::placeholder {
	color: var(--azul);
	opacity: 1;
}
header .inter form input:focus {
	width: 165px;
	padding:9px 18px;
	border-color: var(--azul);
}
header .inter form button {
	position: absolute;
	top: 50%;
	right:21px;
	transform: translateY(-50%);
	color: var(--azul);
	background: none;
	transition: all 0.6s ease-in-out;
	z-index: 7;
}
header .inter form input:focus ~ button {
	right: 15px;
}
/* autocomplete */
.autocomplete-items {
	width: 165px;
    position: absolute;
    border: none;
    background: rgba(70,43,22,0.7);
    z-index: 3;
    top: calc(100% + 2px);
    left: 0;
    right:0;
	border-radius: 0 0 18px 18px;
}
.autocomplete-items::before {
	content: '';
	width: 165px;
	height:27px;
	background: rgba(70,43,22,0.7);
	position: absolute;
	top: 0;
	left:0;
	transform: translateY(-100%);
	border-radius: 18px 18px 0 0;
	z-index: -1;
}
.autocomplete-items div {
	font-size: 0.9em;
    padding:7px 9px;
    cursor: pointer;
    background-color: none;
    display: block;
	color: var(--blanco);
}
.autocomplete-items div:last-child {
	border-radius: 0  0 18px 18px;
}
.autocomplete-items div strong {
	color: var(--azul);
	font-weight: inherit !important;
}
.autocomplete-items div:hover {
    background-color: var(--negro); 
}
.autocomplete-active {
    background-color: var(--negro) !important;
}

header .inter ul {
	list-style-type: none;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	gap: 30px;
}

.btn-menu {
	width: 42px;
	height:42px;
	background: none;
	position: relative;
	display: none;
}
.btn-menu span {
	width: 21px;
	height:2px;
	background: var(--negro);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease-in-out;
}
.btn-menu span::before,
.btn-menu span::after {
	content: '';
	width: 100%;
	height:2px;
	background: var(--negro);
	position: absolute;
	left: 0;
	transition: all 0.6s ease-in-out;
}
.btn-menu span::before {
	top: -7px;
}
.btn-menu span::after {
	bottom:-7px;
}
/* active */
.btn-menu.active span {
	background: none;
}
.btn-menu.active span::before {
	top: 0;
	transform: rotate(45deg);
}
.btn-menu.active span::after {
	bottom:0;
	transform: rotate(-45deg);
}
header.active .btn-menu {
	width: 24px;
}

#openmenu {
	width: 100vw;
	height:100vh;
	position: fixed;
	display: block;
	top: 0;
	left:100%;
	transition: all 0.6s ease-in-out;
	color: var(--blanco);
	background: var(--negro);
	padding: 150px 15px 24px;
	text-align: center;
	z-index: 66;
}
#openmenu.active {
	left: 0;
}
#openmenu a {
	width: 100%;
	font-family: 'Instrument';
	font-size: 1.8em;
	display: block;
	margin: 0 0 18px;
	color: var(--blanco);
	position: relative;
	opacity: 0.9;
	text-transform: capitalize;
}
#openmenu a.active {
	color: var(--rosa);
	opacity: 1;
}
#openmenu div:last-child {
	display: flex;
	padding: 24px 0 0;
	gap: 24px;
	justify-content: center;
}
#openmenu div:last-child a {
	width: 30px;
	font-family: 'Instrument';
	font-size: 1.2em;
	opacity: 1;
}

#cortina {
	width: 100vw;
	height:100vh;
	position: fixed;
	opacity: 0;
	left:0;
	background: var(--blanco);
	animation: gone 1.2s;
	pointer-events: none !important;
	z-index: 66;
}
@-webkit-keyframes gone {
	0% {
		opacity: 1;
	}
	42% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@-moz-keyframes gone {
	0% {
		opacity: 1;
	}
	42% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes gone {
	0% {
		opacity: 1;
	}
	42% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

main {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
}

.ad {
	padding:90px 0 30px;
	overflow: hidden;
}

.bg-crema {
	background: var(--crema);
}
.bg-cafe {
	color: var(--blanco);
	background: var(--cafe);
}
.bg-azul {
	background: var(--azul);
}
.bg-azulBlanco {
	background: var(--azulBlanco);
}


.btn {
	width: auto;
	font-family: 'Instrument';
	color: var(--azul);
	font-size: 1em;
	padding:12px 48px;
	position: relative;
	display: inline-block;
	background: var(--azulClaro);
	border-radius: 42px !important;
}
.btn:hover {
	color: var(--blanco);
	background: var(--azul);
}
.btnCafe {
	color: var(--blanco);
	background: var(--negro2);
}
.btnCafe:hover {
	background: var(--cafe);
}

.portaWhats {
	width: var(--width);
	max-width: var(--maxWidth);
	position: fixed;
	left: 50%;
	bottom:30px;
	transform: translateX(-50%);
	display: flex;
	justify-content: flex-end;
	pointer-events: none;
	z-index: 9;
}
.portaWhats .btn {
	color: var(--verdeWhats);
	pointer-events: all;
	border-radius: 0 30px 30px 0 !important;
	padding:9px 30px 9px 27px;
	box-shadow: 3px 3px 3px rgba(70,43,22,0.2);
}
.portaWhats .btn:hover {
	color: var(--blanco);
}
.portaWhats .btn circle {
	width: 54px;
	height:54px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:0;
	transform: translate(-75%,-50%);
	color: var(--blanco);
	background: var(--verdeWhats);
	display: flex;
	justify-content: center;
	align-items: center;
}
.portaWhats .btn circle span {
	font-size: 1.5em;
}

.link {
	font-size: 1.2em;
	color: var(--azul);
	position: relative;
	display: flex;
	gap: 12px;
	align-items: center;
}
.link span {
	font-size: 1.5em;
}
.link:hover {
	color: var(--azulFuerte);
}

.portavideo {
	width: 100vw;
	height:calc(100vh - 75px);
	position: relative;
	overflow: hidden;
}
.portavideo video {
	width: 102%;
	height:102%;
	object-fit: cover;
}
.portavideo main {
	color: var(--blanco);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	padding:24px 0 0;
	z-index: 3;
}
.portavideo main * {
	animation-duration: 1.3s;
	animation-delay: 1.8s;
}
.portavideo main h1 {
	width: 69%;
	margin: 0 0 39px;
}
.portavideo main h1 span {
	color: var(--azulClaro);
}

.scroll {
	height:78px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.scroll a {
	animation-duration: 1.3s;
	animation-delay: 3s;
}
.scroll a circle {
	width: 21px;
	height:21px;
	display: inline-block;
	position: relative;
	color: var(--blanco);
	background: var(--azul);
	border-radius: 50%;
}
.scroll a p {
	font-size: 0.9em;
	color: var(--azul);
}

.c1 {
	padding:90px 0 48px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.info {
	width: 50%;
	margin: 24px 0 90px 50%;
	padding:30px 0;
	border: solid var(--negro2);
	border-width: 1px 0;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.info h2 {
	width: 100%;
	color: var(--negro2);
	margin: 0 0 30px;
}
.info p {
	font-size: 1.2em;
	color: var(--cafe);
	margin: 0 0 12px;
}
.info p:last-child {
	margin: 0;
}
.info .link {
	margin: 24px 0 0;
}

.tit {
	padding:42px 0;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.tit.add {
	padding:180px 0 42px;
}
.tit h1.esp {
	font-size: 3em;
	padding:0 50% 0 0;
}
.tit h2 {
	font-size: 2.7em;
	color: var(--cafe);
	margin: 24px 0 0 120px;
}

.servicio {
	display: flex;
	justify-content: space-between;
	padding:48px 0;
	border-bottom: solid 1px var(--negro);
}
.servicio > div {
	width: calc(50% - 24px);
	position: relative;
}
.servicio .imagen {
	order: 1;
	height:0;
	padding:0 0 42%;
	overflow: hidden;
	border-radius: 6px;
}
.section:nth-child(2n -1) .servicio .imagen {
	order: 2;
}
.servicio .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.9s ease-in-out;
}
.servicio .imagen a:hover img {
	transform: translate(-50%,-50%) scale(1.2);
}
.servicio .texto {
	order: 2;
}
.section:nth-child(2n -1) .servicio .texto {
	order: 1;
}
.servicio .texto h3 {
	margin: 0 0 24px;
}
.servicio .texto p {
	margin: 0 0 24px;
}
.texto,
.imagen {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

.doctora {
	padding:90px 0 30px;
	display: flex;
	justify-content: space-between;
}
.doctora .texto {
	width: calc(60% - 24px);
}
.doctora .texto h2 {
	font-size: 2.4em;
	margin: 0 0 60px;
	display: inline-block;
	position: relative;
}
.doctora .texto h2 .barrita {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.doctora .texto h2 .barrita h4 {
	font-size: 0.6em;
	color: var(--azulFuerte);
}
.doctora .texto h2 .barrita p {
	font-size: 0.45em;
	color: var(--cafe);
}
.doctora .texto ul {
	list-style: none;
}
.doctora .texto ul li {
	margin: 0 0 6px;
	padding:0 0 0 12px;
	position: relative;
}
.doctora .texto ul li::after {
	content: '';
	width: 3px;
	height:3px;
	background: var(--negro2);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:0;
	transform: translateY(-50%);
}
.doctora .texto ul li:last-child {
	margin: 0;
}
.doctora .imagen {
	width: calc(40% - 24px);
}
.doctora .imagen img {
	width: 100%;
	margin: 0 0 -6px;
	border-radius: 6px;
}

h1.grande {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	padding:60px 0;
	color: var(--azulFuerte);
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
h1.grande.g2 {
	color: var(--negro);
}

.portaBtn {
	padding:0 0 60px;
	display: flex;
	justify-content: flex-end;
}
.portaBtn a {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

.down {
	padding:60px 0 6px;
}
.down h2 {
	position: absolute;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	z-index: 3;
}

#owl,
#owl2 {
	width: 100%;
	position: relative;
	overflow: hidden;
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
.owl-carousel {
	margin: 0 auto;
	position:relative;
	display:block;
	overflow: hidden;
	z-index: 3;
	cursor: grab;
}
.owl-carousel:active {
	cursor: grabbing;
}
.owl-carousel div {
	float:left;
}

#owl2 .owl-carousel {
	width: calc(100% - 60px);
	max-width: 1200px;
}
.owl-carousel .item {
	position: relative;
}
#owl2 .owl-carousel .item {
	width: 100%;
	background: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	align-items: stretch;
	z-index: 1;
}

#owl {
	padding:48px 0 0;
}
#owl .item {
	width: 100%;
}
#owl .item .imagen {
	width: 100%;
	height:0;
	padding:0 0 45%;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
}
.owl-carousel .owl-item.active .imagen {
	animation: fadeIn ease-in-out 1.2s both;
}
#owl .item .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	transition: all 0.9s ease-in-out;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}
#owl .item .imagen a:hover img {
	transform: translate(-50%,-50%) scale(1.2);
}

.owl-carousel .item .texto {
	width: 100%;
	padding:18px 0 0;
	text-align: left;
}
.owl-carousel .owl-item.active .texto {
	animation: zoomIn ease-in-out 1.2s 0.3s both;
}
.owl-carousel .item .texto h3 {
	font-size: 1.5em;
	color: var(--azulFuerte);
	margin: 0 0 12px;
}
.owl-carousel .item .texto p {
	margin: 0 auto 12px;
	opacity: 0.9;
}
.owl-carousel .owl-item.active .texto h3,
.owl-carousel .owl-item.active .texto p {
	animation: fadeIn ease-in-out 3s 0.3s both;
}
.owl-carousel .item .texto .box {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.perfil {
	position: relative;
	display: flex;
	gap: 9px;
	align-items: center;
}
.perfil .foto {
	width: 36px !important;
	height:36px !important;
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	display: inline-block;
	background: var(--azul);
}
.perfil .foto img {
	width: 102%;
	height:102%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}
.perfil .foto a:hover img {
	transform: translate(-50%,-50%) scale(1.2);
	opacity: 0.6;
}
.perfil .cont h4 {
	font-weight: normal;
	font-family: 'Instrument Light';
	font-size: 0.9em;
}
.perfil .cont p.fecha {
	color: var(--cafe);
	font-size: 0.6em;
	opacity: 0.3;
}

.owl-nav {
	width: 100%;
	max-width: calc(100vw - 24px);
	position: absolute;
	top: 0;
	right:0;
	display: flex;
	justify-content: flex-end;
	gap: 6px;
	pointer-events: none;
	z-index: 12;
}
#owl2 .owl-nav {
	display: none;
}
.owl-nav button {
	width: 39px;
	height:42px;
	font-size: 1.5em;
	border-radius: 6px !important;
	cursor: pointer;
	color: var(--cafe);
	background: none;
	pointer-events: all;
}
.owl-nav button:hover {
	color: var(--blanco);
	background: var(--azul);
}
	
.owl-item .item .dialogo {
	width: calc(300% - 240px);
	padding:30px 42px;
	border-radius: 12px;
	color: var(--azulFuerte);
	background: var(--azulClaro);
	text-align: center;
	margin: 0 auto 32px;
	opacity: 0;
	transition: all 0.6s ease-in-out;
	position: relative;
	z-index: 3;
}
.owl-item .item .dialogo::after {
	content: '';
	width: 50px;
	height:32px;
	background-color: var(--azulClaro);
	-webkit-mask-image: url("../complements/fin.svg");
	mask-image: url("../complements/fin.svg");
	mask-size: 100% 100%;
	mask-repeat: no-repeat;
	mask-position: center;
	position: absolute;
	top: 100%;
	left:57%;
	transform: translateX(-50%);
	z-index: -1;
}
.owl-item.center > .item .dialogo {
	opacity: 1;
	animation: fadeInUp2 ease-in-out 1.5s 0.3s both;
}
.owl-item .item .dialogo p {
	font-family: 'Instrument Bold';
	margin: 12px auto 0;
}
.owl-item .item .foto {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: flex-end;
}
.owl-item.center > .item .foto {
	justify-content: center;
}
.owl-item.center + .owl-item .item .foto {
	justify-content: flex-start;
}
.owl-item .item .foto circle {
	width: 90px;
	height:0;
	padding:0 0 90px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	border: solid 2px var(--azulFuerte);
}
.owl-item.center > .item .foto circle {
	width: 180px;
	padding:0 0 180px;
}
.owl-item .item .foto img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
}

.owl-dots {
	width: 100%;
	text-align: center;
	position: relative;
	padding:42px 0 30px;
	z-index: 9;
}
.owl-dots .owl-dot {
	width: 12px;
	height:12px;
	border: none;
	background: var(--azulClaro);
	position: relative;
	margin: 0 6px 0 0;
	border-radius: 50% !important;
	cursor: pointer;
}
.owl-dots .owl-dot:last-child {
	margin: 0;
}
.owl-dots .owl-dot:last-child {
	margin: 0;
}
.owl-dots .owl-dot.active, 
.owl-dots .owl-dot:hover {
	background: var(--azul);
}

#numeros {
	display: flex;
	justify-content: center;
	padding:0 210px 42px;
	gap: 12px;
}
#numeros > div {
	width: 33.3%;
	text-align: center;
	color: var(--cafe);
}
#numeros > div h2 {
	font-size: 3em;
	font-family: 'Instrument Bold';
}

.logos {
	display: flex;
	flex-wrap: wrap;
	gap: 48px 60px;
	justify-content: center;
	align-items: center;
	margin: 24px auto 60px;
}
.logos img {
	width: calc(25% - 90px);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.logos img:nth-child(2n) {
	animation-delay: 1.5s;
}

#mapa {
	position: relative;
	overflow: hidden;
}
#mapa iframe {
	width: 100vw;
	height:69vh;
	margin: 0 0 -6px;
}
#mapa main {
	position: absolute;
	top: 0;
	left:50%;
	transform: translateX(-50%);
}
#mapa main .box {
	display: inline-block;
	padding:24px 60px 24px 0;
	background: var(--azulBlanco);
}
#mapa main .box::after {
	content: '';
	width: 50vw;
	height:100%;
	background: var(--azulBlanco);
	position: absolute;
	top: 0;
	left:0;
	transform: translateX(-99%);
	z-index: -1;
}
#mapa main .box h4 {
	margin: 0 0 18px;
}
#mapa main .box > div {
	position: relative;
	display: flex;
	gap: 9px;
	margin: 0 0 18px;
}
#mapa main .box > div circle {
	width: 24px;
	height:24px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--azul);
	border-radius: 50%;
}
#mapa main .box > div circle span {
	color: var(--blanco);
	font-size: 0.9em;
}
#mapa main .box > div p {
	width: calc(100% - 33px);
}

.descripcion {
	padding:18px 120px 60px calc(25% + 9px);
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.descripcion::after {
	content: '';
	width: calc(75% - 9px);
	height:1px;
	background: var(--negro);
	position: absolute;
	top: 0;
	right:0;
	z-index: 3;
}
.descripcion ul {
	list-style: none;
	margin: 30px 0 0;
}
.descripcion ul li {
	margin: 0 0 30px;
}
.descripcion ul li:last-child {
	margin: 0;
}
.descripcion ul li h3 {
	font-size: 1.2em;
	color: var(--azul);
}

footer {
	width: 100vw;
	color: var(--negro);
	background: var(--blanco);
	position: relative;
	padding:48px 0 24px;
	z-index: 12;
}
footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
}
footer .inter .lado {
	width: 50%;
}
footer .inter .lado:first-child > img {
	width: 180px;
	margin: 0 0 24px;
	display: block;
}
footer .inter .lado .tira {
	padding:24px 0;
	display: inline-block;
	background: var(--blanco);
	border-radius: 0 6px 6px 0;
	position: relative;
	z-index: 3;
}
footer .inter .lado .tira::after {
	content: '';
	width: 24vw;
	height:100%;
	background: var(--blanco);
	position: absolute;
	top: 0;
	left:0;
	transform: translateX(-99%);
	z-index: -1;
}
footer .inter .lado .tira p {
	font-size: 0.7em;
	color: var(--azul);
	margin: 0 0 21px;
}
footer .inter .lado .tira > div {
	width: 300px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 0;
	justify-content: space-between;
	padding:0 24px 0 0;
}
footer .inter .lado .tira img {
	width: calc(50% - 12px);
	mix-blend-mode: multiply;
}
footer .inter .lado:last-child > div {
	width: 100%;
	position: relative;
}
footer .inter .lado .arriba {
	display: flex;
	justify-content: space-between;
	padding:0 0 48px;
}
footer .inter .lado .arriba h4 {
	margin: 0 0 6px;
}
footer .inter .lado .arriba h4,
footer .inter .lado .arriba p {
	font-size: 0.7em;
}
footer .inter .lado .arriba h4 {
	width: 100%;
}
footer .inter .lado .arriba .redes div {
	position: relative;
	display: flex;
	gap: 12px;
}
footer .inter circle {
	width: 24px;
	height:24px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--azul);
	border-radius: 50%;
}
footer .inter circle span {
	font-size: 0.9em;
	color: var(--blanco);
}
footer .inter a:hover circle {
	background: var(--negro2);
}
footer .inter a:hover circle span {
	color: var(--blanco);
}
footer .inter .lado .abajo > a {
	position: relative;
	display: inline-block;
	display: flex;
	gap: 9px;
	align-items: center;
	font-size: 0.7em;
	color: var(--negro);
	margin: 0 0 6px;
}
footer .inter .lado .abajo > a circle span {
	font-size: 1.2em;
}
footer .inter .lado .abajo > div {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	margin: 24px 0 0;
}
footer .inter .lado .abajo > div a,
footer .inter .lado .abajo > div p {
	font-size: 0.7em;
	color: var(--negro);
}
footer .inter .lado .abajo > div a {
	color: var(--negro2);
	text-decoration: underline;
}

#intro {
	position: relative;
	border-bottom: solid 1px var(--negro);
}
#intro main h2 {
	padding:60px 0 0;
}
#intro main img {
	width: 240px;
	margin: 24px 0 48px;
}
#intro main p {
	width: 100%;
	padding:0 calc(50% + 30px) 24px 0;
}
#intro main p:last-child {
	padding:0 calc(50% + 30px) 60px 0;
}
#intro .fondo {
	width: 50vw;
	height:100%;
	position: absolute;
	top: 0;
	left:50%;
	overflow: hidden;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	z-index: 3;
}
#intro .fondo img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}

@media screen and (max-width:666px) {
	
	html {
		scroll-padding: 90px;
		--width: calc(100% - 30px);
	}
	
	p {
		font-size: 0.9em;
	}
	
	h1 {
		font-size: 2.4em;
	}
	h2 {
		font-size: 1.2em;
	}
	
	h3 {
		font-size: 2.1em;
	}
	
	header {
		padding:21px 0 0;		
	}
	header .inter {
		padding:12px 24px;
	}
	header .inter div img {
		width: 99px;
	}
	header .inter .menu {
		width: calc(100% - 120px);
		justify-content: space-between;
		gap: 12px;
	}
	header .menu a {
		display: none;
	}
	.btn-menu {
		display: inline-block;
	}
	
	.autocomplete-items {
		width: 165px;
		left: -45px;
	}
	
	.btn {
		font-size: 0.9em;
		padding:9px 24px;
	}
	
	.portaWhats {
		bottom:21px;
	}
	.portaWhats .btn {
		font-size: 0.8em;
		padding:9px 24px 9px 21px;
	}
	.portaWhats .btn circle {
		width: 45px;
		height:45px;
	}
	.portaWhats .btn circle span {
		font-size: 1.3em;
	}

	.link {
		font-size: 1em;
	}

	.portavideo {
		height:calc(100vh - 45px);
	}
	.portavideo main {
		padding:30px 0 0;
	}
	.portavideo main h1 {
		width: 100%;
		margin: 0 0 36px;
	}

	.scroll {
		height:48px;
		justify-content: flex-start;
		padding:0 15px;
	}
	.scroll a p {
		display: none;
	}

	.c1 {
		padding:60px 0 30px;
	}
	.info {
		width: calc(100% - 60px);
		margin: 24px 0 60px 60px;
		padding:24px 0;
	}
	.info p {
		font-size: 1em;
	}

	.tit {
		padding:30px 0;
	}
	.tit.add {
		padding:150px 0 30px;
	}
	.tit h1.esp {
		font-size: 2.1em;
		padding:0 calc(25% - 18px) 0 0;
	}
	.tit h2 {
		font-size: 2.1em;
		margin: 24px 0 0 60px;
	}

	.servicio {
		padding:36px 0;
		flex-wrap: wrap;
		gap: 18px;
	}
	.servicio > div {
		width: 100%;
	}
	.servicio .imagen,
	.section:nth-child(2n -1) .servicio .imagen {
		order: 1;
		padding:0 0 66%;
	}

	.servicio .texto,
	.section:nth-child(2n -1) .servicio .texto {
		order: 2;
	}
	.servicio .btn {
		color: var(--blanco);
		background: var(--azul);
	}

	.doctora {
		padding:60px 0 30px;
		flex-wrap: wrap;
		gap: 24px;
	}
	.doctora .texto {
		width: 100%;
	}
	.doctora .texto h2 {
		width: 100%;
		font-size: 1.8em;
	}
	.doctora .imagen {
		width: calc(100% - 60px);
		margin: 0 0 0 60px;
	}

	h1.grande {
		padding:48px 0;
	}

	.portaBtn {
		padding:0 0 48px;
	}

	.down {
		padding:48px 0 0;
	}

	#owl,
	#owl2 {
		max-width: calc(100vw - 30px);
	}
	#owl2 .owl-carousel {
		width: calc(100vw - 90px);
	}

	#owl {
		padding:42px 0 0;
	}
	#owl .item .imagen {
		padding:0 0 66%;
	}

	.owl-carousel .item .texto h3 {
		font-size: 1.3em;
	}

	.owl-item .item .dialogo {
		width: calc(300% - 231px);
		padding:24px 30px;
		margin: 0 auto 24px;
		font-size: 0.9em;
	}
	.owl-item .item .foto,
	.owl-item.center > .item .foto,
	.owl-item.center + .owl-item .item .foto {
		justify-content: center;
		align-items: flex-start;
	}
	.owl-item .item .foto circle {
		width: 48px;
		padding:0 0 48px;
	}
	.owl-item.center > .item .foto circle {
		width: 90px;
		padding:0 0 90px;
	}

	#numeros {
		padding:0 0 30px;
		gap: 18px;
	}
	#numeros > div {
		width: 100%;
	}
	#numeros > div h2 {
		font-size: 2.4em;
	}

	.logos {
		gap: 30px 30px;
	}
	.logos img {
		width: calc(33.3% - 24px);
	}

	#mapa main {
		width: 100vw;
		position: relative;
		left:0;
		transform: translateX(0);
		text-align: center;
	}
	#mapa main .box {
		padding:24px 15px;
	}

	footer {
		padding:42px 0 24px;
	}
	footer .inter {
		flex-wrap: wrap;
		gap: 30px;
	}
	footer .inter .lado {
		width: 100%;
	}
	footer .inter .lado .abajo > div {
		flex-wrap: wrap;
		gap: 12px 30px;
		justify-content: space-between;
	}
	
	#intro main h2 {
		padding:48px 0 0;
	}
	#intro main img {
		width: 180px;
		margin: 18px 0 30px;
	}
	#intro main p {
		padding:0 0 18px;
	}
	#intro main p:last-child {
		padding:0 0 48px;
	}
	#intro .fondo {
		width: 100vw;
		height:240px;
		position: relative;
		left:0;
	}
	
}