ejemplo
ejemplo
Precio habitual
$0,00 COP
Precio habitual
Precio de oferta
$0,00 COP
Precio unitario
/
por
Los gastos de envío se calculan en la pantalla de pago.
/* Estilo para la sección de testimonios */
.testimonials {
text-align: center;
padding: 50px 20px;
background-color: #f8f8f8;
}
.testimonials h2 {
font-size: 2.5em;
color: #2980b9;
margin-bottom: 30px;
font-weight: bold;
}
.testimonial-card {
display: inline-block;
width: 100%;
max-width: 300px;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 20px;
overflow: hidden;
transition: transform 0.3s ease-in-out;
}
.testimonial-card:hover {
transform: translateY(-10px);
}
.testimonial-img {
width: 100%;
height: 200px;
object-fit: cover;
border-bottom: 2px solid #2980b9;
}
.testimonial-content {
padding: 20px;
}
.testimonial-text {
font-size: 1.1em;
color: #333;
font-style: italic;
margin-bottom: 15px;
}
.testimonial-author {
font-size: 1.2em;
color: #e67e22;
font-weight: bold;
}