/*=================== ALL HEADER ===================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    background-image:url()  no-repeat;
    background-size: cover;
    background-position: center;
}
img {
    max-width: 100%;  
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}
.header::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    backdrop-filter: blur(40px);
    z-index: -1;
}
.header::after { 
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transition: .5s;
}
.header:hover::after {
    left: 100%;
}

.logo-img {
    height: 100px;
    width: 200px;
}

.navbar a {
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
}

#check {
    display: none;
}

.icons {
    font-size: 2.8rem;
    right: 5%;
    color: #fff;
    cursor: pointer;
    display: none;
}


@media (max-width: 992px) {
    .header{
        padding: 1.3rem 5%;
    }
}

@media (max-width: 768px) {
    .icons{
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }
    
    .icons #close-icon {
        display: none;
    }

        #check:checked~.icons #close-icon {
        display: block;
        }

    .navbar {
        position: absolute ;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0, 0, 0, .1);
        backdrop-filter: blur(40px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        transition: .3s ease;
        overflow: hidden;
    }
    
    #check:checked~.navbar {
    height: 17.7rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        transition: .3s ease;
    }
    
    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.15s * var(--i));
        }
}
/*========================= Ubicaion ==================*/
section { 
    margin: 20px; 
    text-align: center; 

}

.mapa { 
    width: 100%; 
    height: 400px; 
    margin-bottom: 20px; 
    margin-top: 100px;
}



.galeria { 
    display: flex; 
    justify-content: 
    center; gap: 10px; 
    margin-bottom: 20px; }
.galeria img { 
    width: 800px; 
    height: 350px; 
    object-fit: cover; 
    border-radius: 8px; 
    box-shadow: 0 0 10px black; 
}

h2.titulo {
    border-color: grey;
    background-color: wheat;
    margin-top: 7%;
}

/*=================== ALL FOOTER ===================*/
.container {
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    background: noe;
    justify-content: center;
}

.iconst {
    background: #ecf0f3;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.container a {
    text-decoration: none;
}

.iconst:hover {
    background: #ecf0f3;
    box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

a.container {
    color: none
}

.facebook {
    color: rgb(15, 15, 206);
    font-size: 25px;
}

.instagram {
    color: rgb(79, 20, 134);
    font-size: 25px;
}

.tiktok {
    color: rgb(14, 11, 11);
}

.pie-pagina{
    width: 100%;
    background-color: #000000;
}

.pie-pagina .grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display:grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap:50px;
    padding: 45px 0px;
}

.pie-pagina .grupo-1 .box figure{
    height: 200px;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-pagina .grupo-1 .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}

.pie-pagina .grupo-1 .NOSOTROS h2{
    text-align: center;
    width: 200px;
    color: #b28405;
    margin-bottom: 25px;
    font-size: 20px;
}

.pie-pagina .grupo-1 .NOSOTROS p{
    text-align: center;
    width: 200px;
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}


.pie-pagina .grupo-1 .box figure img{
    width: 300px;
    height: 200px;
}
.pie-pagina .grupo-1 .ubicacion h2{
    margin-bottom: 20px;
    color: #b28405;
}

.pie-pagina .grupo-1 .ubicacion p{
    text-align: center;
    color: #fff;
}

.pie-pagina .grupo-1 .box h2{
    color: #b28405;
    margin-bottom: 25px;
    font-size: 20px;
}

.pie-pagina .grupo-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
}

.pie-pagina .grupo-2{
    background-color: #0a1a2a;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
}
.pie-pagina .grupo-2 small{
    font-size: 15px;
}

@media screen and (max-width:800px){
    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap:30px;
        padding: 35px 0px;
    }
}

.footer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}
/*=============================================================*/