.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--secundario);
    margin: 30px 0;
    height: 40vh;
}
.banner .contenedor_banner{
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.banner .contenedor_banner img{
    height: 100%;
    width: 100%;
}
.banner h1 {
    font-size: 60px;
    color: var(--primario);
    letter-spacing: 2px;
    margin: 0;
    line-height: 200px;
    width: 50%;
}
.banner span {
    position: relative;
    display: inline-block;
}
.banner span:nth-last-child(2),
.banner span:last-child {
    overflow: hidden;
    vertical-align: bottom;
}
.banner span:nth-last-child(2)::after,
.banner span:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.banner span:nth-last-child(2)::after {
    background-image: url('/api/placeholder/60/80');
}
.banner span:last-child::after {
    background-image: url('/api/placeholder/60/80');
}





.tienda {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}
.tienda .product-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    width: 220px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.tienda .product-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}
.tienda .discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007bff;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}
.tienda .product-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primario);
}
.tienda .product-price {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.tienda .original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 8px;
}
.tienda .discounted-price {
    color: #000;
    font-weight: 500;
    font-size: 18px;
}
.tienda .dot-indicator {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.tienda .dot {
    height: 8px;
    width: 8px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
}
.tienda .dot.active {
    background-color: #717171;
}


/* Media Queries para dispositivos móviles */
@media only screen and (max-width: 768px) {

    .banner{
        height: auto;
        padding: 20px 0;
        /* height: 30vh; */
        ;
        width: 100%;
    }
    .banner .contenedor_banner{
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        /* height: 0vh */
       
    }
    .banner .contenedor_banner img{
        height: 100%;
    }
    .banner h1 {
        font-size: 50px;
        width: 100%;
        line-height: 50px;
        
    }

    .tienda {
        
        padding: 10px 0;
    }

  }
  
  @media (max-width: 550px) {
  
    .banner h1 {
        font-size: 35px;
        text-align: center;
        
    }
  
  }