/* styles.css */
/* Contenedor principal */
/* CSS personalizado mínimo */
#demo {
    transition: transform 0.3s ease;
}

#demo:hover {
    transform: translateY(-5px);
}

.carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    width: 40px;
    background-color: var(--primary-color);
}
.carousel {
    box-shadow: 0 0 10px 1px var(--accent-color);


}
.carousel-control-prev,
.carousel-control-next {
    transition: opacity 0.5s ease;


}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.5!important;
   
    backdrop-filter: blur(2px);
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.05);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item.active img {
    transform: scale(1);
}
 .linea1 {
  width: 80%;/*900px;*/               /* Largo de la línea */
  height: 20px;              /* Alto de la línea */
  background-color: var(--primary-color); /* Color de la línea */
  margin: 100px auto 0 auto;        /* Separa 100px arriba y abajo, y la centra horizontalmente */
}
 .linea2 {
  width: 50%; /*600px;         */      /* Largo de la línea */
  height: 20px;              /* Alto de la línea */
  background-color: var(--primary-color); /* Color de la línea */
  margin: 50px auto;        /* Separa 100px arriba y abajo, y la centra horizontalmente */
}

/*
#demo {
    height: 350px;
    width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}


.carousel-indicators {
    bottom: 25px;
    gap: 8px;
}

.carousel-indicators button {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-indicators button::before {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.5s ease;
}

.carousel-indicators button:hover::before {
    left: 100%;
}

.carousel-indicators .active {
    background-color: #fff;
    width: 40px;
}


.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 100%;
    top: 0;
    opacity: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.carousel-control-next {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

#demo:hover .carousel-control-prev {
    left: 0;
    opacity: 1;
}

#demo:hover .carousel-control-next {
    right: 0;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 100%;
    filter: invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.2);
}


.carousel-item {
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.1) 100%);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.05);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item.active img {
    transform: scale(1);
}*/