﻿.seccion-banner-carrusel {
    display: flex;
    width: 100%;
    aspect-ratio: 16/4;
    margin: auto;
    overflow: hidden;
    background: black;
}

.seccion-bienvenido {
    width: 100%;
    background-color: white;

    .container {
        width: fit-content;
        padding: 2% 6%;
        margin: auto;
        user-select: none;
    }

    .mensaje-bienvenido{
        .titulo {
            font-family: 'Raleway', sans-serif;
            font-size: 46px;
            font-weight: 900;
        }

        .texto {
            font-size: 30px;
            text-align: justify;
        }

        strong {
            font-size: 30px;
            font-weight: 800;
        }
    }

}

.banner-ofrecemos {
    width: 100%;
    background-color: white;
    border: unset;
}

.seccion-principal {
    width: 100%;
    background-image: url('../img/seccion-principal.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    .seccion-recientes {
        .container {
            flex-direction: column;
            width: 100%;
            padding-top: 80px;
            padding-bottom: 40px;
            margin: auto;
            text-align: center;
        
            > p {
                display: block;
                margin-bottom: 40px;
                font-family: 'Raleway', sans-serif;
                font-size: 24px;
                font-weight: 700;
                color: white;
            }

            .slider {
                position:relative;
                display: flex;
                justify-content: center;
                width: fit-content;
                margin:auto;
                overflow:hidden;

                .imagenes {
                    display: flex;
                    gap: 50px;
                    transition: transform 0.3s ease;

                    .imagen {
                        width: 260px;
                        aspect-ratio: 1;
                        font-family: 'Raleway', sans-serif;
                        font-size: 16px;
                        font-weight: 600;
                        color: white;

                        & img {
                            box-sizing:border-box;
                            width: 100%;
                            cursor: pointer;
                            border: 3px solid #E0E2E2;
                        }

                        & img:hover {
                            border: 3px solid #E80004;
                        }
                        
                        & p {
                            margin-top: 10px;
                            text-align: center;
                            cursor: pointer;
                            user-select: none;
                        }

                        & button {
                            padding:8px 25px;
                            margin-top: 10px;
                            font-weight: 600;
                            color:white;
                            cursor: pointer;
                            background-color: #BE0102;
                            border:unset;
                            border-radius:15px;
                        }
                    }
                }

                .btn-ant {
                    position: absolute;
                    left: 0;
                    width:40px;
                    aspect-ratio: 1;
                    font-size: 16px;
                    color:white;
                    cursor: pointer;
                    background-color: #555;
                    border: 1px solid #777;
                    border-radius:50px;
                }

                .btn-sig {
                    position: absolute;
                    right: 0;
                    width:40px;
                    aspect-ratio: 1;
                    font-size: 16px;
                    color:white;
                    cursor: pointer;
                    background-color: #555;
                    border: 1px solid #777;
                    border-radius:50px;
                }
            }
        }
    }

    .seccion-categorias {
        .container{
            flex-direction: column;
            width: 100%;
            padding-top: 40px;
            padding-bottom: 80px;
            margin: auto;
            text-align: center;

            & p {
                display: block;
                margin-bottom: 40px;
                font-family: 'Raleway', sans-serif;
                font-size: 24px;
                font-weight: 700;
                color: white;
            }

            .categorias {
                display: flex;
                gap: 60px;
                align-items: center;
                justify-content: center;

                a {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 275px;
                    aspect-ratio: 16/3;
                    padding: 3px 45px;
                    font-family: 'Raleway', sans-serif;
                    font-size: 28px;
                    font-weight: 700;
                    color: white;
                    text-decoration: none;
                    background-color: #BE0001;

                }
            }

            /*.slider {
                position:relative;
                display: flex;
                width: 100%;
                margin:auto;
                overflow:hidden;
                justify-content: center;
                .imagenes {
                    display: flex;
                    transition: transform 0.3s ease;
                    flex-direction: row;
                    .imagen {
                        display: flex;
                        text-align: center;
                        align-items: center;
                        cursor: pointer;
                        flex-direction: column;
                        justify-content: center;
                        & img {
                            display: block;
                            width: 180px;
                            border: 3px solid #E0E2E2;
                            box-sizing: border-box;
                            margin-left: 15px;
                            margin-right: 15px;
                            &:hover & p {
                                background-color: #E80004;
                            }

                        }

                        & img:hover {
                            border: 3px solid #E80004;
                        }

                        & p {
                            display: block;
                            width: fit-content;
                            padding: 3px 15px;
                            font-size: 17px;
                            border-radius: 15px;
                            background-color: #BE0001;
                            margin-top: 10px;
                        }

                    }
                }

                .btn-ant {
                    position: absolute;
                    top: 70px;
                    left: 15px;
                    width: 40px;
                    height: 40px;
                    padding:5px 11px;
                    font-size: 23px;
                    color:white;
                    border: 1px solid #777;
                    border-radius: 50px;

                    
                    background-color: #555;
                    cursor: pointer;
                }

                .btn-sig {
                    position: absolute;
                    top: 70px;
                    right: 15px;
                    width: 40px;
                    height: 40px;
                    padding:5px 11px;
                    font-size: 23px;
                    color:white;
                    border: 1px solid #777;
                    border-radius: 50px;

                    background-color: #555;
                    cursor: pointer;
                }
            }*/
        }
    }

    .seccion-vistos {
        .container {
            display: flex;
            flex-direction: column;
            width: 100%;
            padding-top: 80px;
            padding-bottom: 80px;
            margin: auto;
            text-align: center;

            > p {
                display: block;
                margin-bottom: 40px;
                font-family: 'Raleway', sans-serif;
                font-size: 24px;
                font-weight: 700;
                color: white;
            }

            .slider {
                position:relative;
                display: flex;
                justify-content: center;
                width: 100%;
                margin:auto;
                overflow:hidden;

                .imagenes {
                    display: flex;
                    gap: 50px;
                    transition: transform 0.3s ease;

                    .elemento {
                        width: 200px;
                        aspect-ratio: 1;
                        font-family: 'Raleway', sans-serif;
                        font-size: 16px;
                        font-weight: 600;
                        color: white;
                        text-align: center;

                        & img {
                            box-sizing: border-box;
                            width: 100%;
                            cursor: pointer;
                            border: 3px solid #E0E2E2;
                        }

                        & img:hover {
                            border: 3px solid #E80004;
                        }

                        & p {
                            margin-top: 10px;
                            text-align: center;
                            cursor: pointer;
                            user-select: none;
                        }
                    }
                }

                .btn-ant {
                    position: absolute;
                    left: 0;
                    width:40px;
                    aspect-ratio: 1;
                    font-size: 16px;
                    color:white;
                    cursor: pointer;
                    background-color: #555;
                    border: 1px solid #777;
                    border-radius:50px;
                }

                .btn-sig {
                    position: absolute;
                    right: 0;
                    width:40px;
                    aspect-ratio: 1;
                    font-size: 16px;
                    color:white;
                    cursor: pointer;
                    background-color: #555;
                    border: 1px solid #777;
                    border-radius:50px;
                }
            }
        }
    }
}

/* Contenedor que mantiene la forma */
.skeleton-wrapper {
    position: relative;
    width: 100%;
    background-color: #230808;
    overflow: hidden;
}

/* El efecto de brillo moviéndose */
.shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, rgba(240, 240, 240, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(240, 240, 240, 0) 100% );
    animation: shimmer-effect 1.5s infinite;
    z-index: 1;
}

/* La imagen real */
.skeleton-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0; /* Invisible al inicio */
    transition: opacity 0.4s ease-in-out;
    position: relative;
    z-index: 2;
}

/* Cuando la imagen carga, ocultamos el shimmer y mostramos la foto */
.skeleton-wrapper.loaded .shimmer {
    display: none;
}

.skeleton-wrapper.loaded img {
    opacity: 1;
}

/* Animación */
@keyframes shimmer-effect {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@media screen and (max-width: 1440px) {
    .seccion-bienvenido {
        padding: 35px 0px;
        .mensaje-bienvenido{
            .titulo {
                font-size: 40px;
            }

            .texto {
                font-size: 20px;
            }

            strong {
                font-size: 20px;
            }
        }
    }

    .seccion-principal {
        .seccion-recientes {
            .container {
                padding-top: 60px;
                padding-bottom: 30px;

                > p {
                    margin-bottom: 20px;
                }
            }

        }

        .seccion-categorias {
            .container {
                padding-top: 30px;
                padding-bottom: 60px;

                & p {
                    margin-bottom: 20px;
                }

                .categorias {
                    gap: 20px;

                    a {
                        width: 220px;
                        font-size: 16px;
                    }
                }
            }
        }

        .seccion-vistos {
            .container {
                padding: 60px 0;
            }
        }
    }
}

@media screen and (max-width: 1040px) {
    .seccion-bienvenido {
        padding: 25px 0px;
        .mensaje-bienvenido{
            .titulo {
                font-size: 36px;
            }

            .texto {
                font-size: 17px;
            }

            strong {
                font-size: 17px;
            }
        }
    }
}

@media screen and (max-width: 1024px) {
    .seccion-principal {
        .seccion-recientes {
            .container {
                padding-top: 40px;
                padding-bottom: 20px;

                > p {
                    margin-bottom: 15px;
                    font-size: 14px;
                }

                .slider {
                    .imagenes {
                        gap: 40px;

                        .imagen {
                            p {
                                font-size: 11px;
                            }

                            button {
                                padding: 6px 20px;;
                                font-size: 10px;
                            }
                        }
                    }

                    .btn-ant {
                        width:30px;
                        font-size: 10px;
                    }

                    .btn-sig {
                        width:30px;
                        font-size: 10px;
                    }
                }
            }
        }

        .seccion-categorias {
            .container {
                padding-top: 20px;
                padding-bottom: 40px;

                & p {
                    margin-bottom: 15px;
                    font-size: 14px;
                }

                .categorias {
                    gap: 20px;

                    a {
                        width: 150px;
                        font-size: 14px;
                    }
                }
            }
        }

        .seccion-vistos {
            .container {
                padding: 40px 0;

                > p {
                    margin-bottom: 15px;
                    font-size: 14px;
                }

                .slider {
                    .imagenes {
                        gap: 40px;
                    }

                    .btn-ant {
                        width:30px;
                        font-size: 10px;
                    }

                    .btn-sig {
                        width:30px;
                        font-size: 10px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .seccion-bienvenido {
        padding: 15px 0px;
        .mensaje-bienvenido{
            .titulo {
                font-size: 26px;
            }

            .texto {
                font-size: 14px;
            }

            strong {
                font-size: 14px;
            }
        }
    }

    .seccion-principal {
        .seccion-recientes {
            .container {
                padding-top: 20px;
                padding-bottom: 10px;

                > p {
                    margin-bottom: 10px;
                }

                .slider {
                    .imagenes {
                        gap: 35px;

                        .imagen {
                            p {
                                font-size: 11px;
                            }

                            button {
                                padding: 6px 20px;;
                                font-size: 10px;
                            }
                        }
                    }

                    .btn-ant {
                        width:30px;
                        font-size: 10px;
                    }

                    .btn-sig {
                        width:30px;
                        font-size: 10px;
                    }
                }
            }
        }

        .seccion-categorias {
            .container {
                padding-top: 10px;
                padding-bottom: 20px;

                & p {
                    margin-bottom: 10px;
                }

                .categorias {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 20px;
                }
            }
        }

        .seccion-vistos {
            .container {
                padding: 20px 0;
                .slider {
                    .imagenes {
                        gap: 35px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 600px) {
    .seccion-bienvenido {
        padding: 5px 0;
        .mensaje-bienvenido{
            .titulo {
                font-size: 16px;
            }

            .texto {
                font-size: 10px;
            }

            strong {
                font-size: 10px;
            }
        }
    }
}

@media screen and (max-width: 425px) {
    .seccion-bienvenido {
        padding: 2px 0;
        .mensaje-bienvenido{
            .titulo {
                font-size: 12px;
            }

            .texto {
                font-size: 7px;
            }

            strong {
                font-size: 7px;
            }
        }
    }

    .seccion-principal {
        .seccion-recientes {
            .container {
                padding: 10px 0;

                > p {
                    margin-bottom: 10px;
                    font-size: 12px;
                }

                .slider {
                    margin-bottom: 10px;
                    .imagenes {
                        gap: 30px;
                        
                        .imagen {
                            p {
                                font-size: 8px;
                            }

                            button {
                                padding: 4px 15px;;
                                font-size: 8px;
                            }
                        }
                    }

                    .btn-ant {
                        width:20px;
                        font-size: 8px;
                    }

                    .btn-sig {
                        width:20px;
                        font-size: 8px;
                    }
                }
            }
        }

        .seccion-categorias {
            .container {
                padding: 10px 0;
                
                & p {
                    margin-bottom: 10px;
                    font-size: 12px;
                }

                .categorias {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 10px;

                    a {
                        width: 100px;
                        font-size: 12px;
                    }
                }
            }
        }

        .seccion-vistos {
            .container {
                > p {
                    margin-bottom: 10px;
                    font-size: 12px;
                }
                
                .slider {
                    .imagenes {
                        gap: 30px;
                    }

                    .btn-ant {
                        width:20px;
                        font-size: 8px;
                    }

                    .btn-sig {
                        width:20px;
                        font-size: 8px;
                    }
                }

            }
        }
    }
}