body {
    background-color: #E2E5E7;
}

.BodyContent {
    min-height: 90vh;
    padding-top: 70px;
}

.MenuNav {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-color: white;
    box-shadow: 0px 1px 5px 0px #5a5a5a86;
    z-index: 1;
}


/* .MenuNav .OpcionesNav {
    flex-basis: 100%;
} */

.MenuNav .LogoNav {
    background-image: url("../img/imago.png");
    background-position: center;
    background-size: cover;
    width: 80px;
    height: 75px;
    margin: auto 10px;
    cursor: pointer;
}

.MenuNav .TituloNav {
    font-size: var(--Titulos);
    color: var(--Primary_Color);
    text-align: center;
    width: 100%;
}

.MenuNav .BotonesNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: auto 10px;
}

.MenuNav .BotonesNav button {
    width: 55px;
    height: 55px;
    background-color: var(--Primary_Color);
    color: white;
}

.MenuNav .BotonesNav .UsuarioNav {
    display: flex;
    gap: 10px;
    position: relative;
    min-width: 150px;
    width: max-content;
}

.MenuNav .BotonesNav .UsuarioNav:hover {
    color: var(--Secondary_Color_Dark);
    cursor: pointer;
}

.MenuNav .BotonesNav .Avatar img {
    width: 55px;
    height: 55px;
    border-radius: var(--BRadius_Card);
}

.MenuNav .BotonesNav .Nombre {
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.MenuNav .BotonesNav .Usuario {
    font-weight: 300;
    color: #818080;
    font-size: 15px;
    text-align: left;
}

.CarritoNav {
    position: relative;
}

.CarritoNav .CarritoNotificacion {
    position: absolute;
    top: -5px;
    right: -5px;
    border-radius: 35px;
    background: white;
    padding: 2px 5px;
    border: 1px solid #979797;
    font-size: 10px;
    font-weight: bold;
}

.CarritoNav .CarritoNotificacion {
    position: absolute;
    top: -5px;
    right: -5px;
    border-radius: 35px;
    background: white;
    padding: 2px 5px;
    border: 1px solid #979797;
    font-size: 10px;
    font-weight: bold;
}

.HeroInicio {
    width: 100vw;
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: -20px;
}

.HeroInicio .HeroContenido {
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: max-content;
    position: absolute;
}

.HeroInicio .HeroTexto {
    font-size: calc(var(--Titulos) + 20px);
    color: #FFFFFF;
    text-shadow: 4px 3px 0 var(--Primary_Color_Oscured);
    text-align: center;
}

.HeroInicio .HeroBusqueda {
    display: flex;
    align-items: center;
    background-color: white;
    width: 80%;
    height: 60px;
    border-radius: var(--BRadius_Card);
    margin: auto;
}

.HeroBusqueda div:first-child {
    flex-basis: 75%;
}

.HeroBusqueda .Element {
    background-color: transparent;
}

.HeroBusqueda input {
    background-color: transparent;
}

.HeroBusqueda input:hover {
    box-shadow: 0px 0px 0px 0px transparent;
}

.HeroBusqueda select {
    background-color: transparent;
    width: 100%;
    min-width: 200px;
}

.HeroBusqueda select:hover {
    box-shadow: 0px 0px 0px 0px transparent;
}

.HeroBusqueda .BusquedaSeparador {
    border-right: 2px solid #5e5e5eb0;
    height: 100%;
}

.HeroBusqueda button {
    width: 25%;
    height: 100%;
    background-color: var(--Primary_Color);
    color: white;
}

@media screen and (max-width: 1000px) {
    .HeroInicio .HeroBusqueda {
        flex-direction: column;
        max-width: 450px;
        height: max-content;
        padding: 5px;
    }

    .HeroBusqueda button {
        width: 100%;
        height: 40px;
    }

    .HeroBusqueda div {
        width: 100%;
        flex-basis: 100%;
    }

    .HeroBusqueda .BusquedaSeparador {
        height: 0;
        width: 100%;
        border-right: 0;
        border-top: 2px solid #5e5e5eb0;
    }
}

.TitulosInicio {
    width: 100vw;
    height: 80px;
    background-color: white;
    color: var(--Primary_Color);
    text-align: center;
    font-weight: bold;
    font-size: var(--Titulos);
    margin-bottom: 10px;
    padding: 5px;
}

.PaginaBotonesInicio {
    width: 100vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    margin-bottom: 10px;
}

.PaginaBotonesInicio button {
    width: 55px;
    height: 55px;
    background-color: var(--Primary_Color);
    color: white;
}

.ProductosSlide {
    width: 100vw;
    padding: 10px;
    overflow: hidden;
}

.ProductosSlide .ContenedorSlide {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.6s all ease;
}


/* .ProductosSlide .GridSlide {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
    gap: 10px;
    padding: 15px;
    width: 100%;
} */

.ProductosSlide .CardProducto {
    background-color: white;
    border-radius: var(--BRadius_Card);
    box-shadow: var(--Sombra_Cards);
    width: 100%;
    height: 550px;
    min-width: calc(100vw / 4 - 13px);
    max-width: calc(100vw / 4 - 13px);
    position: relative;
}

.DatosProducto {
    padding: 10px;
}

.DatosProducto .NombreProducto {
    font-weight: bold;
    font-size: 22px;
}

.DatosProducto .DescripcionProducto {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 20px;
}

.CalificacionPrecio {
    position: absolute;
    bottom: 0;
    padding: 10px;
    width: 100%;
}

.Estrellas {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 5px;
}

.Estrellas span {
    color: #818080;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    font-size: 25px;
    margin-bottom: 5px;
}

.CalificacionPrecio .Precio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
}

