

/* Estética de Página Principal */
.section-title {
    @apply text-6xl font-black text-[#0062a8] uppercase tracking-tighter mb-16 text-center;
}

.section-title::after {
    content: '';
    @apply block w-32 h-3 bg-[#c1d82f] mx-auto mt-4 rounded-full;
}

/* Herramientas e Imagen Inmersiva */
.tool-card {
    @apply relative h-[450px] overflow-hidden border-r border-white/10;
}

.tool-overlay {
    background: linear-gradient(to top, rgba(0,98,168,0.9) 0%, transparent 100%);
    @apply absolute inset-0 flex flex-col justify-end p-10;
}

.carousel-slide { display: none; }
.carousel-slide.active { @apply block animate-[fadeIn_0.8s_ease-out]; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }





