@import url(variables.css?v0);
@import url(se1.css?v0);
@import url(se2.css?v0);
@import url(se3.css?v0);
@import url(se4.css?v0);
@import url(se5.css?v0);
@import url(gallery.css?v0);
@import url(siteGallery.css?v0);

*{
    margin: 0;
    padding: 0;
}

/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--orange);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html{
    scroll-behavior: smooth;
}

img{
    pointer-events: none;
}

header{
    width: 100%;
    height: 100px;
    background-color: var(--white);

    display: flex;
    align-items: center;
    position: fixed;
    z-index: 3;
}

header #logo{
    width: 180px;
    display: block;
    object-fit: contain;

    margin-left: 80px;
   
}

header nav{
    margin-right: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

header nav .option{
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    color: var(--text);
    text-decoration: none;


    text-transform: uppercase;
    font-family: var(--jose);
    font-weight: var(--f2);
    cursor: pointer;
}

[active="true"]::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    margin-top: 20px;
    left: 0;
    background-color: var(--orange);
}

header nav .option:not([active="true"])::after{
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    margin-top: 20px;
    right: 0;

    /* left: 50%; */
    /* transform: translate(-50%); */
    
    background-color: var(--text);
    transition: 0.3s;
}

header nav .option:not([active="true"]):hover::after{
    width: 100%;
    transition: 0.3s;
}

header #header-contact-info{
    position: absolute;
    right: 80px;

    display: flex;
}

header #header-contact-info p{
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.4em;
    cursor: pointer;
    transition: 0.3s;
}

header #header-contact-info p:hover{
    transform: scale(1.2);
    transition: 0.3s;
}

#menu-check{
    display: none;
}

.menu-icon{
    margin-left: auto;
    width: 30px;
    height: 28px;
    display: none;
    flex-flow: wrap;
    justify-items: center;
    position: fixed;
    margin-top: 20px;
    right: 35px;
    transform: scale(1.4);
    transition: 0.3s;
    z-index: 5;
    cursor: pointer;
}

.menu-icon div{
    
    width: 30px;
    height: 1px;
    transition: 0.4s;
    background-color: #111;
    
}


#menu-check:checked ~ #nav-menu{
    transform: translateX(0%);
    transition: 0.4s;
} 

#menu-check:checked ~ #dim-menu{
    display: flex;
} 

#menu-check:checked ~ .menu-icon div:nth-child(1){
    transform: rotate(45deg) translateY(10px) translateX(2px);
    transition: 0.3s;
} 

#menu-check:checked ~ .menu-icon div:nth-child(2){
    transition: 0.3s;
    display: none;
} 

#menu-check:checked ~ .menu-icon div:nth-child(3){
    transform: rotate(-45deg) translateY(-8px);
    transition: 0.3s;
} 

/* Breakpoint for the Header Nav Menu */
@media (max-width:960px) {
    header nav{
        width: 60%;
        height: 100%;
        padding-top: 25%;
        position: fixed;
        display: flex;
        flex-flow: wrap;
        align-content: flex-start;
        justify-items: flex-start;
        top: 0;
        left: 0;
        transform: translate(-0%);
        background-color: var(--white);

        z-index: 3;

        transform: translateX(-100%);
        transition: 0.3s;
    }

    .menu-icon{
        display: flex;
    }

    header nav .option{
        width: 90%;
        margin-right: 30px;
        height: 30px;
        text-align: right;
        font-size: 1.4em;

        margin-top: 20px;
        margin-bottom: 20px;
    }

    [active="true"]::after{
        width: 50%;
        right: 0;
        left: auto;
        margin-top: 25px;
    }

    header nav .option:not([active="true"])::after{
        margin-top: 25px;
    }

    header nav .option:not([active="true"]):hover::after{
        width: 50%;
        transition: 0.3s;
    }

    #dim-menu{
        width: 100%;
        height: 100%;
        position: fixed;
        background-color: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(6px);
        top: 0;
        left: 0;
        z-index: 2;
        display: none;
    }

    header #header-contact-info{
       top: 510px;
       transform: translate(-100%);
       transition: 0.3s;
       left: 0;
       right: auto;
       z-index: 3;
    } 

    #menu-check:checked ~ #header-contact-info{
       
        transform: translate(70%);
    } 

    header #header-contact-info .icon-share{
        display: none;
    }
}

@media (min-width:960px) and (max-width:1200px) {
    header nav{
        width: 60%;
        left: 55%;
    }
}

@media (max-width:500px) {
    header #logo{
        margin-left: 95px;
    }
}