.CalificacionPrecio .Precio div:first-child {
    font-size: var(--Contenidos);
    font-weight: bold;
}

.CalificacionPrecio .Precio button {
    width: 45px;
    height: 45px;
    background-color: white;
    color: var(--Primary_Color);
}

@media screen and (max-width: 1450px) {
    .ProductosSlide .CardProducto {
        max-width: calc(100vw / 3 - 13px);
        min-width: calc(100vw / 3 - 13px);
    }
}

@media screen and (max-width: 1050px) {
    .ProductosSlide .CardProducto {
        min-width: calc(100vw / 2 - 13px);
        max-width: calc(100vw / 2 - 13px);
    }
}

@media screen and (max-width: 750px) {
    .ProductosSlide .CardProducto {
        min-width: calc(100vw / 1 - 13px);
        min-width: calc(100vw / 1 - 20px);
    }
}

.FotosProducto {
    /* width: 100%; */
    height: max-content;
    padding: 5px;
    position: relative;
    /* background-color: tomato; */
}

.SlideContenedor {
    /* width: 100%; */
    /* max-width: 350px; */
    display: flex;
    align-items: center;
    height: 270px;
    max-height: 300px;
    border-radius: var(--BRadius_Card);
    background-color: var(--Element_Background);
    box-shadow: var(--Sombra_Cards_Inset2);
    overflow: hidden;
    margin: 0 auto;
}

.SlideContenedor .Slider {
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: 0.4s all ease-in-out;
}

.SlideContenedor .Slider .SlideItem {
    min-width: 100%;
    flex-basis: 100%;
    display: flex;
    justify-content: space-between;
    transition: 0.4s all ease-out;
    position: relative;
}

.SlideContenedor .Slider .SlideItem .Cerrar {
    color: rgba(233, 233, 233, 0.473);
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 35px;
    transition: 0.3s all ease-out;
}

.SlideContenedor .Slider .SlideItem .Cerrar:hover {
    transform: scale(1.15);
    background-color: white;
    color: rgb(29, 29, 29);
}

.SlideContenedor .Slider .SlideItem img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: center;
}

.SlidePaginacion {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px auto;
}

.SlidePaginacion .Pagina {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0px;
    width: 40px;
    height: 40px;
    border-radius: var(--BRadius_Card);
    overflow: hidden;
    cursor: pointer;
    background: var(--Secondary_Color_Dark);
    box-shadow: var(--Sombra_Cards);
    margin: 0 5px;
    text-align: center;
    transition: all 300ms;
}

