/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 08 2025 | 01:07:29 */
a:focus {
	outline:none;
}

a {
	text-decoration: none;
}

button:focus {
	outline:none;
}

.rounded-all {
  border-radius: 15px; /* ajusta el valor a tu gusto */
  overflow: hidden;    /* evita que imágenes o contenido sobresalgan */
}

.rounded-gallery img,
.rounded-gallery video {
  border-radius: 15px; /* ajusta el valor a tu gusto */
  overflow: hidden;
}

/* Por defecto (mobile first) → solo esquinas superiores */
.rounded-responsive {
  border-radius: 15px 15px 0 0; /* arriba-izq, arriba-der, abajo-der, abajo-izq */
  overflow: hidden;
}

/* En desktop (desde 768px en adelante) → solo derecha */
@media (min-width: 769px) {
  .rounded-responsive {
    border-radius: 15px 0 0 15px;
  }
}