/*-- THEME COLORS --*/
:root {
	/* Colors */
	--shadow-1: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);;
	--shadow-2: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

@font-face {
	font-family: "CenturyGothic";
	src: url("/src/fonts/CenturyGothic.woff2") format("woff2"),
		url("/src/fonts/CenturyGothic.woff") format("woff");
}

@font-face {
	font-family: "CenturyGothic-Bold";
	src: url("/src/fonts/CenturyGothic-Bold.woff2") format("woff2"),
    url("/src/fonts/CenturyGothic-Bold.woff") format("woff");
}

/*-- END THEME COLORS --*/

/*-- BASE --*/
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "CenturyGothic";
}

.gtranslate_wrapper img[src*="es.svg"] {
    content: url("https://flagcdn.com/w20/co.png");
    /* Bandera de Colombia */
    width: 32px !important;
    /* ancho igual que las demás */
    height: 30px !important;
    /* alto igual que las demás */
    object-fit: contain;
    /* mantiene proporción */
}

body {
    background-image: url("/src/img/fondo.webp");
    margin: 0px;    
    height: 200vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

::-webkit-scrollbar {
	width: 6px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #d3d3d3;
}

a {
	text-decoration: none;
}

button {
	cursor: pointer;
}

.btn {
	font-size: 18px;
	padding: 4px 20px;
	color: #fff;
	background-color: var(--amarillo);
	border-radius: 20px;
}

input,
textarea,
select {
	outline: none;
}

#btn-llamanos {
    position: fixed;
    right: -48px;
    top: 55%;
    background-color: var(--amarillo);
    padding: 4px 10px;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transform: rotate(-90deg);
    z-index: 2;
}

#btn-llamanos svg{
    width: 15px;
    fill: var(--morado);
}

#btn-llamanos span{
    font-size: 14px;
    color: var(--morado);
}


.popup.showing {
	display: flex;
}

.popup {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.popup .popup-container {
	width: 80%;
	max-height: 90%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.popup .popup-container .btn-close-popup {
	width: 30px;
	height: 30px;
	cursor: pointer;
	border: none;
	position: absolute;
	right: 20px;
	top: 20px;
    z-index: 111;
    background-color: transparent;
}

.popup-content img {
	width: 100%;
    border-radius: 30px;
}

.popup-content {
	width: 100%;
	max-height: 90vh;
	color: #4d4d4d;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	z-index: 2;
	border-radius: 20px;
	overflow: auto;
    background-color: var(--grid-2);
    padding: 50px;
    border-radius: 10px;
}

.popup-content > h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--morado);
    margin-bottom: 30px;
}

header {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
}

header.active {
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease-in-out;
}

.content-header {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-header >a img {
    height: 120px;
}

.content-header >nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-header >nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.content-header >nav ul li {
    font-size: 20px;
    color: #fff;
}

.content-header >nav ul li a{
    padding: 4px 10px;
    font-size: 20px;
    color: #fff;
    font-weight: lighter;
    transition: ease all 0.3s;
    border-bottom: 1px solid transparent;
}

.content-header >nav ul li a:hover {
    border-bottom: 1px solid #F9C94F;
}
.carrito svg {
    width: 25px;
    fill: #fff;
}

#content-redes-lang {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.redes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.redes a{
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F9C94F;
    border-radius: 50%;
    padding: 2px;
}

.redes a svg{
    width: 100%;
    fill: #000;
}

.gt_container--hich1m .gt_switcher a {
    font-size: 12pt !important;
    color: #fff !important;
}

.gt_container--hich1m .gt_switcher .gt_selected a:hover {
    background: transparent !important;
}

.gt_container--hich1m .gt_switcher .gt_selected {
    background: transparent !important;
}

.gt_container--hich1m .gt_switcher .gt_selected a {
    border: none !important;
}

.gt_container--hich1m .gt_switcher .gt_option {
    background-color: transparent !important;
    border: none !important;
}

.gt_container--hich1m .gt_switcher .gt_option a {
    color: #fff !important;
}