.SlidePaginacion .Pagina:hover {
    transform: scale(1.15);
}

.SlidePaginacion .Pagina img {
    display: inline-block;
    max-width: none;
    height: 100%;
    transform: scale(1);
    opacity: 1;
    transition: all 300ms;
}


.FooterLogo {
    width: 150px;
    height: 100%;
    padding: 5px;
    grid-area: logo;
}

.FooterLogo img {
    width: 140px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: auto;
}

.FooterFondo {
    /* flex-basis: 90%; */
    display: flex;
    align-items: center;
    grid-area: fondo;
    /* width: 90%; */
    height: 100%;
    background-color: var(--Primary_Color);
    color: white;
    border-radius: var(--BRadius_Card) 0 0 var(--BRadius_Card);
}

.FooterFondo .TituloLista {
    font-size: calc(var(--Contenidos) + 1px);
    font-weight: bold;
}

.FooterFondo .Informacion {
    display: flex;
    gap: 10px;
}

.FooterFondo ul {
    margin: 0 15px;
    padding: 0;
}

.FooterFondo li {
    list-style-type: disc;
    margin-left: 20px;
    font-size: calc(var(--Contenidos) / 2 + 1px);
}

.FooterFondo a:hover {
    text-decoration-line: underline;
}

.FooterFondo .RedesSociales {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-evenly;
    width: max-content;
    margin: auto;
}

.FooterFondo .RedesSociales img {
    width: 45px;
    height: 45px;
}

@media screen and (max-width: 750px) {
    footer {
        height: max-content;
        grid-template-columns: 1fr;
        grid-template-areas: "fondo" "logo";
    }

    .FooterLogo {
        width: 100%;
        text-align: center;
    }

    .FooterFondo {
        padding: 10px;
        flex-direction: column-reverse;
        border-radius: 0;
        gap: 15px;
    }

    .FooterFondo .RedesSociales img {
        width: 40px;
        height: 40px;
    }

    .FooterFondo .Informacion {
        margin: auto;
    }

    .FooterFondo li {
        font-size: 18px;
    }
}

@media screen and (max-width: 430px) {
    .FooterFondo .Informacion {
        flex-direction: column;
        margin: auto;
    }
}


.nav-menu {
    width: 100vw;
    height: 70px;
    position: fixed;
    top: 0;
    background: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--Primary_Color_Dark);
    z-index: 2;
}

.nav-menu__logo {
    width: max-content;
    max-width: 150px;
    cursor: pointer;
}

.nav-menu__logo img {
    width: max-content;
    max-width: 150px;
}

.nav-menu__busqueda-box {
    width: 70%;
    height: 40px;
    flex-grow: initial;
    display: flex;
    border-radius: 40px;
    border: 1px solid var(--Primary_Color_Dark);
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    color: #2b2a2a;
}

.nav-menu__categorias {
    text-align: center;
    padding: 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--Primary_Color_Dark);
}

.nav-menu__busqueda {
    background: transparent;
    width: 100%;
}

.nav-menu__busqueda input {
    background: transparent;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: 10px;
}

.nav-menu__busqueda input:hover {
    background: transparent;
    box-shadow: none;
}

.nav-menu__busqueda input::placeholder {
    color: #4b4949;
}

