@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: 81px;
	--negro: #282826;
	--blanco: #ffffff;
	--dorado: #cfb674;
	--amarillo: #f9ae3b;
	--tierra: #978475;
	--cafe: #7c4b15;
	--cafeRGBA: 124,75,21,0.15;
	--gris: #8f8f8f;
	--grisBlanco: #eeeeee;
	
	--width: calc(100% - 42px);
	--maxWidth: 1200px;
	background: var(--negro);
}

body {
	font-family: 'Montserrat';
	font-weight: normal;
	color: var(--negro);
	background: var(--blanco);
	line-height:1.4;
	letter-spacing: 0.12em;
	overflow-x:hidden !important;
}

h1 {
	line-height:1;
	font-family: 'Montserrat Bold';
	font-weight: normal;
	font-size: 3em;
	text-wrap: balance;
}
h2 {
	line-height:1.2;
	font-family: 'Montserrat Bold';
	font-weight: normal;
	font-size: 2.7em;
	text-wrap: balance;
}
h3 {
	font-family: 'Montserrat Bold';
	font-weight: normal;
	font-size: 1.3em;
	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: 'Montserrat Bold';
	font-size:1em;
	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 {
	text-wrap: pretty;
}
p, ul {
	font-size:0.9em;
}
p b,
p em {
	font-family: 'Montserrat Extra';
	font-weight: normal;
}

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

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

header {
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	color: var(--blanco);
	background: transparent;
	padding:45px 0 0;
	transition: all ease-in-out 0.6s;
	z-index: 99;
}
header::before {
	content: '';
	width: 100%;
	height:99px;
	background: linear-gradient(0deg,rgba(40, 40, 38, 0) 0%, rgba(40, 40, 38, 0.9) 100%);
	position: absolute;
	top: 0;
	left:0;
	pointer-events: none;
	z-index: -1;
}
header .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
header .lamp {
	width: 42px;
	position: absolute;
	top: -6px;
	left:60px;
	pointer-events: none;
	animation-duration: 1.3s;
	animation-delay: 1.2s;
	z-index: -1;
}
header .lampEncendida {
	width: 300px;
	top: -24px;
	left: 50%;
	transform: translateX(-50%);
}
header.active .lamp {
	opacity: 0;
}
header .inter div {
	width: 25%;
}
header .inter div img {
	height: 36px;
	margin: 18px auto;
	filter: invert(0);
	transition: all 0.6s ease-in-out;
}
header .inter .menu {
	width: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: -18px 0 0;
	padding:0 0 6px;
}
header .inter .menu:last-child {
	justify-content: flex-end;
}
header .inter .menu a {
	font-family: 'Montserrat';
	font-size: 0.9em;
	position: relative;
	text-transform: uppercase;
	color: var(--blanco);
}
header .inter .menu a.active,
header .inter .menu a.active2,
header .inter .menu a:hover {
	color: var(--amarillo);
}
header .inter .menu a::after {
	content: '';
	width: 0;
	height:1px;
	background: var(--amarillo);
	position: absolute;
	left: 50%;
	bottom:-9px;
	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,
header .inter .menu a.active2::after {
	width: 100%;
}

.dropdown {
	list-style: none;
	position: relative;
}
.dropdown-content {
	position: absolute;
	background: transparent;
	min-width: 210px;
	margin:6px 0 0 -12px;
	padding:33px 0 6px;
	transition: all 0.9s ease-in-out;
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	z-index: 99;
}
.dropdown-content a {
	font-family: 'Montserrat' !important;
	font-size: 0.75em !important;
	margin: 0 !important;
	padding:9px 15px !important;
	color: var(--blanco) !important;
	text-decoration: none;
	display: inline-block;
	text-align: left;
	position: relative;
	transition: all 0.3s ease-in-out !important;
	border: solid 1px transparent;
	border-radius: 30px;
	background: rgba(35,31,32,0.3);
}
.dropdown-content a::after {
	display: none;
}
.dropdown-content a.active,
.dropdown-content a:hover {
	border-color: var(--amarillo);
}
.dropdown:hover .dropdown-content {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.btn-menu {
	width: 36px !important;
	height:36px !important;
	background: transparent !important;
	position: relative;
	border: solid 1px var(--blanco);
	border-radius: 50% !important;
	vertical-align: middle;
	display: none;
}
.btn-menu span {
	width: 21px;
	height:2px;
	background: var(--blanco);
	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(--blanco);
	position: absolute;
	left: 0;
	transition: all 0.6s ease-in-out;
}
.btn-menu span::before {
	top: -5px;
}
.btn-menu span::after {
	bottom:-5px;
}
/* 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 .inter > div:last-child {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	transform: translateY(-15px);
}
form.buscar {
	width: 180px;
	position: relative;
}
form.buscar input.busqueda {
	width: 100%;
	font-family: 'Montserrat';
	font-size: 0.7em;
	color: var(--negro);
	background: var(--grisBlanco);
	padding:12px 48px 12px 12px;
	border-radius: 30px;
	border: solid 1px var(--blanco);
	transition: all 0.3s ease-in-out;
}
form.buscar input.busqueda::-moz-placeholder {
    color: var(--gris);
    opacity:1
}
form.buscar input.busqueda:-ms-input-placeholder {
    color: var(--gris);
}
form.buscar input.busqueda::-webkit-input-placeholder {
    color: var(--gris);
}
form.buscar input.busqueda:focus {
	border-color: var(--amarillo);
}
form.buscar button.send {
	width: 33px;
	height:33px;
	border-radius: 50% !important;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	right:3px;
	transform: translateY(-50%);
	background: transparent;
	z-index: 3;
}
form.buscar button.send:hover {
	background: var(--amarillo);
}
form.buscar button.send span {
	font-size: 1.3em;
	color: var(--gris);
}
form.buscar button.send:hover span {
	color: var(--negro);
}

/* autocomplete */
.autocomplete-items {
	width: 180px !important;
    position: absolute;
    border: none;
    background: rgba(35,31,32,0.6);
    z-index: 99;
    top: 100%;
    left: 0;
}
.autocomplete-items div {
	width: 100% !important;
	font-size: 0.8em !important;
	color: var(--blanco) !important;
    padding: 9px;
    cursor: pointer;
    background-color: none;
    display: block;
	border: none;
}
.autocomplete-items div strong {
	color: var(--amarillo);
	font-weight: inherit !important;
}
.autocomplete-items div:hover {
	color: var(--blanco);
    background-color: var(--negro); 
}
.autocomplete-active {
    background-color: var(--negro) !important;
}

/* active */
header.active {
	color: var(--negro) !important;
	background: var(--blanco);
	padding:24px 0 0;
}
header.active::before {
	display: none;
}
header.active .inter div img {
	filter: invert(100%);
	opacity: 0.6;
}
header.active .inter .menu {
	border-bottom-color: var(--negro);
}
header.active .inter .menu a {
	color: var(--negro);
}
header.active .inter .menu a.active,
header.active .inter .menu a.active2,
header.active .inter .menu a:hover {
	color: var(--amarillo);
}

header.active .btn-menu {
	border: solid 1px var(--amarillo);
}
header.active .btn-menu span {
	background: var(--negro);
}
header.active .btn-menu span::before,
header.active .btn-menu span::after {
	background: var(--negro);
}
header.active .btn-menu.active span {
	background: none;
}

#openmenu {
	width: 100vw;
	height:100vh;
	position: fixed;
	display: block;
	top: 0;
	left:100%;
	transition: all 0.6s ease-in-out;
	color: var(--blanco);
	background: rgba(40, 40, 38,0.9);
	padding: 150px 15px 24px;
	text-align: center;
	z-index: 66;
}
#openmenu.active {
	left: 0;
}
#openmenu .menu > div {
	width: 100%;
	position: relative;
}
#openmenu a {
	font-family: 'Montserrat';
	font-size: 1.3em;
	display: inline-block;
	margin: 0 0 42px;
	color: var(--blanco);
	position: relative;
	opacity: 0.7;
	text-transform: uppercase;
}
#openmenu a.active,
#openmenu a.active2 {
	opacity: 1;
}
#openmenu a::after {
	content: '';
	width: 0;
	height:1px;
	background: var(--amarillo);
	position: absolute;
	bottom: -3px;
	left:50%;
	transform: translateX(-50%);
	transition: all 0.6s ease-in-out;
	opacity: 6;
}
#openmenu a.active::after,
#openmenu a.active2::after,
#openmenu a:hover::after,
#openmenu a:hover::after {
	width: 100%;
}
#openmenu .menu img {
	width: auto;
	height:36px;
}
#openmenu .menu .links a {
	font-size: 0.7em;
	display: block;
	color: var(--amarillo);
	margin: 0 auto 12px;
	letter-spacing: 6px;
}
#openmenu .menu .links a::after {
	display: none;
}