.gt_container--hich1m .gt_switcher .gt_option a:hover {
    color: #000 !important;
}

#s-banner {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#s-banner.interno {
    height: auto !important;
}

#carousel-banner .owl-dots {
    margin-top: -60px;
    z-index: 111111111;
    position: absolute;
    left: 50%;
}

.card-carousel-banner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-carousel-banner>img {
    width: 100% !important;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.card-carousel-banner.interna>img {
    height: auto !important;
}

.info-banner {
    position: absolute;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 6%;
    align-items: flex-start;
    top: 46%;
}

.info-banner>img {
    width: 35% !important;
}

.info-banner h3 {
    font-size: 70px;
    color: #fff;
    font-family: "CenturyGothic-Bold";
}

.info-banner>span {
    font-size: 40px;
    color: #fff;
    font-weight: lighter;
    margin-bottom: 40px;
}

.btn-flecha{
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    padding: 4px 15px;
    transition: ease all 0.3s;

}

.btn-flecha:hover{
    background-color: #F9C94F;
}

.btn-flecha  span{
    font-size: 25px;
    color: #fff;
    font-family: "CenturyGothic-Bold";
}

.btn-flecha  svg{
    width: 20px;
    fill: #fff;
}

#content-redes-flotantes {
    position: absolute;
    width: 50px;
    position: fixed;
    left: 0px;
    top: 50%;
    border-radius: 0px 2px 2px 0px;
    display: flex;
    flex-direction: column;
    background-color: #F9C94F;
    z-index: 999;
}

#content-redes-flotantes a{
    padding: 7px;
    width: 100%;
}

#content-redes-flotantes a svg{
    width: 100%;
    fill: #000;
}

#s-form-pagos {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
}

#content-form-pagos {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.p-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.p-title span:nth-child(1) {
    font-size: 40px;
    color: #fff;
    font-family: "CenturyGothic-Bold";
    margin-bottom: 20px;
}

.p-title span:nth-child(2) {
    width: 50%;
    height: 3px;
    border-radius: 50%;
    content: "";
    background: #F1C34C;
background: radial-gradient(circle, rgba(241, 195, 76, 1) 62%, rgba(241, 195, 76, 0) 100%);
}

#content-form-pagos>span {
    font-size: 25px;
    color: #fff;
    font-weight: lighter;
    text-align: center;
}

#content-tipo-visitantes {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#content-tipo-visitantes a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 20px;
}

#content-tipo-visitantes a.active,
#content-tipo-visitantes a:hover{
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease-in-out;
    box-shadow: var(--shadow-1);
}

#content-tipo-visitantes a img{
    width: 70%;
}

#content-tipo-visitantes a  span {
    font-size: 25px;
    color: #fff;
    font-weight: lighter;
    text-align: center;
}

#content-form-pagos form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.content-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.content-form >div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #C4C2C2;
    padding: 6px;
}

.content-form >div label{
    font-size: 20px;
    color: #fff;
	font-family: "CenturyGothic-Bold";
}

.content-form >div a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #C4C2C2;
    border-radius: 4px;
    padding: 4px;

}

.content-form >div a svg{
    width: 100%;
    fill: #606060;
}

.content-btn-sum-res { 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.content-btn-sum-res input{
    width: 50px;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 30px; 
	font-family: "CenturyGothic-Bold";
}

#content-info-ticket { 
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
}

.content-info {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.content-info span{
    font-size: 20px;
    color: #fff;
	font-family: "CenturyGothic-Bold";
}

#content-info-ticket input{
    width: 100%;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #FFF;
    font-size: 18px; 
	font-family: "CenturyGothic-Bold";
    padding: 4px 10px;
    border: 1px solid #fff;
}


#content-info-ticket button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: transparent;
    border: none;
    border-radius: 20px;
    padding: 4px 15px;
    transition: ease all 0.3s;
}

#content-info-ticket button:hover{
    background-color: #F9C94F;
}

#content-info-ticket button span{
    font-size: 25px;
    color: #fff;
    font-family: "CenturyGothic-Bold";
}

#content-info-ticket button svg{
    width: 30px;
    fill: #fff;
}

