@import url('https://fonts.googleapis.com/css2?family=Barlow: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');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Doodle+Shadow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lemon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');
@import url('footer.css'); 

:root{
    --categorias: #303634;
}

*{
    color: black;
    margin: 0;
    padding: 0;
    font-family: "Barlow", sans-serif;
    font-size: 22px;
    text-decoration: none;
}
body{
    max-width: 100%;
    position: relative;
}

/* HEADER */

header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0.5rem;
    border-bottom: solid 1px;

    .logo{ width: clamp(11rem, 2vw + 1rem, 12rem); }

    .articulos{
        position: relative;
        display: flex;
        gap: 1rem;
        p{ font-size: 0.7rem; padding: 0.6rem; position: relative; }
        .categoria::after, .categoria:hover::after{
            content: "";
            position: absolute;
            border: solid 0px;
            width: 0;
            bottom: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.25s linear;
        }
        .productos::after, .categoria:hover::after{
            border: solid 1px;
            width: 100%;
        }
        .productos, .categoria:hover{ font-weight: bold; }
        .fa-bars{ font-size: 1.3rem; }
    }
    .sidebar{
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 180px;
        z-index: 999;
        background-color: rgba(255, 255, 255, 0.5);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        p{ width: 100%; }
        a{ width: 100%; }
    }
}

.seccion-LF{
    position: relative;

    .div-titulo-LF{
        border-top: 1px solid black;
        border-bottom: 1px solid black;
    }
        
    .div-info-LF{
        padding: 1rem;

        .div-info-LF-img{
            display: flex;
            justify-content: center;

            img{
                margin-bottom: 0.6rem;
                padding: 0.5rem;
                width: 10rem;
                border-radius: 1rem;
            }
        }
        .div-info-LF-txt{
            margin-bottom: 1rem;

            .div-info-LF-titulo{
                h1{
                    margin-bottom: 1.2rem;
                    font-family: 'Courgette', cursive;
                    text-align: center;
                }
            }
            .div-info-LF-p{
                display: flex;
                justify-content: center;
                align-items: center;

                b{ font-size: 0.8rem; }
                span{
                    font-size: 0.6rem;
                    font-weight: bold;
                }
            }
        }
        .div-btn-LF{
            display: flex;
            justify-content: center;

            button{
                padding: 0.75rem 2rem;
                font-size: 0.8rem;
                border: none;
                border-radius: 10px;
                background: transparent;
                cursor: pointer;
                font-weight: 600;
                transition: all 0.3s ease;
                margin-top: 1rem;
                background: linear-gradient(to right, lightblue, lightgreen);
                box-shadow: 0 2px 10px 1px rgba(50, 50, 50, 0.5);
            }
            button:hover{ 
                color: white; 
                background: linear-gradient(to left, lightblue, lightgreen); 
                scale: 1.05;
            }
        }
    }
}

/* FOOTER */

footer{
    width: 100%;
    background-image: linear-gradient(to right, lightblue, lightgreen);
    margin: 0.8rem 0 0 0;
}

