@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Cores oficiais StrivGO */
    --primary: #0D2B45;
    --primary-dark: #081a2b;
    --primary-light: #1c3d5a;
    --accent: #F2C300;
    --accent-dark: #d9af00;
    --accent-light: #FFD200;
    --light-blue: #E8F0F7;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[x-cloak] { display: none !important; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    background-color: #ffffff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Custom Utilities */
.text-striv-navy { color: var(--primary); }
.bg-striv-navy { background-color: var(--primary); }
.bg-striv-light-blue { background-color: var(--light-blue); }
.text-striv-yellow { color: var(--accent); }
.bg-striv-yellow { background-color: var(--accent); }
.border-striv-navy { border-color: var(--primary); }
.border-striv-yellow { border-color: var(--accent); }

/* Mobile First Helpers */
@media (max-width: 768px) {
    .mobile-scroll-x {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .mobile-card-full {
        min-width: 85vw;
        scroll-snap-align: center;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(13, 43, 69, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(242, 195, 0, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(13, 43, 69, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-500 { animation-delay: 0.5s; }

/* Section Spacing */
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 1024px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}
