/*-- THEME COLORS --*/
:root {
	/* Colors */
	--morado: #881A81;
	--amarillo: #E5AA03;
	--grid-1: #F2F2F2;
	--grid-2: #DEDEDE;
	--grid-3: #999999;
	--grid-4: #333333;
	--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: "Gotham-Light";
	src: url("/src/fonts/Gotham-Light.woff2") format("woff2"),
		url("/src/fonts/Gotham-Light.woff") format("woff");
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Gotham-Bold";
	src: url("/src/fonts/GothamXNarrow-Bold.woff2") format("woff2"),
		url("/src/fonts/GothamXNarrow-Bold.woff") format("woff");
	font-style: bold;
	font-display: swap;
    font-weight: 500;
}

/*-- END THEME COLORS --*/

/*-- BASE --*/
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Gotham-Light";
}

body {
	background-color: #ffffff;
	margin: 0px;
}

::-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);
	font-family: "Gotham-Bold";
}


.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;
	font-family: "Gotham-Bold";
}

.content-gal-popup {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap:20px;
    justify-content: center;
    align-items: center;
}

.content-gal-popup a,
.content-gal-popup a img{
    width: 100%;
}

.content-gal-popup a img{
    border-radius: 10px;
	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);
}


#principal-banner-interno{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


#principal-banner-interno.f-blanco::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4); /* Blanco con 50% de transparencia */
}

#principal-banner-interno,
#principal-banner-interno img {
    width: 100%;
}

#principal-banner-interno h2{
    position: absolute;
}

#principal-banner-interno h2 span{
    font-size: 40px;
	font-family: "Gotham-Bold";
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    z-index: 9;
}

#header-1 {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--morado);
    padding: 0px 30px;
}

#header-1>div:nth-child(1) {
    height: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

#header-1>div:nth-child(2){
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#header-1>div:nth-child(2) a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#header-1>div:nth-child(2) svg{
    fill: var(--amarillo);
    height: 20px;
}

#header-1>div:nth-child(2) span{
    color: #fff;
    font-size: 14px;
}

.btn-red-h svg {
    height: 20px;
    fill: var(--amarillo);
}

#header-2 {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    background-color: #fff;
    box-shadow: var(--shadow-1);
}

.btn-h-home img{
    height: 88px;
}

#header-2> nav >ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    list-style-type: none;
}

#header-2> nav > ul > li:not(:last-child)> a{
    color: var(--grid-4);
    font-size: 18px;
    padding: 4px 0px;
    transition: ease all 0.6s;
    border-bottom: 2px solid transparent;
	font-family: "Gotham-Bold";
    display: flex;
    justify-content: center;
    align-items: center;
}

#header-2> nav > ul > li:not(:last-child)> a span{
	font-family: "Gotham-Bold";
}

#header-2> nav > ul > li:not(:last-child)>a:hover{
    border-bottom: 2px solid var(--grid-4);
}


.sub-items-header {
	display: none;
	max-width: 250px !important;
	position: absolute;
	background-color: #fff;
	border-radius: 15px;
	top: 78%;
	z-index: 9999;
    flex-direction: column;
    box-shadow: var(--shadow-1);
    overflow: hidden;
}

.content-sub-items-header:hover ul {
	display: flex;
    padding: 10px;
    gap: 6px;
}

.sub-items-header > li > a {
    width: 100%;
	display: flex;
	justify-content: flex-start !important;
	align-items: center;
	color: var(--grid-4) ;
	border-bottom: 2px solid var(--grid-4);
	padding: 5px 30px 5px 5px;
	transition: ease all 0.6s;
	font-family: "Gotham-Bold";
}

.sub-items-header > li > a:hover {
    background-color: var(--morado);
    color: #fff;
    border-radius: 6px;
	border-bottom: 2px solid var(--amarillo);
}

.sub-items-header > li {
    width: 100%;
}

.btn-header-sub svg {
    width: 25px;
    fill: var(--grid-4);
}

.btn-h {
    background-color: var(--amarillo);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 2px 10px;
    border-radius: 20px;
}

.btn-h span{
    color: #fff;
}

.btn-h svg{
    width: 25px;
    fill: #fff;
}

main {
    margin-top: 120px;
}

#menu-btn {
    display: none;
}

#menu-btn svg {
    width: 40px;
}

#menu-btn svg path{
    fill: var(--morado);
}

.p-title {
    font-size: 22px;
    color: var(--morado);
    display: flex;
    justify-content: center;
    align-items: center;
	font-family: "Gotham-Bold";
}

.p-title svg {
    width: 20px;
    fill: var(--morado);
}

.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;
}

