/*
Theme Name: M&G Technology Theme
Theme URI: https://goslen.com/
Author: M&G Technology Solution LLC
Author URI: https://goslen.com/
Description: Tema personalizado desarrollado para el sitio oficial de M&G Technology Solution LLC.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mg-theme
*/

/* Aquí puedes agregar CSS personalizado si lo necesitas,
   aunque la mayoría de los estilos vienen de Tailwind. */

/* Scroll Reveal Animations - Aceleración por GPU */
.ambient-glow {
  position: fixed; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05), transparent 60%);
  animation: ambientShift 15s ease-in-out infinite alternate; z-index: -1; pointer-events: none;
}
@keyframes ambientShift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(2%, 2%); }
}
.reveal-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }