.section {
max-width: 1200px;
margin: 0 auto 50px auto;
padding: 0 20px;
}
.section-title {
font-size: 1.8rem;
font-weight: 600;
margin-bottom: 15px;
text-align: center; /* 👈 AQUÍ SE CENTRAN TODOS */
}
.embed-container {
width: 100%;
background: #f5f7fa;
border-radius: 16px;
padding: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* GIF optimizado */
.embed-image {
width: 100%;
max-height: 500px;
object-fit: contain; /* evita pixelado */
display: block;
margin: 0 auto;
border-radius: 12px;
background: #000; /* relleno elegante si sobran espacios */
}
/* Iframes */
.embed-frame {
width: 100%;
height: 75vh;
min-height: 400px;
max-height: 850px;
border: none;
border-radius: 12px;
}
@media (max-width: 768px) {
.embed-frame {
height: 60vh;
}
.embed-image {
max-height: 300px;
}
}