.bnn svg{
    fill: var(--morado);
}

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer >div:nth-child(1){
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("/src/img/footer.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 80px 0px 40px;
}

footer >div:nth-child(1)>div{
    width: 80%;
    display: flex;
}

footer >div:nth-child(1)>div>div{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
footer >div:nth-child(1)>div>div:nth-child(1){
    width: 40%;
}
footer >div:nth-child(1)>div>div:nth-child(2){
    width: 40%;
}
footer >div:nth-child(1)>div>div:nth-child(3){
    width: 20%;
}

footer >div:nth-child(1)>div>div h3{
    font-size: 20px;
	font-family: "Gotham-Bold";
    color: #fff;
}

footer >div:nth-child(1)>div>div ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    color: #fff;
}

footer >div:nth-child(1)>div>div ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

footer >div:nth-child(1)>div>div ul li a {
    width: 100%;
    font-size: 16px;
    color: #fff;
    font-weight: lighter;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

footer >div:nth-child(1)>div>div ul li a svg{
    width: 15px;
    fill: #fff;
}

.footer-contacto {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 5px !important;
}

.footer-contacto >svg{
    width: 15px;
    fill: #fff;
}

.footer-contacto >div{
    max-width: calc(100% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.footer-contacto >div span{
    font-size: 16px;
	font-family: "Gotham-Bold";
    color: #fff;
}
.footer-contacto >div span{
    font-size: 16px;
    font-weight: lighter;
    color: #fff;
}

footer >div:nth-child(2) {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 80px;
    background-color: var(--grid-3);
}

footer >div:nth-child(2) span {
    font-size: 18px;
    color: #fff;
	font-family: "Gotham-Bold";
}
footer >div:nth-child(2) p {
    font-size: 14px;
    color: #fff;
    font-weight: lighter;
}

.btn-popup-experiencia {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.btn-popup-experiencia svg{
    fill: #fff;
    width: 25px;
}

.btn-ver-mas-opiniones {
    font-size: 25px;
    color: #fff;
    background-color: var(--morado);
    box-shadow: var(--shadow-1);
    padding: 0px 10px;
    border-radius: 4px;
    margin-top: 30px;
}

.content-btn-go-back {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20px ;
}

@media screen and (max-width: 1024px) {
    #header-1>div {
        width: 100%;
        padding: 0px 6px;
        justify-content: center;
        gap: 10px;
    }

    #header-1 {
        gap: 20px;
        padding: 0px 10px;
    }

    #header-1>div:nth-child(1) {
        justify-content: flex-start;
        gap: 20px;
    }

    #header-1>div:nth-child(2) {
        justify-content: flex-end;
    }

    #header-1>div:nth-child(2) {
        gap: 20px;
    }

    #header-1>div a span {
        display: none;
    }

    #menu-btn {
        display: flex;
    }

    nav {
        display: none;
    }

    nav.active {
        width: 100%;
        display: flex;
        position: absolute;
        background-color: #fff;
        top: 120px;
        left: 0px;
        box-shadow: var(--shadow-2);
    }

    #header-2> nav> ul {
        flex-direction: column;
    }

    #header-2> nav> ul {
        width: 100%;
        padding: 20px;
        gap: 15px;
    }

    #header-2 {
        padding: 0px 15px;
        justify-content: space-between;
    }

    .principal-title h2 {
        font-size: 30px;
        line-height: 22px;
    }

    .section-text {
        width: 100%;
        padding: 20px;
        font-size: 16px;
    }

    .bnn {
        width: 30px;
        height: 30px;
    }

    #bnn-izq {
        left: 3%;
    }

    #bnn-der {
        right: 3%;
    }

    .principal-title {
        padding: 20px 0px;
    }

    .principal-title.interno h2 {
        text-align: center;
    }

    #s-resenas {
        padding: 0px;
    }

    #banner-interno .principal-title.interno h2 {
        font-size: 35px;
        line-height: 28px;
    }

    #banner-interno .principal-title {
        padding: 0px !important;
    }

    .p-title {
        font-size: 20px;
    }

    footer >div:nth-child(1)>div {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 20px;
    }
    
    footer >div:nth-child(1)>div>div:nth-child(1){
        width: 100%;
        display: flex;
    }
    footer >div:nth-child(1)>div>div:nth-child(2){
        width: 100%;
    }
    footer >div:nth-child(1)>div>div:nth-child(3){
        width: 100%;
    }

    footer >div:nth-child(1)>div>div {
        justify-content: center;
        align-items: center;
    }

    footer >div:nth-child(2) {
        flex-direction: column;
        padding: 8px;
    }

    .content-redes-f svg {
        width: 30px !important;
        height: 30px !important;
    }

    .sub-items-header {
        max-width: 100% !important;
        position: unset;
        padding: 20px;
        list-style: none;
    }

    .content-sub-items-header {
        width: 100%;
    }

    #principal-banner-interno, #principal-banner-interno img {
        height: 200px;
        object-fit: cover;
    }

    #principal-banner-interno h2 span {
        font-size: 25px;
    }

    .content-gal-popup {
        grid-template-columns: 1fr;
    }

    .popup-content {
        padding: 40px 20px;
    }

    .popup-content > h3 {
        font-size: 25px;
    }
}