#s-espacios {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
}

#content-espacios {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.card-espacios {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.card-espacios span {
    font-size: 20px;
    text-align: center;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

#content-espacios a {
    margin-top: 80px;
}

#s-descubrenos {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
}

#content-descubrenos {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.card-descubrenos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.card-descubrenos img{
    width: 50% !important;
}

#content-carousel-descubrenos { 
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.info-descubrenos  {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.info-descubrenos  h3{
    font-size: 25px;
    color: #fff;
}

.info-descubrenos  p{
    font-size: 20px;
    color: #fff;
    line-height: 30px;
}

.info-redes {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-redes span{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 25px;
    font-family: "CenturyGothic-Bold";
}

.info-redes svg{
    width: 30px;
    fill: #fff;
}

.info-redes div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#s-visitantes {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
}

#content-visitantes {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.card-visitantes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 30px;
    background-color: #fff;
}

.card-visitantes>p{
    font-size: 20px;
    color: #313131;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.card-info-user-com {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.card-info-user-com img{
    width: 20% !important;
}

.info-user-com {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.info-user-com span{
    color: #313131;
    font-family: "CenturyGothic-Bold";
    font-size: 22px;
}

.info-user-com p{
    color: #00361C;
    font-size: 14px;
    font-style: italic;
}

.estrellas-resena {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}

.estrellas-resena svg {
    width: 18px;
    fill: #F9C94F;
}

#content-carousel-visitantes {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#s-mapa {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
}


#s-mapa iframe{
    width: 100%;
    height: 600px;
}

#content-btn-mapas {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

#s-aliados {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0px;
    gap: 50px;
    margin-top: 70px;
}

#content-aliados {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#content-carousel-aliados {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0px;
    position: relative;
}

#carousel-aliados img{
    border-radius: 50%;
}

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0px;
    background-color: #000;
}

#content-footer {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.info-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 60px;
    gap: 10px;
}

.img-logo-f {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-logo-f img {
    width: 80%;
}

.info-footer p {
    font-size: 12px;
    color: #fff;    
}
.info-footer a {
    font-size: 20px;
    color: #fff; 
    padding: 4px 2px;  
    transition: ease all 0.3s;
    border-bottom: 1px solid transparent;
}
.info-footer a:hover {
    border-bottom: 1px solid #F9C94F;
}
.info-footer h3 {
    font-family: "CenturyGothic-Bold";
    font-size: 30px;
    color: #fff;    
}

.pagos-img {
    width: 100%;
}

#content-footer>div:nth-child(1) {
    padding: 0px;
}
#content-footer>div:nth-child(2) ,
#content-footer>div:nth-child(3) {
    border-right: 1px solid #F1C34C;
}

.contentn-redes-f {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}

.contentn-redes-f a{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F9C94F;
    border-radius: 50%;
    padding: 4px;
}

.contentn-redes-f a svg{
    width: 100%;
    fill: #000;
}

#content-carousel-espacios {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 30px;
    flex-direction: column;
}

.s-textos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-textos {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.content-textos p{
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    text-align: start;
    width: 100%;
}

.content-textos h3{
    font-size: 30px;
    color: #fff;
    line-height: 40px;
    text-align: start;
    width: 100%;
	font-family: "CenturyGothic-Bold";
}

.content-textos ol,
.content-textos ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.content-textos ol li,
.content-textos ul li{
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    text-align: start;
}

#content-espejos {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.card-espejo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.card-espejo img{
    width: 40%;
}

.card-espejo div{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.card-espejo div p {
    font-size: 18px;
    color: #fff;
    line-height: 28px;
}

#menu-btn {
    display: none;
    justify-content: center;
    align-items: center;
}

#menu-btn svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

#content-redes-lang.res ,
.carrito.res {
    display: none;
}


.bnn {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 15px);
    border-radius: 50%;
    border: 2px solid var(--morado);
    z-index: 1;
    background-color: #fff;
}

.bnn svg{
    fill: var(--morado);
}

.bnn-izq {
    left: -50px;
}

