/* Estilos personalizados para emular el renderizado de Apple */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fondos decorativos con blur */
.bg-gradient-blur {
    position: absolute;
    border-radius: 9999px;
    filter: blur(120px);
    z-index: -10;
}

.blob-blue {
    top: 25%;
    left: 25%;
    width: 24rem; /* 96 en Tailwind */
    height: 24rem;
    background-color: rgba(37, 99, 235, 0.1);
}

.blob-accent {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(255, 171, 0, 0.05);
}