.nav-menu__busqueda-button {
    text-align: center;
    padding: 10px;
    font-weight: bold;
    background-color: var(--Primary_Color_Dark);
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-menu__info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu__info-section {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.nav-menu__info-section i {
    font-size: 25px;
    color: var(--Primary_Color_Dark);
}

.nav-menu__info-titulo {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.nav-menu__info-detalle {
    font-size: 12px;
    font-weight: 500;
    color: #504e4e;
    white-space: nowrap;
}

.footer {
    width: 100vw;
    background: var(--Primary_Color);
}

.footer-box {
    width: 100%;
    max-width: 70vw;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.footer-logo {
    margin: auto;
}

.footer__info-section {
    margin: auto;
    width: 100%;
}

.footer__info-section a {
    color: #1b1b1b;
}

.footer_text-titulo {
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
}

.footer_text {
    font-size: 16px;
    padding-left: 15px;
    line-height: 24px;
}

.footer_text-icons {
    text-align: left;
    line-height: 30px;
    font-size: 16px;
    color: #161616;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.footer-redes {
    width: max-content;
    margin: auto;
    color: #1b1b1b;
    font-weight: 500;
    font-size: 15px;
}


.body-box {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    position: relative;
}

.button-landing {
    width: max-content;
    min-width: 50px;
    padding: 5px 15px;
    background-color: var(--Primary_Color);
    border-radius: 25px;
    color: #272626;
    font-size: 14px;
    font-weight: 500;
    box-shadow: none;
    height: 35px;
    cursor: pointer;
    text-transform: none;
}

.button-landing:hover {
    box-shadow: none;
    padding: 5px 15px;
}

.titulo-landing {
    font-size: clamp(20px, calc(100vw * 3 / 100), 35px);
    font-weight: bold;
    color: #272626;
    text-align: left;
    margin: 10px;
}

.hero-slide {
    width: 100%;
    /* max-width: 1300px; */
    margin: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    /* padding: 10px; */
}

.hero-slide__button {
    color: #e7e4e4;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 48%;
    z-index: 1;
}

.hero-slide__view {
    width: 100%;
    height: clamp(50px, calc(100vw * 40 / 100), 350px);
    /* max-height: 50vw; */
    /* min-height: 50vh; */
    flex-basis: 100%;
    background-color: white;
    overflow: hidden;
}

.hero-slide__box {
    display: flex;
    height: clamp(50px, calc(100vw * 40 / 100), 350px);
    /* align-items: center; */
    transition: 0.3s all ease-in-out;
}

.hero-slide__item {
    width: 100%;
    flex-basis: 100%;
    flex-shrink: 0;
}

.hero-slide_control {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: 0.3s all linear;
    opacity: 0;
    background: radial-gradient(circle, rgba(18, 181, 181, 0) 0%, rgba(0, 0, 0, 1) 150%);
}

.hero-slide__button:hover .hero-slide_control {
    opacity: 1;
}

.hero-slide_control:hover {
    opacity: 1;
}

.hero-slide_titulo {
    color: #e7e4e4;
    position: absolute;
    top: 20px;
    left: 20px;
    text-shadow: 4px 3px 0 #3d3d3dd3;
}

.hero-slide_paginado {
    display: flex;
    gap: 5px;
    width: max-content;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
}

.hero-slide_pagina {
    width: 10px;
    height: 10px;
    border-radius: 35px;
    background: var(--Primary_Color_Dark);
    opacity: .4;
    cursor: pointer;
    transition: 0.3s all linear;
    box-shadow: 0px 1px 4px 1px #27262657;
}

.hero-slide_pagina--select {
    /* width: 18px; */
    opacity: initial;
    background: var(--Primary_Color);
}

.slide-view {
    width: 100%;
    max-width: 1300px;
    overflow: hidden;
    /* padding: 10px; */
    position: relative;
}

.slide-box {
    /* width: max-content; */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s all ease-in-out;
}

.slide-slide_paginado {
    display: flex;
    gap: 5px;
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    justify-content: center;
}

.slide-slide_pagina {
    width: 58px;
    height: 8px;
    border-radius: 40px;
    background: var(--Primary_Color_Dark);
    opacity: .4;
    cursor: pointer;
    transition: 0.3s all linear;
    box-shadow: 0px 1px 4px 1px #27262657;
}

.slide-slide_pagina--select {
    /* width: 18px; */
    opacity: initial;
    background: var(--Primary_Color);
}

.slide-slide_control {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: 0.3s all linear;
    opacity: 0;
    background: radial-gradient(circle, rgba(18, 181, 181, 0) 0%, rgba(0, 0, 0, 0.685) 150%);
}

.slide-slide__button:hover .slide-slide_control {
    opacity: 1;
}

.slide-slide_control:hover {
    opacity: 1;
}

.slide-slide__button {
    color: var(--Primary_Color);
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 48%;
    z-index: 1;
}

.slide-box__item1 {
    flex-basis: 50%;
    flex-shrink: 0;
}

@media screen and (max-width: 1100px) {
    .slide-box__item1 {
        flex-basis: 100%;
        flex-shrink: 0;
    }
}

.producto-card {
    max-width: 650px;
    width: 100%;
    height: 100%;
    min-height: 200px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid var(--Primary_Color);
    box-shadow: 0px 2px 4px 2px #27262641;
}

.producto_box {
    display: flex;
    gap: 15px;
    padding: 15px;
}


@media screen and (max-width: 600px) {
    .producto_box {
        flex-direction: column;
    }
}

.producto_img-box {
    width: 220px;
    height: 220px;
    border-radius: 7px;
    box-shadow: 0px 2px 4px 2px #27262641;
    overflow: hidden;
    flex-shrink: 0;
    margin: auto;
}

.producto_info-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.producto__foto {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.producto_titulo {
    color: #272626;
    font-size: clamp(17px, calc(100vw * 2 / 100), 24px);
    font-weight: bold;
    margin-bottom: 15px;
}

.producto_detalle {
    color: #585757;
    font-size: clamp(13px, calc(100vw * 0.8 / 100), 20px);
    font-weight: 500;
}

.producto_calificacion {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    margin: 10px 0;
}

.producto_calificacion-icon {
    color: #5c5c5c;
}

.producto_calificacion-icon--select {
    color: var(--Primary_Color);
}

.producto_precio-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.producto_precio {
    font-size: 22px;
    font-weight: 500;
    color: #272626;
}

.input-cantidad {
    width: max-content;
    display: flex;
    align-items: center;
    border: 1px solid var(--Primary_Color);
    border-radius: 25px;
    overflow: hidden;
    margin: auto;
}

.input-cantidad__button {
    padding: 7px;
    cursor: pointer;
    font-size: 14px;
}

.input-cantidad__button--left {
    border-right: 1px solid var(--Primary_Color);
}

.input-cantidad__button--rigth {
    border-left: 1px solid var(--Primary_Color);
}

.input-cantidad__number input {
    width: max-content;
    max-width: 50px;
    background: transparent;
    border: 0px;
    height: max-content;
    font-size: 15px;
    padding: 5px 10px;
    text-align: center;
}

.input-cantidad__number input:hover {
    box-shadow: none;
}

.huella {
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-repeat: repeat-x;
    margin: 15px;
    background-image: url('../../img/landing/barra.png');
}

.huella-paso {
    display: flex;
    align-items: center;
    gap: 10px;
}

.huella-paso img {
    width: 50px;
    height: 50px;
}


@media screen and (max-width: 500px) {
    .nav-menu__logo img {
        max-width: 100px;
    }

    .nav-menu__info-section i {
        font-size: 15px;
    }

    .nav-menu {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       grid-template-rows: repeat(2, 1fr);
       height: 115px;
       grid-column-gap: 5px;
    }

    .nav-menu__info {
        grid-row-start: 1;
        grid-column-start: 2;
        justify-content: space-between;
    }

    .nav-menu__busqueda-button span {
        display: none;
    }

    .nav-menu__busqueda-box {
        width: 99%;
        font-size: 12px;
        grid-column: 1 / span all;
    }

    .BodyContent {
        padding-top: 115px;
    }

    .producto_titulo {
        text-align: center;
        font-size: 16px;
    }

    .producto_precio {
        font-size: 14px;
    }

    .huella {
        width: 100%;
        height: fit-content;
        margin: 0;
        flex-direction: column;
        background-repeat: repeat;
        padding: 10px;
    }

    .footer-redes {
        text-align: center;
        width: auto;
        font-size: 12px;
    }

    .footer_text {
        font-size: 12px;
    }

    .footer_text-icons {
        font-size: 12px;
    }

    .footer_text-titulo {
        font-size: 15px;
    }
}


@media screen and (max-width: 400px) {
    .button-landing {
        font-size: 9px;
    }

    .huella-paso {
        font-size: 12px;
    }
}
