Testimonios
Pacientes del Exterior
Historias reales de pacientes internacionales que transformaron su sonrisa con nosotros.
Andrea – USA
“Viajé especialmente para mi tratamiento y fue la mejor decisión. Excelente equipo y resultados increíbles.”
Carlos – Canadá
“Profesionales, amables y muy eficientes. Mi sonrisa quedó perfecta.”
María – España
“La experiencia fue excelente desde el primer contacto. Muy recomendado.”
/* --- CONTENEDOR GENERAL --- */
.ext-testimonios-section {
padding: 80px 20px;
background: linear-gradient(#ffffff, #f0f2f5);
font-family: inherit;
}
/* --- ANCHO --- */
.ext-container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
/* --- TITULOS --- */
.ext-title {
font-size: 48px;
font-weight: 700;
margin-bottom: 10px;
animation: extFadeLeft 0.8s ease forwards;
}
.ext-subtitle {
font-size: 32px;
color: #007BFF;
margin-bottom: 20px;
animation: extFadeLeft 1s ease forwards;
}
.ext-desc {
font-size: 18px;
max-width: 700px;
margin: 0 auto 50px;
color: #555;
animation: extFadeUp 1.2s ease forwards;
}
/* --- GRID DE TESTIMONIOS --- */
.ext-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
animation: extFadeUp 1.4s ease forwards;
}
/* --- CARD --- */
.ext-card {
background: #fff;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: transform .3s ease;
}
.ext-card:hover {
transform: translateY(-5px);
}
.ext-card img {
width: 100%;
height: auto;
display: block;
}
.ext-info {
padding: 20px;
text-align: left;
}
.ext-info h4 {
margin: 0 0 10px;
color: #222;
font-size: 20px;
}
.ext-info p {
margin: 0;
color: #444;
font-size: 16px;
}
/* --- ANIMACIONES --- */
@keyframes extFadeLeft {
from { opacity: 0; transform: translateX(-40px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes extFadeUp {
from { opacity: 0; transform: translateY(40px); }
to { opacity: 1; transform: translateY(0); }
}