* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Overpass', sans-serif;
    font-weight: normal;
    font-size: 100%;
    background-image: url(./construccion.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

header{
    background-color: black;
    height: 65px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.menuNavegacion{
    background-color: black;
    height: 60;
    padding: 5px 5px;
    position: relative;
}

.logoPrincipal{
    position: absolute;
    left: 10px;
}

.checkbox{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    opacity: 0;
}

.cerrar{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    pointer-events: none;    
}

.menu{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    pointer-events: none;
}

.cerrar{
    display: none;
}

.checkbox:checked ~ .menu{
    display: none; 
}

.checkbox:checked ~ .cerrar{
    display: block;
}

.checkbox:checked ~ .menuItems{
    top: 60px;
}

.menuItems {
    width: 180px;
    position: absolute;
    top: -360px;
    z-index: -1;
    right: 0px;
    transition: 250ms;
}

.menuItems li {
    list-style: none;
}

.menuItems li a {
    text-decoration: none;
    background-color: black;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: white;
    font-weight: bold;
    gap: 10px;
}

.menuItems li a img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
}

.menuItems li a:hover {
    background-color: #69b0ee;
    color: black;
}


.copyright {
    font-weight: bold;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

footer {
    left: -1px;
    background-color: black;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.redes-sociales {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

    .redes-sociales a {
        color: white;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: color 0.3s ease;
    }

.social-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    vertical-align: middle;
    border-radius: 50%;
    object-fit: cover;
}

.Facebook:hover {
    color: #1877f2;
}

.Instagram:hover {
    color: #e1306c;
}

.Youtube:hover {
    color: #ff0000;
}

.Tiktok:hover {
    color: lightgray;
}


/* === RESPONSIVE === */

@media (max-width:850px) {
    .redes-sociales {
        display: none;
    }

}

@media (min-width: 1190px){
    .checkbox, .menu, .cerrar{
        display: none;
    }

    .menuItems{
        top: 0;
        z-index: 1;
        width: unset;
        display: flex;
    }

    .menuItems li a{
        height: 60px;
        padding: 40px,10px,10px,10px;
        margin-top: 0px;        
    }
}