.divider{
    width: 100%;
}

.title-sub{
    margin-left: auto;
    margin-right: auto;
    height: 2px;
}

[widthbar="10"]{
    width: 10%;
}

[widthbar="20"]{
    width: 20%;
}

[bar="white"]{
    background-color: rgba(255, 255, 255, 0.6);
}

[bar="orange"]{
    background-color: var(--orange);
}

[bar="black"]{
    background-color: var(--text);
}


/* Footer Styles */
footer{
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    padding-top: 60px;
    background-color: var(--darkblue);
}

footer a{
    color: var(--white);
    text-decoration: none;
}

footer b{
    color: var(--white);
    font-weight: bolder;
}

footer a:hover{
    color: var(--blueaction);
    text-decoration: underline;
    cursor: pointer;
}

[footer-active="true"]::before{
    content: '';
    background-color: var(--orange);
    height: 15px;
    width: 5px;
    position: absolute;
    margin-left: -10px;
    margin-top: 2px;
}



footer #footer-contacto .icon-phone::before{
    color: #ebeff2;
    text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

footer #footer-contacto .icon-location::before{
    color: #ebeff2;
    text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}


footer #footer-contacto{
    width: 20%;
    margin-right: 100px;
}

footer #footer-contacto div{
    width: 100%;
    font-family: var(--mont);
    margin: 10px 0;
}

footer #footer-contacto img{
    width: 200px;
    margin-bottom: 30px;
}

footer #footer-info{
    width: 20%;
}

footer #footer-info #titulo-logo{
    font-family: var(--jose);
    color: var(--white);
    margin-bottom: 30px;
    height: 54px;
    font-size: 1.4em;
}

footer #footer-info div{
    width: 100%;
    font-family: var(--mont);
    color: var(--white);
    margin: 10px 0;
}


footer #footer-social #social-titulo{
    font-family: var(--jose);
    color: var(--white);
    margin-bottom: 30px;
    height: 54px;
    font-size: 1.4em;
}

footer #footer-social div{
    width: 100%;
    font-family: var(--mont);
    margin: 10px 0;
    color: var(--white);
}

#footer-bottom{
    width: 100%;
    border-top: 1px solid #fff;
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: var(--mont);
    color: var(--white) !important;
}

#footer-bottom b{
    color: var(--white) !important;
}

@media (max-width:900px){
    
    footer #footer-contacto{
        margin-right: 10%;
        width: 100%;
        justify-content: center;
        /* margin-right: 10%; */
        display: flex;
        flex-flow: wrap;
    }
    
    footer #footer-contacto div {
        width: 90%;
        margin: 10px 0;
    }
    
    footer #footer-info{
        margin-right: 10%;
        width: 100%;
        justify-content: center;
        /* margin-right: 10%; */
        display: flex;
        flex-flow: wrap;
    }
    
    footer #footer-info #titulo-logo{
        height: auto;
        margin-top: 40px;
        margin-bottom: 10px;
    }
    
    footer #footer-info div{
        width: 90%;
        margin: 10px 0;
    }
    
    #footer-social{
        margin-right: 10%;
        width: 100%;
        justify-content: center;
        /* margin-right: 10%; */
        display: flex;
        flex-flow: wrap;
    }
    
    footer #footer-social #social-titulo{
        height: auto;
        margin-top: 40px;
        margin-bottom: 10px;
    }
    
    footer #footer-social div{
        width: 90%;
        margin: 10px 0;
    }
    
    #footer-bottom{
        width: 90%;
    }
}

#top{
    width: 60px;
    height: 60px;
    background-color: var(--darkerblue);
    color:#fff;
    position: fixed;
    bottom: 24px;
    right: 24px;
/*    display: flex;*/
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 3em;
    font-weight: bold;
    border-radius: 0px;
    display: none;
    cursor: pointer;
    z-index: 2;

}
#top:hover{
    background-color: var(--orangeaction);
    color: #111;
}

#top::before{
    margin-top: -5px;
}

#whats-button {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 0px;
    background-color: #25D366;
    font-size: 2em;
    z-index: 999;
    right: 100px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    -webkit-box-shadow: 10px 10px 8px -8px rgb(0 0 0 / 9%);
    -moz-box-shadow: 10px 10px 8px -8px rgba(0,0,0,0.09);
    box-shadow: 10px 10px 8px -8px rgb(0 0 0 / 9%);
    cursor: pointer;

    z-index: 2;
}

#whats-button a{
    color: #fff;
    text-decoration: none;
}
#whats-button:hover{
    background-color: #111;
   
}