Se modifican procesos para pagos en linea a travez de stripe

This commit is contained in:
2026-03-12 12:27:26 -06:00
parent fac20ea52d
commit ed2184827d
32 changed files with 703 additions and 506 deletions
+53
View File
@@ -333,3 +333,56 @@ button:hover {
min-height:18px;
padding-left:5px;
}
/* carrusel */
/* altura del carrusel */
.carousel,
.carousel-inner,
.carousel-item {
height: 100%;
}
/* imágenes */
.carousel-item img{
height:100%;
width:100%;
object-fit:cover;
}
/* zoom suave tipo landing page */
.carousel-item img{
transform: scale(1);
transition: transform 8s ease;
}
.carousel-item.active img{
transform: scale(1.08);
}
/* overlay oscuro elegante */
.carousel-item::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.35);
}
/* texto encima del carrusel */
.carousel-caption{
bottom:40px;
animation: fadeUp 1s ease;
}
@keyframes fadeUp{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}
/* carrusel */