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

/* Base Settings */
body {
    background-color: #0A0A0A;
    color: #FFFFFF;
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
}

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

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}

/* Utilitários Visuais */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.text-glow {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-glow:hover::after {
    left: 100%;
}

.gradient-text {
    background: linear-gradient(to right, #FFD700, #FFF, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Image Masking for blending into background */
.mask-image-gradient {
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

@media (min-width: 1024px) {
    .mask-image-gradient {
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%),
            linear-gradient(to right, transparent 0%, black 20%);
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%),
            linear-gradient(to right, transparent 0%, black 20%);
        -webkit-mask-composite: source-in;
        mask-composite: intersect;
    }
}

/* Icon Box Styles */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Gradient variants could be added here or inline, using a default dark/glass one for now as base, 
   but user asked for "fundo degrade" similar to example. I'll make specific classes. */
.icon-box-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.icon-box-gold {
    background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
}

.icon-box-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

.icon-box svg {
    color: white;
    width: 32px;
    height: 32px;
}