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

body {
    min-height: 100vh;
    background-size: cover;
    background-position: center;

}

/* Header */

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

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(50px);
    z-index: -1;
}

.logo {
    display: flex;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

#logo-header {
    height: 80px;
    width: 80px;

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

.navbar a.active {
    color: #000000;
    font-weight: 700;
    border-bottom: 2px solid #000000;
}

.navbar a:hover {
    color: #000000;
    transform: scale(1.2);
}

#check {
    display: none;
}

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



/* Footer */

.footer {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    min-height: 100px;
    padding: 2rem 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 10px 5px;
    flex-wrap: wrap;
}

.icon-elem {
    list-style: none;
}

.icon-footer {
    color: #000000;
    font-size: 32px;
    display: inline-block;
    margin: 0 10px;
    transition: 0.5s;
}

.icon-footer:hover {
    color: #f3613c;
    transform: translateY(-10px);
}


.footer-menu {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.menu-elem {
    list-style: none;
}

.menu-icon-footer {
    color: #000000;
    font-size: 18px;
    display: inline-block;
    text-decoration: none;
    margin: 5px 10px;
    opacity: 0.8;
    transition: 0.3s;
}

.menu-icon-footer:hover {
    color: #f3613c;
    opacity: 1;
    transform: translateY(-5px);
}

.text-footer {
    color: #000000;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 15px;
}


/* boton de whatsapp */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.08);
}




/* Responsive */

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


/* Móviles */
@media (max-width: 858px) {
    .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(50px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: .3s ease;
    }

    #check:checked~.navbar {
        height: 17rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        margin-left: 0;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }

    #check:checked~.navbar a {
        transform: translateY(0);
        transition-delay: calc(.15s * var(--i));
        opacity: 1;
    }
}
