/* style.css - MysticFlow Design System Premium */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #9d4edd; /* Deep Mystical Purple */
    --secondary-color: #ff007f; /* Neon Magenta */
    --accent-color: #fca311; /* Golden Glow */
    --bg-dark: #070914; /* Extremely Dark Blue/Black */
    --bg-card: rgba(16, 20, 38, 0.6); /* Glass Card */
    --text-main: #f8fafc;
    --text-muted: #a1a1aa;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

/* Override Bootstrap text-muted para o Dark Mode Místico */
.text-muted {
    color: #cbd5e1 !important; /* Um cinza-azulado muito mais claro e elegante */
}

/* Moving Cosmic Background */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 15% 50%, rgba(157, 78, 221, 0.08), transparent 40%),
                radial-gradient(circle at 85% 30%, rgba(255, 0, 127, 0.05), transparent 40%);
    z-index: -2;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Glowing Orbs Animation */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floatOrb 10s infinite alternate ease-in-out;
}
.orb-1 { width: 300px; height: 300px; background: rgba(157, 78, 221, 0.4); top: 10%; left: -5%; }
.orb-2 { width: 400px; height: 400px; background: rgba(255, 0, 127, 0.2); bottom: 10%; right: -10%; animation-delay: -5s; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -50px) scale(1.1); }
}

/* Glassmorphism Navbar */
.navbar-custom {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-custom .navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    background: linear-gradient(to right, #e0aaff, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    animation: hueRotate 10s linear infinite;
}

@keyframes hueRotate {
    to { filter: hue-rotate(360deg); }
}

.navbar-custom .nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

/* Link Hover underline */
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -5px; left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-custom .nav-link:hover::after {
    width: 100%;
}

/* Buttons with Shimmer */
.btn-mystic {
    background: linear-gradient(135deg, var(--primary-color), #c77dff);
    border: none;
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
}

.btn-mystic::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    z-index: -1;
    transition: 0.5s;
}

.btn-mystic:hover::before {
    left: 150%;
}

.btn-mystic:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(157, 78, 221, 0.5);
    color: white;
}

.btn-outline-mystic {
    border: 2px solid rgba(157, 78, 221, 0.5);
    color: white;
    background: rgba(157, 78, 221, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-mystic:hover {
    border-color: var(--primary-color);
    background: rgba(157, 78, 221, 0.2);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    transform: translateY(-3px);
}

/* Hero Section Premium */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title span {
    background: linear-gradient(135deg, #e0aaff 0%, #ff007f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

/* Floating Image */
.hero-image-wrapper {
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image-wrapper img {
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 50px rgba(157, 78, 221, 0.3);
}

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Premium Cards */
.mystic-card {
    background: linear-gradient(145deg, rgba(30, 35, 55, 0.8), rgba(15, 20, 35, 0.9));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.mystic-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.mystic-card:hover {
    transform: translateY(-10px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.15);
}

.icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(255, 0, 127, 0.1));
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #e0aaff;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.mystic-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

/* Footer */
.footer {
    background: rgba(5, 7, 15, 0.95);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}