.bnn-der {
    right: -50px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

/* Modal Background */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover {
    color: #000;
}

/* Estado mensajes */
.success { color: green; font-weight: bold; }
.error { color: red; font-weight: bold; }
.pending { color: orange; font-weight: bold; }

#carousel-visitantes .owl-item {
  display: flex;
  align-items: stretch; /* importante */
}

/* tu tarjeta debe estirarse y usar columna */
#carousel-visitantes .card-visitantes {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.card-donde-comer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card-donde-comer.show {
    opacity: 1;
    transform: translateY(0);
}

.img-placeholder {
    width: 100%;
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 14px;
}

.carrito {
    position: relative;
}

.carrito-count {
    display: flex;
    background: red;
    border-radius: 50px;
    font-size: 15px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    color: #fff;
    width: 25px;
    position: absolute;
    top: 15px;
    left: 15px;
}

.stars svg {
    width: 22px;
    height: 22px;
    fill: #FFD700; /* amarillo Google */
}

.star.empty {
    fill: #DDD;
}

.star.half path {
    stroke: #FFD700;
    stroke-width: 1;
}

@media screen and (max-width: 1280px) {
    .info-banner {
        top: 25%;
    }
    .content-header {
        width: 95%;
    }

    .content-header >nav ul li a {
        font-size: 16px;
    }

    .content-header >a img {
        height: 85px;
    }

    .card-espacios span {
        font-size: 20px;
    }

    .info-descubrenos  p {
        font-size: 16px;
        line-height: 23px;
    }

    .btn-flecha  span {
        font-size: 20px;
    }

    .p-title span:nth-child(1) {
        font-size: 30px;
    }

    .card-visitantes>p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .info-user-com {
        gap: 5px;
    }

    .info-user-com span {
        font-size: 18px;
    }

    footer {
        padding: 40px 0px;
    }

    #content-footer {
        width: 95%;
    }

    .info-footer {
        padding: 20px;
    }

    .info-footer a {
        font-size: 16px;
    }

    .info-footer {
        gap: 0px;
    }

    .info-footer h3 {
        margin-bottom: 10px;
        font-size: 25px;
    }

    #content-form-pagos {
        width: 90%;
    }

    #content-descubrenos {
        width: 90%;
    }

    #content-visitantes {
        width: 90%;
    }
}