#cortina {
	width: 100vw;
	height:100vh;
	position: fixed;
	opacity: 0;
	left:0;
	background: var(--negro);
	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;
	}
}

.section {
	position: relative;
}

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

.bg-blanco {
	background: var(--blanco);
	z-index: 3;
}
.bg-negro {
	color: var(--blanco);
	background: var(--negro);
	z-index: 3;
}
.bg-tierra {
	background: var(--tierra);
	z-index: 3;
}
.bg-gradient {
	background-image: linear-gradient(to bottom, var(--tierra), var(--blanco));
	z-index: 3;
}
.bg-gris {
	background: var(--gris);
	z-index: 3;
}

.btn {
	width: auto;
	font-family: 'Montserrat Bold';
	font-size: 0.9em;
	color: var(--negro);
	background: transparent;
	padding:9px 18px;
	position: relative;
	display: inline-block;
	border: solid 1px var(--dorado);
	overflow: hidden;
	border-radius: 30px !important;
}
.btn.btnDorado,
.btn:hover,
.btn.active {
	color: var(--blanco);
}
.btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: transparent;
	z-index: -3;
}
.btn::before {
	content: '';
	width: 0;
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	background: var(--dorado);
	transition: all 0.3s ease-in-out;
	z-index: -1;
}
.btn:hover::before,
.btn.active::before {
	width: 100%;
}
.btn.btnDorado::after {
	background: var(--dorado);
}
.btn.btnDorado::before {
	background: var(--amarillo);
}
.btn span {
	font-size: 1.2em;
	margin: 0 0 0 9px;
	padding:0 0 3px;
	vertical-align: middle;
}

