/* 
* style.css
* Antigravity Design System
* Tema: Dark Universe / Mystery
*/

:root {
    /* Cores Cósmicas */
    --space-dark: #05020a;
    --space-light: #160a2b;
    --nebula-purple: #6a1b9a;
    --star-blue: #4a148c;
    --accent-glow: #e040fb;
    
    /* Textos */
    --text-main: #f5f0fa;
    --text-muted: #a698b5;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
}

body.dark-universe {
    background-color: var(--space-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .cinzel-font {
    font-family: 'Cinzel', serif;
}

/* Background Dinâmico (Universo Abstrato 3D via CSS) */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--nebula-purple), transparent 70%);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--star-blue), transparent 70%);
    bottom: 20%;
    right: -20%;
    animation-delay: -5s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #311b92, transparent 70%);
    top: 50%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, -50px) scale(1.2); }
}

/* Stars overlay */
.stars-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0,0,0,0)), 
                      radial-gradient(2px 2px at 40px 70px, #ffffff, rgba(0,0,0,0)), 
                      radial-gradient(2px 2px at 50px 160px, #ffffff, rgba(0,0,0,0)), 
                      radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 10;
}

/* Layout Utils */
.py-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

/* Typography */
.text-glow {
    background: linear-gradient(to right, #e0b0ff, #e040fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(224, 64, 251, 0.4);
}

.text-glow-color {
    color: var(--accent-glow);
    text-shadow: 0 0 10px rgba(224, 64, 251, 0.4);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.body-text {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- Floating Navbar (Pill Shape) --- */
.nav-wrapper {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 20px;
}

.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.logo-img {
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-glow);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Dropdown Mobile */
.mobile-menu {
    position: absolute;
    top: 80px;
    width: calc(100% - 40px);
    max-width: 400px;
    border-radius: 20px;
    display: none;
    flex-direction: column;
    padding: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-link {
    display: block;
    padding: 15px 0;
    color: white;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .nav-links, .btn-glow {
        display: none !important;
    }
    .mobile-menu-btn {
        display: block;
    }
    .glass-nav {
        padding: 10px 20px;
    }
}

/* --- Buttons --- */
.btn-glow {
    background: transparent;
    color: white;
    border: 1px solid var(--glass-highlight);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(224, 64, 251, 0.3), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.btn-glow:hover {
    color: white;
    border-color: var(--accent-glow);
    box-shadow: 0 0 20px rgba(224, 64, 251, 0.4);
}

.btn-glow:hover::before {
    transform: translateX(100%);
}

.btn-glow-large {
    display: inline-block;
    background: linear-gradient(45deg, var(--star-blue), var(--nebula-purple));
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.4);
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-glow-large:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(224, 64, 251, 0.5);
}

/* --- Hero Section --- */
.hero-container {
    min-height: 100vh;
    position: relative;
    z-index: 10;
    padding-top: 100px;
}

.cosmic-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    font-weight: 300;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-explore:hover {
    color: var(--accent-glow);
    background: rgba(255,255,255,0.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* --- Glass Panels & Cards --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.glass-card {
    background: rgba(10, 5, 20, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.glass-card:hover {
    transform: translateY(-15px);
    background: rgba(30, 15, 50, 0.5);
    border-color: rgba(224, 64, 251, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(224, 64, 251, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    border: 1px solid var(--glass-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-glow);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.icon-img-custom {
    width: 45px;
    height: auto;
    filter: brightness(0) invert(1) opacity(0.8); /* Faz a imagem do tarot ficar sutil e branca */
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Image Processing --- */
.image-glass-container {
    position: relative;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.profile-img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
}

.glass-overlay-label {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: rgba(106, 27, 154, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* --- Custom List --- */
.custom-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-main);
}

/* --- Accordion Dark Glass --- */
.glass-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--glass-border);
}

.glass-accordion-item {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
}

.accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    padding: 20px 25px;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    color: var(--text-muted);
    padding: 0 25px 25px;
    line-height: 1.7;
}

/* --- Footer --- */
.footer-glass {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 3px;
}

.social-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-glass:hover {
    background: rgba(255,255,255,0.1);
    color: var(--accent-glow);
    transform: translateY(-5px);
}
