.body-escultura {
    /* margin: 0 auto; */
    margin-top: 0rem;
    font-family: "Lato";
    background: url(iconos/fondoAleternativo.webp);
    background-repeat: no-repeat; /* Evita que se repita */
    background-size: cover; /* Ajusta el tamaño para cubrir la página */
    background-position: center; /* Centra la imagen */
}
body {
    /* margin: 0 auto; */
    margin-top: 0rem;
    font-family: "Lato";
    background: url(iconos/gradasVerdes.webp);
    background-repeat: no-repeat; /* Evita que se repita */
    background-size: cover; /* Ajusta el tamaño para cubrir la página */
    background-position: center; /* Centra la imagen */
    
}

.header{
    background-color: rgba(255, 255, 255,0.9);
    /* z-index: 101;
    
    position: fixed;
    width: 100%; */

}
.nav-link {
    font-weight: bold;
}

.redes {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
    gap: 0.5rem;
}

.hero {
    display: flex;
    background-image: url(pintura/imgHero.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 70rem;
    margin-bottom: 2rem;
    margin-top: 0rem;
    /* scroll-snap-align: center;
    scroll-snap-stop: always; */
    margin: 0;
    position: relative;
}

.contenido-hero {
    position: absolute;
    /* background-color: rgba(83, 12, 121, 0.5); */
    /* background: linear-gradient(to right,black,transparent); */
    
    width: 100%;
    height: 100%;
    display: flex;
    background-size: cover;
    align-items: center;
    justify-content: center;
}
.contenido-hero-inner {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.logoHero {
    position: absolute; /* Asegúrate de que la posición esté configurada */
    top: 25% !important; /* Usa !important para forzar la aplicación */
    left: 15px !important; /* Usa !important para forzar la aplicación */
    width: 30%; /* Ajusta el tamaño según sea necesario */
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}
.ubicacion {
    color: white;
    display: flex;
}
.columna {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    
}
 @media (max-width: 380px) {
    .contenido-hero-inner {
        flex-direction: r;
    }
    .columna{      
        flex-direction: row;
        width: 100%;
    } 
    .contenido-hero-inner {
        flex-direction: row;
    }
}
.imgMain {
    display: block;
    /* Hace que la imagen sea un bloque para aplicar márgenes */
    width: Auto;
    /* Hace que la imagen ocupe todo el ancho de su contenedor */
    height: auto;
    /* Mantiene la proporción de la imagen */
    margin: 0 auto;
    
    border-radius: 15%;
}

.imgHero {
    position: absolute;
    top: 0;
}

/* .contenido-hero h2,
.concontenido-hero p {
    font-size: 5.6rem; 
} */

.Secciones {
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* background-color: burlywood; */
}

.titulo {
    color: white;
    font-family: monospace;
    font-size: 2.8rem;
    display: flex;
    flex-direction: row;
    align-items: first baseline;
}

.titulo span {
    font-size: 2.5rem;
    /* color: #5f6a6a; */
    font-family: monospace;
}



.icon-cart {
    width: 40px;
    height: 40px;
    stroke: #000;
}

.icon-cart:hover {
    cursor: pointer;
}


.container-items {
    justify-content: center;
    display: grid;
    background-color: transparent;
}

.item {
    background-color: rgba(240, 248, 255,0.3);
    border-radius: 10px;
    max-width: 15rem;
    min-height: 32rem;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-column: span 1;
    /* Por defecto, cada item ocupa una columna */
}

.item_sur {
    background-color: rgba(240, 248, 255,0.3);
    grid-column: span 2;
    display: grid;
    align-items: center;
    justify-content: center;
    /* Este item ocupa el ancho de dos columnas */
}

.item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.item_sur:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.Descrip {
    display: none;
}

.modalDescrip {
    font-family: monospace;
    font-size: 1.3rem;
}

.tituloModal {
    font-family: monospace;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
}

.item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: all 0.5s;
}

.item_sur img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: all 0.5s;
}

.item figure {
    overflow: hidden;
}

.item:hover img {
    transform: scale(1.1);
}

.item_sur:hover img {
    transform: scale(1.02);
}

.info-product {
    padding: 15px 30px;
    line-height: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price {
    font-size: 18px;
    font-weight: 900;
}

.info-product button {
    border: none;
    background: none;
    background-color: #000;
    color: #fff;
    padding: 15px 10px;
    cursor: pointer;
    border-radius: 25px;
}

@media (min-width: 370px) {
    .container-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-content: center;
        align-items: center;
        background-color: transparent;
    }
}

@media (min-width: 768px) {
    .container-items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        justify-content: center;
        align-items: center;
        background-color: transparent;
    }
}

.whatsapp-button-index {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 3rem;
    box-shadow: 2px 2px 3px #280f0f;
    z-index: 100;
    img{
        width: 100%;
        background-color: transparent;
        margin-bottom: 28px;
    }
}


.whatsapp-button-index:hover img {
    transform: scale(1.1);
    /* Agrandar la imagen un 10% */
}

.whatsapp-button img {
    width: 100%;
    background-color: transparent;
    margin-bottom: 20px;
}.whatsapp-button-sobreMi {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 3rem;
    box-shadow: 2px 2px 3px #280f0f;
    z-index: 100;
    img{
        width: 100%;
        background-color: transparent;
        margin-bottom: 28px;
    }
}
.whatsapp-button-sobreMi:hover img {
    transform: scale(1.1);
    /* Agrandar la imagen un 10% */
}
.whatsapp-button-escultura {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 3rem;
    box-shadow: 2px 2px 3px #280f0f;
    z-index: 100;
    img{
        width: 100%;
        background-color: transparent;
        margin-bottom: 28px;
    }
}

.whatsapp-button-escultura:hover img {
    transform: scale(1.1);
    /* Agrandar la imagen un 10% */
}
.footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    background-color: #000;
    height: 100%;
    color: #dddcc8;
    font-size: large;
    padding: 0.5rem;
    /* place-items: center; */
}

@keyframes enhance-header {
    0% {
        opacity: 1;
    }
    10% {
        opacity: .4;
        backdrop-filter: blur(5px);
    }
    100% {
        opacity: .4;
    }
}