@media (max-width: 400px){
    html, body{ overflow-x: hidden; }
    .Nav_compu{ display: none; }

    .div-titulo-LF{
        padding: 0.5rem;
        display: flex;
        justify-content: center;
        border-top: 1px solid black;
        border-bottom: 1px solid black;
        background-image: linear-gradient(to right, lightgray, white, lightgray);

        h1{
            font-size: 0.8rem;
            text-align: center;
            font-family: 'Lemon', serif;
            padding: 1rem;
            transition: 0.3s ease-in-out;
            border-radius: 10px;
        }
    }

    .div-div-info-LF-p{
        font-size: 0.6rem;
        box-shadow: 0 5px 10px rgba(128, 128, 128, 0.5);
        padding: 0.8rem;
        border-radius: 15px;
        text-align: justify;
        width: 80%;
    }

    .div-info-footer{
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 1.5rem 0;

        .footer-info{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .logo-nombre{
                display: flex;
                align-items: center;
                margin-bottom: 0.2rem;

                p{ font-size: 0.8rem; }
                img{
                    width: 1.5rem;
                    height: 1.5rem;
                    margin-right: 5px;
                }
            }
            .footer-contacto{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
    
                p, a{
                    text-decoration: none;
                    text-align: center;
                    font-size: 0.45rem;
                    margin: 0.2rem 0;
                }
                a{ color: blue; }
                a:hover{ text-decoration: underline; }
            }
        }

        .redes-sociales{
            display: flex;
            flex-direction: column;
            width: 30%;
            gap: 1rem;

            p{ font-size: 0.7rem; text-align: center; }

            .redes-sociales-links{
                display: flex;
                justify-content: space-between;
                align-items: center;
                a{ display: flex; align-items: center; }
                .red{ 
                    width: 0.7rem;
                    object-fit: contain;
                    cursor: pointer;
                    filter: grayscale(100%);
                    transition: all 0.3s linear;
                }
                .red:hover{ filter: grayscale(0%); scale: 1.1; }
            }
        }
    }
    .mensaje{
        text-align: center;
        a{ font-size: 0.5rem; }
        a:hover{ text-decoration: underline; }
    }
    hr{
        margin-top: 2rem;
        border-color: black;
        opacity: 0.5;
    } 
    .footer-derechos{

        .derechos{
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.25rem;

            .logo-nombre{
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0.3rem 0;

                img{
                    width: 0.9rem;
                    height: 0.9rem;
                    margin-right: 5px;
                }
                p{ font-size: 0.8rem; }
            }
            .copy{
                text-align: center;
                p{ font-size: 0.6rem; }
            }
        }
    }
}
@media (min-width: 401px) and (max-width: 600px){ /* celulares */
    html, body{ overflow-x: hidden; }
    .Nav_compu{ display: none; }

    .div-titulo-LF{
        padding: 0.5rem;
        display: flex;
        justify-content: center;
        border-top: 1px solid black;
        border-bottom: 1px solid black;
        background-image: linear-gradient(to right, lightgray, white, lightgray);

        h1{
            font-size: 0.9rem;
            text-align: center;
            font-family: 'Lemon', serif;
            padding: 1rem;
            transition: 0.3s ease-in-out;
            border-radius: 10px;
        }
    }

    .div-div-info-LF-p{
        font-size: 0.6rem;
        box-shadow: 0 5px 10px rgba(128, 128, 128, 0.5);
        padding: 0.8rem;
        border-radius: 15px;
        text-align: justify;
        width: 80%;
    }

    html, body{ overflow-x: hidden; }
        .Nav_compu{ display: none; }

        .div-info-footer{
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 1.5rem 0;

            .footer-info{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                .logo-nombre{
                    display: flex;
                    align-items: center;
                    margin-bottom: 0.2rem;

                    p{ font-size: 0.8rem; }
                    img{
                        width: 1.5rem;
                        height: 1.5rem;
                        margin-right: 5px;
                    }
                }
                .footer-contacto{
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
        
                    p, a{
                        text-decoration: none;
                        text-align: center;
                        font-size: 0.45rem;
                        margin: 0.2rem 0;
                    }
                    a{ color: blue; }
                    a:hover{ text-decoration: underline; }
                }
            }

            .redes-sociales{
                display: flex;
                flex-direction: column;
                width: 30%;
                gap: 1rem;

                p{ font-size: 0.7rem; text-align: center; }

                .redes-sociales-links{
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    a{ display: flex; align-items: center; }
                    .red{ 
                        width: 0.7rem;
                        object-fit: contain;
                        cursor: pointer;
                        filter: grayscale(100%);
                        transition: all 0.3s linear;
                    }
                    .red:hover{ filter: grayscale(0%); scale: 1.1; }
                }
            }
        }
        .mensaje{
            text-align: center;
            a{ font-size: 0.5rem; }
            a:hover{ text-decoration: underline; }
        }
        hr{
            margin-top: 2rem;
            border-color: black;
            opacity: 0.5;
        } 
        .footer-derechos{

            .derechos{
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 1.25rem;

                .logo-nombre{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0.3rem 0;

                    img{
                        width: 0.9rem;
                        height: 0.9rem;
                        margin-right: 5px;
                    }
                    p{ font-size: 0.8rem; }
                }
                .copy{
                    text-align: center;
                    p{ font-size: 0.6rem; }
                }
            }
        }
}
@media (min-width: 601px) and (max-width: 800px){ /* tablets */
    html, body{ overflow-x: hidden; }
    .Nav_compu{ display: none; }

    .div-titulo-LF{
        padding: 0.5rem;
        display: flex;
        justify-content: center;
        border-top: 1px solid black;
        border-bottom: 1px solid black;
        background-image: linear-gradient(to right, lightgray, white, lightgray);

        h1{
            font-size: 1rem;
            text-align: center;
            font-family: 'Lemon', serif;
            padding: 1rem;
            transition: 0.3s ease-in-out;
            border-radius: 10px;
        }
    }

    .div-div-info-LF-p{
        font-size: 0.6rem;
        box-shadow: 0 5px 10px rgba(128, 128, 128, 0.5);
        padding: 0.8rem;
        border-radius: 15px;
        text-align: justify;
        width: 80%;
    }

    .div-info-footer{
        padding: 2rem;
        display: flex;
        justify-content: space-around;
        align-items: center;

        .footer-info{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .logo-nombre{
                display: flex;
                align-items: center;
                margin-bottom: 0.2rem;

                p{ font-size: 1rem; }
                img{
                    width: 2rem;
                    height: 2rem;
                    margin-right: 5px;
                }
            }
            .footer-contacto{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
    
                p, a{
                    text-decoration: none;
                    text-align: center;
                    font-size: 0.6rem;
                    margin: 0.2rem 0;
                }
                a{ color: blue; }
                a:hover{ text-decoration: underline; }
            }
        }

        .redes-sociales{
            display: flex;
            flex-direction: column;
            width: 30%;
            gap: 1rem;

            p{ font-size: 1rem; text-align: center; }

            .redes-sociales-links{
                display: flex;
                justify-content: space-between;
                align-items: center;
                a{ display: flex; align-items: center; }
                .red{ 
                    width: 1.3rem;
                    object-fit: contain;
                    cursor: pointer;
                    filter: grayscale(100%);
                    transition: all 0.3s linear;
                }
                .red:hover{ filter: grayscale(0%); scale: 1.1; }
            }
        }
    }
    .mensaje{
        text-align: center;
        a{ font-size: 0.67rem; }
        a:hover{ text-decoration: underline; }
    }
    hr{
        margin-top: 2rem;
        border-color: black;
        opacity: 0.5;
    } 
    .footer-derechos{

        .derechos{
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.25rem;

            .logo-nombre{
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0.3rem 0;

                img{
                    width: 20px;
                    height: 20px;
                    margin-right: 5px;
                }
                p{ font-size: 0.8rem; }
            }
            .copy{
                text-align: center;
                p{ font-size: 15px; }
            }
        }
    }
}
@media (min-width: 801px) and (max-width: 900px){
    body, html{ overflow-x: hidden; }
    .Nav_compu{ display: block; }
    .barra{ display: none; }

    .div-titulo-LF{
        padding: 0.5rem;
        display: flex;
        justify-content: center;
        border-top: 1px solid black;
        border-bottom: 1px solid black;
        background-image: linear-gradient(to right, lightgray, white, lightgray);

        h1{
            font-size: 1.15rem;
            text-align: center;
            font-family: 'Lemon', serif;
            padding: 1rem;
            transition: 0.3s ease-in-out;
            border-radius: 10px;
        }
    }

    .div-div-info-LF-p{
        font-size: 0.6rem;
        box-shadow: 0 5px 10px rgba(128, 128, 128, 0.5);
        padding: 0.8rem;
        border-radius: 15px;
        text-align: justify;
        width: 80%;
    }

    .div-info-footer{
        padding: 2rem;
        display: flex;
        justify-content: space-around;
        align-items: center;

        .footer-info{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .logo-nombre{
                display: flex;
                align-items: center;
                margin-bottom: 0.2rem;

                p{ font-size: 1rem; }
                img{
                    width: 2rem;
                    height: 2rem;
                    margin-right: 5px;
                }
            }
            .footer-contacto{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
    
                p, a{
                    text-decoration: none;
                    text-align: center;
                    font-size: 0.6rem;
                    margin: 0.2rem 0;
                }
                a{ color: blue; }
                a:hover{ text-decoration: underline; }
            }
        }

        .redes-sociales{
            display: flex;
            flex-direction: column;
            width: 30%;
            gap: 1rem;

            p{ font-size: 1rem; text-align: center; }

            .redes-sociales-links{
                display: flex;
                justify-content: space-between;
                align-items: center;
                a{ display: flex; align-items: center; }
                .red{ 
                    width: 1.3rem;
                    object-fit: contain;
                    cursor: pointer;
                    filter: grayscale(100%);
                    transition: all 0.3s linear;
                }
                .red:hover{ filter: grayscale(0%); scale: 1.1; }
            }
        }
    }
    .mensaje{
        text-align: center;
        a{ font-size: 0.67rem; }
        a:hover{ text-decoration: underline; }
    }
    hr{
        margin-top: 2rem;
        border-color: black;
        opacity: 0.5;
    } 
    .footer-derechos{

        .derechos{
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.25rem;

            .logo-nombre{
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0.3rem 0;

                img{
                    width: 20px;
                    height: 20px;
                    margin-right: 5px;
                }
                p{ font-size: 0.8rem; }
            }
            .copy{
                text-align: center;
                p{ font-size: 15px; }
            }
        }
    }
}
@media (min-width: 901px) and (max-width: 1200px) { /* Computadoras */
    body, html{ overflow-x: hidden; }
    .barra{ display: none; }

    .div-titulo-LF{
        padding: 0.5rem;
        display: flex;
        justify-content: center;
        border-top: 1px solid black;
        border-bottom: 1px solid black;
        background-image: linear-gradient(to right, lightgray, white, lightgray);

        h1{
            font-size: 1.15rem;
            text-align: center;
            font-family: 'Lemon', serif;
            padding: 1rem;
            transition: 0.3s ease-in-out;
            border-radius: 10px;
        }
    }

    .div-div-info-LF-p{
        font-size: 0.6rem;
        box-shadow: 0 5px 10px rgba(128, 128, 128, 0.5);
        padding: 0.8rem;
        border-radius: 15px;
        text-align: justify;
        width: 70%;
    }

    .div-info-footer{
        padding: 2rem;
        display: flex;
        justify-content: space-around;
        align-items: center;

        .footer-info{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .logo-nombre{
                display: flex;
                align-items: center;
                margin-bottom: 0.2rem;

                p{ font-size: 1rem; }
                img{
                    width: 2rem;
                    height: 2rem;
                    margin-right: 5px;
                }
            }
            .footer-contacto{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
    
                p, a{
                    text-decoration: none;
                    text-align: center;
                    font-size: 0.6rem;
                    margin: 0.2rem 0;
                }
                a{ color: blue; }
                a:hover{ text-decoration: underline; }
            }
        }

        .redes-sociales{
            display: flex;
            flex-direction: column;
            width: 30%;
            gap: 1rem;

            p{ font-size: 1rem; text-align: center; }

            .redes-sociales-links{
                display: flex;
                justify-content: space-between;
                align-items: center;
                a{ display: flex; align-items: center; }
                .red{ 
                    width: 1.3rem;
                    object-fit: contain;
                    cursor: pointer;
                    filter: grayscale(100%);
                    transition: all 0.3s linear;
                }
                .red:hover{ filter: grayscale(0%); scale: 1.1; }
            }
        }
    }
    .mensaje{
        text-align: center;
        a{ font-size: 0.67rem; }
        a:hover{ text-decoration: underline; }
    }
    hr{
        margin-top: 2rem;
        border-color: black;
        opacity: 0.5;
    } 
    .footer-derechos{

        .derechos{
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.25rem;

            .logo-nombre{
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0.3rem 0;

                img{
                    width: 20px;
                    height: 20px;
                    margin-right: 5px;
                }
                p{ font-size: 0.8rem; }
            }
            .copy{
                text-align: center;
                p{ font-size: 15px; }
            }
        }
    }
}
@media (min-width: 1201px) { /* Televisiones */
    body, html{ overflow-x: hidden; }
    .barra{ display: none; }

    .div-titulo-LF{
        padding: 0.5rem;
        display: flex;
        justify-content: center;
        border-top: 1px solid black;
        border-bottom: 1px solid black;
        background-image: linear-gradient(to right, lightgray, white, lightgray);

        h1{
            font-size: 1.15rem;
            text-align: center;
            font-family: 'Lemon', serif;
            padding: 1rem;
            transition: 0.3s ease-in-out;
            border-radius: 10px;
        }
    }

    .div-div-info-LF-p{
        font-size: 0.6rem;
        box-shadow: 0 5px 10px rgba(128, 128, 128, 0.5);
        padding: 0.8rem;
        border-radius: 15px;
        text-align: justify;
        width: 40%;
    }

    .div-info-footer{
        padding: 2rem;
        display: flex;
        justify-content: space-around;
        align-items: center;

        .footer-info{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .logo-nombre{
                display: flex;
                align-items: center;
                margin-bottom: 0.2rem;

                p{ font-size: 1rem; }
                img{
                    width: 2rem;
                    height: 2rem;
                    margin-right: 5px;
                }
            }
            .footer-contacto{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
    
                p, a{
                    text-decoration: none;
                    text-align: center;
                    font-size: 0.6rem;
                    margin: 0.2rem 0;
                }
                a{ color: blue; }
                a:hover{ text-decoration: underline; }
            }
        }

        .redes-sociales{
            display: flex;
            flex-direction: column;
            width: 30%;
            gap: 1rem;

            p{ font-size: 1rem; text-align: center; }

            .redes-sociales-links{
                display: flex;
                justify-content: space-between;
                align-items: center;
                a{ display: flex; align-items: center; }
                .red{ 
                    width: 1.3rem;
                    object-fit: contain;
                    cursor: pointer;
                    filter: grayscale(100%);
                    transition: all 0.3s linear;
                }
                .red:hover{ filter: grayscale(0%); scale: 1.1; }
            }
        }
    }
    .mensaje{
        text-align: center;
        a{ font-size: 0.67rem; }
        a:hover{ text-decoration: underline; }
    }
    hr{
        margin-top: 2rem;
        border-color: black;
        opacity: 0.5;
    } 
    .footer-derechos{

        .derechos{
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.25rem;

            .logo-nombre{
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0.3rem 0;

                img{
                    width: 20px;
                    height: 20px;
                    margin-right: 5px;
                }
                p{ font-size: 0.8rem; }
            }
            .copy{
                text-align: center;
                p{ font-size: 15px; }
            }
        }
    }
}