#btns {
	width: var(--width);
	max-width: var(--maxWidth);
	position: fixed;
	left: 50%;
	bottom:21px;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 99;
}
#btns a {
	width: 45px;
	height:45px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: visible;
	background: var(--cafe);
	border-radius: 50% !important;
	box-shadow: 3px 3px 3px rgba(40, 40, 38, 0.3);
}
#btns a:first-child {
	background: linear-gradient(
    to bottom,
    #833ab4,#fd1d1d,#fcb045
  );
}
#btns a span {
	font-size: 1.5em;
	color: var(--blanco);
}

.texto,
.imagen {
	animation-duration: 1.2s;
	animation-delay: 0.9s;
}

.marco {
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-150%, -50%) scale(1.3);
	
	width: 300px;
	aspect-ratio: 25 / 32;
	
	background: rgba(255,255,255,0.3);
	backdrop-filter: blur(12px) saturate(180%);
	-webkit-backdrop-filter: blur(12px) saturate(180%);
	
	border: 1px solid rgba(255,255,255,0.6);
	box-shadow:
		0 12px 45px rgba(0,0,0,0.3),
		inset 0 0 25px rgba(255,255,255,0.6);
	
	clip-path: path('M0 0 H300 V384 H0 Z M24.6 24.7 V303.7 H275.6 V24.7 Z');
	clip-rule: evenodd;
	animation-duration: 1.3s;
	animation-delay: 1.2s;
	pointer-events: none;
	z-index: 6;
}

#owl {
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
.owl-carousel {
	width: 100%;
	max-width: 100vw;
	position:relative;
	display:block;
	cursor: grab;
	margin: 0 auto;
	padding:0 0 60px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 3;
}
.owl-carousel:active {
	cursor: grabbing;
}
.owl-carousel div {
	float:left;
}
.owl-carousel .item {
	width: 100%;
	position: relative !important;
	overflow: hidden;
	z-index: 1;
}
#owl.owl-carousel .item::after {
	content: '';
	width: 100%;
	height:99px;
	position: absolute;
	pointer-events: none;
	z-index: 1;
	right: 0;
	bottom:-3px;
	background: linear-gradient(0deg,var(--negro) 0%, rgba(40, 40, 38, 0) 100%);
}
.owl-carousel .item > div {
	position: relative;
}
.owl-carousel .item .fondo {
	width: 100vw;
	height:100vh;
	background: var(--negro);
	overflow: hidden;
	display: block;
	position: relative;
}
.owl-carousel .item div img {
	width: 102%;
	height:102%;
	object-fit: cover;
	opacity: 0.8;
	transform: scale3d(1.2, 1.2, 1.2);
}
.texto,
.imagen {
	animation-duration: 1.2s;
	animation-delay: 0.9s;
}
.owl-carousel .item .texto {
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	z-index: 3;
}
.owl-carousel .item .texto > div {
	width: 50%;
	padding:18px 0 18px 120px;
	position: relative;
	z-index: 1;
}
.owl-carousel .item .texto > div::after {
	content: '';
	width: 150%;
	height:100%;
	position: absolute;
	background: rgba(124,75,21,0.6);
	-webkit-mix-blend-mode: multiply;
    -moz-mix-blend-mode: multiply;
    mix-blend-mode: multiply;
	top: 0;
	left:0;
	border-radius: 300px 0 0 300px;
	z-index: -1;
}
.owl-carousel .item .texto h1 {
	color: var(--blanco);
	margin: 12px auto;
}
.owl-carousel .item .texto p {
	color: var(--blanco);
	margin: 12px auto;
}
.owl-carousel .item .texto .btn {
	color: var(--blanco);
	margin: 24px auto 12px;
}

.owl-carousel .owl-item.active .fondo {
	animation: fadeIn ease-in-out 1.2s 0.3s both;
}
.owl-carousel .owl-item.active .marco {
	animation: fadeIn ease-in-out 0.9s 2.1s both;
}
.owl-carousel .owl-item.active .fondo img {
	animation: Szoom ease-in-out 3.6s 2.1s both;
}
.owl-carousel .owl-item.active h1,
.owl-carousel .owl-item.active p {
	animation: fadeIn ease-in-out 1.5s 1.3s both;
}
.owl-carousel .owl-item.active .btn {
	animation: zoomIn ease-in-out 1.5s 1.2s both;
}
.owl-carousel .owl-item.active .texto > div::after {
	animation: fadeInRight ease-in-out 1.8s 0.9s both;
}

.owl-dots {
	width: 100%;
	height:0;
	text-align: center;
	position: relative;
	transform: translateY(-39px);
	display: flex;
	justify-content: center;
	padding:0 21px 21px;
	z-index: 9;
}
.owl-dots .owl-dot {
	width: 9px;
	height:9px;
	background: transparent;
	position: relative;
	margin: 0 6px;
	cursor: pointer;
	border: solid 1px var(--blanco);
	border-radius: 50% !important;
}
.owl-dots .owl-dot.active, 
.owl-dots .owl-dot:hover {
	background: var(--blanco);
}

.titulo {
	padding:75px 33.3%;
	text-align: center;
}
.titulo * {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.titulo h2 span {
	font-size: 0.7em;
	position: absolute;
	top: 0;
	left:0;
	transform: translate(-75%,-75%);
	z-index: 3;
}
.titulo h2 {
	position: relative;
}
.titulo p {
	font-size: 1.3em;
}
.titulo.enviado {
	margin: 0 auto 24px;
	padding:75px 0;
	text-align: center;
	background: var(--cafe);
}
.titulo.enviado h2 b {
	color: var(--dorado);
	display: block;
}
.titulo.enviado p {
	font-size: 1.2em;
	margin: 18px auto 0;
}

.portaBtns {
	display: flex;
	justify-content: space-between;
	padding:30px 15% 75px;
	z-index: 3;
}
.portaBtns.center {
	justify-content: center;
}
.portaBtns * {
	animation-duration: 1.3s;
	animation-delay: 1.2s;
}

#locacion {
	position: relative;
}
#locacion > main {
	z-index: 3;
}
#locacion .mapa {
	padding:30px 0;
	text-align: center;
	border-bottom: solid 1px var(--dorado);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#locacion .mapa span {
	font-size: 2.1em;
	color: var(--dorado);
}
#locacion .mapa h2 {
	font-size: 1.8em;
	color: var(--dorado);
	margin: 18px auto;
}
#locacion .mapa .btn {
	margin: 18px auto 0;
}
#locacion .fondo {
	width: 100%;
	height:100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left:0;
	z-index: 1;
}
#locacion .fondo::before {
	content: '';
	width: 100%;
	height:99px;
	position: absolute;
	pointer-events: none;
	top: 0;
	left:0;
	background: linear-gradient(0deg,rgba(40, 40, 38, 0) 0%, rgba(40, 40, 38, 0.9) 100%);
	z-index: 1;
}
#locacion .fondo img {
	width: 102%;
	height:102%;
	object-fit: cover;
	opacity: 0.2;
}