@media screen and (max-width: 1024px) {
    header {
        z-index: 9999;
    }
    #menu-btn {
        display: flex;
    }

    .content-header >nav {
        display: none;
    }

    .content-header >nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        width: 100%;
        left: 0px;
        background-color: #000;
        z-index: 99999;
    }

    .content-header >nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        flex-direction: column;
        width: 100%;
    }

    .content-header >nav ul li:nth-child(even){
        display: none;
    }

    .content-header >nav ul li{
        width: 100%;
        display: flex;
    }

    .content-header >nav ul li a {
        width: 100%;
        padding: 8px 15px;
        text-align: center;
    }

    header {
        height: 90px;
    }

    .content-header {
        width: 100%;
        padding: 0px 15px;
    }
    
    .content-header >a img {
        height: 80px;
    }

    header {
        background-color: rgba(0, 0, 0, 0.8) !important;
        transition: all 0.3s ease-in-out ;
    }

    main {
        margin-top: 90px;
    }

    .info-banner h3 {
        font-size: 35px;
    }

    .info-banner>span {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .btn-flecha  span {
        font-size: 16px;
    }

    .info-banner {
        width: 90%;
    }

    #s-banner {
        height: 40vh;
    }

    .card-carousel-banner>img {
        height: 40vh !important;
        object-fit: cover;
    }

    #carousel-banner .owl-dots {
        margin-top: -30px;
    }

    .p-title span:nth-child(1) {
        font-size: 25px;
        text-align: center;
    }

    #s-form-pagos {
        padding: 20px;
    }

    #content-form-pagos {
        width: 100%;
    }

    #content-tipo-visitantes {
        gap: 15px;
    }

    #content-tipo-visitantes a  span {
        font-size: 18px;
    }

    #content-tipo-visitantes a {
        padding: 10px;
    }

    .content-form {
        grid-template-columns: 1fr;
    }

    body {
        height: auto;
    }

    footer {
        padding: 20px;
    }

    #content-footer {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .img-logo-f img {
        width: 40%;
    }

    .info-footer {
        padding: 20px;
        gap: 0px;
        justify-content: center;
        align-items: center;
    }

    .contentn-redes-f {
        justify-content: center;
        margin-top: 10px;
    }

    .info-footer h3 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    #content-footer>div:nth-child(2), #content-footer>div:nth-child(3) {
        border-bottom: 1px solid #F1C34C;
        border-right: none;
    }

    #content-redes-flotantes a {
        padding: 3px;
    }

    #content-redes-flotantes {
        width: 30px;
        right: 0px;
        left: auto;
        top: 100px;
        border-radius: 2px 0px 0px 2px;
    }

    #content-redes-lang.desk ,
    .carrito.desk {
        display: none;
    }

    .content-info {
        width: 100%;
    }

    .content-btn-sum-res input {
        font-size: 25px;
    }

    .content-form >div a {
        width: 25px;
        height: 25px;
    }

    .content-form >div label {
        font-size: 18px;
    }

    .content-info span {
        font-size: 18px;
    }

    #content-info-ticket {
        align-items: center;
    }

    #content-info-ticket button {
        background-color: #F9C94F;
    }

    #carousel-banner .owl-dots {
        left: 40%;
    }

    .btn-flecha{
        background-color: #F9C94F;
    }

    #content-info-ticket button span {
        font-size: 20px;
    }

    #content-info-ticket button svg {
        width: 20px;
        fill: #fff;
    }

    #content-espacios {
        width: 100%;
    }

    #s-espacios {
        width: 100%;
        padding: 20px;
    }

    #content-espacios a {
        margin-top: 0px;
    }

    #s-descubrenos {
        padding: 20px;
    }

    #content-descubrenos {
        width: 100%;
    }

    #content-carousel-descubrenos {
        width: 100%;
    }

    .card-descubrenos {
        flex-direction: column;
    }

    .card-descubrenos img {
        width: 80% !important;
    }

    .info-descubrenos {
        width: 100%;
    }

    .info-descubrenos  h3 {
        font-size: 22px;
    }

    .info-descubrenos  p {
        font-size: 18px;
        line-height: 25px;
    }

    .info-redes div {
        gap: 2px;
    }

    #s-visitantes {
        padding: 20px;
    }

    #content-visitantes {
        width: 100%;
    }

    .card-visitantes {
        padding: 15px;
    }

    .card-visitantes>p {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    .info-user-com {
        gap: 1px;
    }

    #s-mapa {
        margin-top: 40px;
        gap: 30px;
    }

    #s-mapa iframe {
        width: 100%;
        height: 300px;
    }

    #content-btn-mapas {
        gap: 15px;
        flex-direction: column;
    }

    #s-aliados {
        padding: 20px;
        gap: 50px;
        margin-top: 70px;
    }

    #content-aliados {
        width: 100%;
    }

    #content-redes-lang.res ,
    .carrito.res {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 8px 0px;
    }

    .redes a {
        width: 30px;
        height: 30px;
    }

    .redes {
        gap: 15px;
    }

    .card-carousel-banner.interna>img {
        height: 40vh !important;
    }

    .s-textos {
        padding: 20px;
    }

    .content-textos {
        width: 100%;
    }

    .content-textos p {
        font-size: 18px;
        line-height: 25px;
    }

    .card-espejo {
        flex-direction: column;
    }

    .card-espejo img {
        width: 85%;
    }

    .card-espejo div {
        width: 100%;
    }

    .card-espejo div p {
        text-align: center;
    }

    .bnn-der {
        right: 5px;
    }

    .bnn-izq {
        left: 5px;
    }

    #carousel-aliados img {
        padding-bottom: 0px;
    }

    .bnn {
        width: 25px;
        height: 25px;
        top: calc(50% - 12.5px);
    }
}
