/*
Theme Name: Stratum Master V3
Theme URI: https://stratum.do
Author: Gemini Expert
Description: VERSIÓN DEFINITIVA. Diseño FinTech avanzado, Glassmorphism y animaciones de alto impacto.
Version: 3.2
Text Domain: stratum
*/

:root {
    --stratum-blue: #004a99;
    --stratum-cyan: #00aed9;
    --stratum-green: #7dc242;
    --stratum-dark: #0a1118;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Efectos de texto con gradiente */
.gradient-text {
    background: linear-gradient(90deg, #004a99, #00aed9, #7dc242);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-shape {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

/* Sistema de animaciones Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #004a99; border-radius: 10px; }