#locacion .links {
	border-bottom: solid 1px var(--dorado);
}
#locacion .links .pie {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding:24px 75px;
}
#locacion .links .pie > img {
	width: 150px;
}
#locacion .links .pie div {
	position: relative;
	text-align: right;
}
#locacion .links .pie div a {
	font-size: 0.8em;
	color: var(--blanco);
	display: block;
	margin: 0 0 3px;
}
#locacion .links .pie div a:last-child {
	margin: 0;
}
#locacion .links .pie div a:hover {
	color: var(--amarillo);
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
@keyframes marquee2 {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}
#listones {
	width: 100%;
	height:120px;
	position: relative;
}
.liston {
	width: 150vw;
	height:15px;
	position: absolute;
	overflow: hidden;
	transform: translate(-6vw,0);
	animation-duration: 1.3s;
	animation-delay: 0.6s;
	z-index: 1;
}
.liston > div {
	height: 15px;
	display: flex;
	align-items: center;
	gap: 42px;
	white-space: nowrap;
	animation: marquee 42s linear infinite;
	position: relative;
}
.liston:nth-child(1) {
	top: 24px;
}
.liston:nth-child(2) {
	top: 54px;
}
.liston:nth-child(2) > div {
	animation: marquee2 42s linear infinite;
}
.liston:nth-child(3) {
	top: 84px;
}
.liston > div a {
	font-size: 15px;
	color: var(--blanco);
	white-space: nowrap;
}
.liston > div a:hover {
	color: var(--dorado);
}

footer {
	color: var(--blanco);
	background: var(--negro);
	padding:24px 0;
}
footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	padding:0 75px;
	position: relative;
	display: flex;
	justify-content: space-between;
}
footer .inter a {
	font-size: 0.5em;
	color: var(--blanco);
}
footer .inter a:hover {
	color: var(--dorado);
}

@media screen and (max-width:666px) {
	
	html {
		--width: calc(100% - 36px);
		scroll-padding: 60px;
	}
	
	p, ul {
		font-size: 0.8em;
	}
	
	h1 {
		font-size: 2.1em;
	}
	h2 {
		font-size: 1.1em;
	}
	h3 {
		font-size: 1.2em;
	}
	
	header {
		padding:36px 0 0;
	}
	header .inter div {
		width: 50%;
	}
	header .inter div img {
		height: 30px;
		margin: 18px auto 12px;
	}
	header .inter .menu {
		display: none;
	}
	header .inter > div:last-child {
		transform: translateY(-6px);
		gap: 12px;
	}
	header.active {
		padding:24px 0 0;
	}
	.btn-menu {
		display: inline-block;
	}
	
	header .lamp {
		width: 33px;
		top: 3px;
		left:48px;
	}
	header .lampEncendida {
		width: 270px;
		top: -12px;
		left: 50%;
	}
	
	#openmenu a {
		font-size: 1.2em;
		margin: 0 0 36px;
	}
	#openmenu .menu img {
		height:30px;
	}
	
	.btn {
		font-size: 0.8em;
		padding:7px 15px;
	}
	
	#btns a {
		width: 48px;
		height:48px;
	}
	#btns a span {
		font-size: 1.3em;
	}
	
	.marco {
		top: 30%;
		left:50%;
		transform: translate(-50%, -50%) scale(0.6);
	}
	.owl-carousel .item .texto {
		top: 66vh;
	}
	.owl-carousel .item .texto > div {
		width: 100%;
		padding:15px 0 15px 60px;
	}
	.owl-carousel .item .texto h1 {
		margin: 9px auto;
	}
	.owl-carousel .item .texto p {
		margin: 9px auto;
	}
	.owl-carousel .item .texto .btn {
		margin: 18px auto 9px;
	}

	.titulo {
		padding:60px 30px;
	}
	.titulo h2 span {
		left: 50%;
		transform: translate(-50%,-90%);
	}
	.titulo h2 {
		font-size: 1.3em;
	}
	.titulo p {
		font-size: 1.2em;
	}

	.portaBtns {
		padding:24px 15px 60px;
	}
	#locacion .mapa h2 {
		font-size: 1.5em;
	}
	#locacion .links .pie {
		padding:24px 0;
	}
	#locacion .links .pie > img {
		width: 130px;
	}

	.liston > div {
		animation: marquee 30s linear infinite;
	}
	.liston:nth-child(2) > div {
		animation: marquee2 30s linear infinite;
	}
	footer .inter {
		padding:0 72px;
	}
	footer .inter a {
		font-size: 0.4em;
	}
	footer .inter a:last-child {
		text-align: right;
	}
	
}