/* ========================================
   RESET E VARIÁVEIS GLOBAIS
   ======================================== */

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

:root {
    --primary-purple: #7c3aed;
    --secondary-cyan: #0891b2;
    --dark-bg: #050505;
    --darker-bg: #0a0a0a;
    --card-bg: rgba(15, 15, 15, 0.7);
    --glass-bg: rgba(124, 58, 237, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-tertiary: #707070;
    --border-color: rgba(124, 58, 237, 0.1);
    --glow-purple: 0 0 20px rgba(124, 58, 237, 0.4);
    --glow-cyan: 0 0 20px rgba(8, 145, 178, 0.3);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0a0a0a 50%, #050505 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed;
}

/* Respeitar preferência de redução de movimento */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   ÍCONES SVG
   ======================================== */

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5em;
    height: 1.5em;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.icon svg {
    width: 100%;
    height: 100%;
}

.icon-large {
    width: 3rem;
    height: 3rem;
    color: var(--secondary-cyan);
}

.icon-medium {
    width: 2rem;
    height: 2rem;
}

.icon-small {
    width: 1rem;
    height: 1rem;
}

/* ========================================
   HEADER E MENU HAMBÚRGUER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Menu Toggle Button */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2rem;
    height: 2rem;
}

.hamburger {
    width: 1.5rem;
    height: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger::before,
.hamburger::after,
.hamburger {
    content: '';
    background: var(--text-primary);
    height: 2px;
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-toggle.active .hamburger {
    opacity: 0;
}

/* Menu Mobile Fullscreen */
.menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow-y: auto;
    overflow-x: hidden;
}

.menu-mobile.active {
    opacity: 1;
    visibility: visible;
}

.menu-list {
    list-style: none;
    text-align: center;
    width: 100%;
    padding: 2rem 0;
    max-height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.menu-list::-webkit-scrollbar {
    width: 8px;
}

.menu-list::-webkit-scrollbar-track {
    background: rgba(124, 58, 237, 0.05);
    border-radius: 10px;
}

.menu-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-purple), var(--secondary-cyan));
    border-radius: 10px;
    transition: var(--transition);
}

.menu-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-cyan), var(--primary-purple));
    box-shadow: var(--glow-purple);
}

.menu-link {
    display: block;
    font-size: 1.3rem;
    padding: 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    margin: 0.5rem 0;
    animation: slideInMenu 0.5s ease-out forwards;
    opacity: 0;
    font-weight: 500;
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-cyan));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.menu-link:hover::before,
.menu-link:active::before {
    width: 60%;
}

.menu-link:hover {
    color: var(--secondary-cyan);
}

@keyframes slideInMenu {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-link:nth-child(1) { animation-delay: 0.1s; }
.menu-link:nth-child(2) { animation-delay: 0.2s; }
.menu-link:nth-child(3) { animation-delay: 0.3s; }
.menu-link:nth-child(4) { animation-delay: 0.4s; }
.menu-link:nth-child(5) { animation-delay: 0.5s; }
.menu-link:nth-child(6) { animation-delay: 0.6s; }
.menu-link:nth-child(7) { animation-delay: 0.7s; }
.menu-link:nth-child(8) { animation-delay: 0.8s; }

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    margin-top: 4rem;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: var(--secondary-cyan);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* ========================================
   BOTÕES
   ======================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), #7c3aed);
    color: var(--text-primary);
    box-shadow: var(--glow-purple);
    border: 1px solid rgba(107, 33, 168, 0.3);
}

.btn-primary:hover,
.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(107, 33, 168, 0.5);
}

.btn-secondary {
    background: rgba(8, 145, 178, 0.1);
    color: var(--secondary-cyan);
    border: 2px solid var(--secondary-cyan);
    box-shadow: var(--glow-cyan);
}

.btn-secondary:hover,
.btn-secondary:active {
    background: rgba(8, 145, 178, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(8, 145, 178, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(107, 33, 168, 0.1);
    border-color: var(--primary-purple);
}

/* ========================================
   CONTAINER E SEÇÕES
   ======================================== */

.container {
    max-width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

section {
    padding: 3rem 0;
    position: relative;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========================================
   CARDS
   ======================================== */

.card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    animation: slideInCard 0.6s ease-out;
    opacity: 0;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    background: rgba(107, 33, 168, 0.15);
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: var(--glow-purple);
}

.card-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    background: rgba(107, 33, 168, 0.03);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ========================================
   SYSTEMS SECTION
   ======================================== */

.systems {
    background: rgba(8, 145, 178, 0.02);
}

.systems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.system-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.system-card:hover {
    background: rgba(8, 145, 178, 0.15);
    border-color: var(--secondary-cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.system-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.system-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ========================================
   FACTIONS SECTION
   ======================================== */

.teams {
    background: rgba(107, 33, 168, 0.03);
    border-top: 1px solid var(--border-color);
}

.teams-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
}

.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    scroll-snap-align: start;
    flex-shrink: 0;
    min-width: 100%;
}

.faction-card:hover {
    background: rgba(107, 33, 168, 0.15);
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: var(--glow-purple);
}

.team-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.faction-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faction-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   JOBS SECTION
   ======================================== */

.jobs {
    background: rgba(8, 145, 178, 0.02);
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.job-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.job-card:hover {
    background: rgba(8, 145, 178, 0.15);
    border-color: var(--secondary-cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.job-icon {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.job-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.job-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ========================================
   RULES SECTION - ACCORDION
   ======================================== */

.rules {
    background: rgba(107, 33, 168, 0.03);
    border-top: 1px solid var(--border-color);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(107, 33, 168, 0.1);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: var(--transition);
    color: var(--secondary-cyan);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* ========================================
   LAWS SECTION
   ======================================== */

.laws {
    background: rgba(8, 145, 178, 0.02);
}

.laws-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.law-item {
    background: var(--glass-bg);
    border-left: 4px solid var(--secondary-cyan);
    border-radius: 0.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.law-item:hover {
    background: rgba(8, 145, 178, 0.15);
    transform: translateX(5px);
}

.law-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.law-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   SHOP SECTION
   ======================================== */

.shop {
    background: rgba(107, 33, 168, 0.03);
    border-top: 1px solid var(--border-color);
}

.shop-disclaimer {
    text-align: center;
    color: var(--secondary-cyan);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.shop-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shop-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
}

.shop-card.featured {
    background: rgba(107, 33, 168, 0.15);
    border-color: var(--primary-purple);
    transform: scale(1.02);
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-purple);
}

.shop-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.shop-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.shop-price {
    font-size: 1.8rem;
    color: var(--primary-purple);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.shop-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.shop-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: rgba(5, 5, 5, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
}

.footer-section a:hover {
    color: var(--secondary-cyan);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

/* ========================================
   BOTÃO FLUTUANTE DISCORD
   ======================================== */

.discord-float {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    box-shadow: var(--glow-purple);
    transition: var(--transition);
    z-index: 50;
    animation: pulse 2s infinite;
}

.discord-float svg {
    width: 1.8rem;
    height: 1.8rem;
}

.discord-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 0 40px rgba(107, 33, 168, 0.8);
}

.discord-float:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(107, 33, 168, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(107, 33, 168, 0.8);
    }
}

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--secondary-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--text-primary);
}

.breadcrumb span {
    color: var(--text-secondary);
}

/* ========================================
   PAGE CONTENT
   ======================================== */

.page-header {
    padding: 4rem 0 2rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ========================================
   RESPONSIVIDADE - TABLET
   ======================================== */

@media (min-width: 768px) {
    .header-container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .systems-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .jobs-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .teams-carousel {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-card {
        min-width: auto;
    }

    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .container {
        padding: 0 2rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }
}

/* ========================================
   RESPONSIVIDADE - DESKTOP
   ======================================== */

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .container {
        max-width: 1200px;
        padding: 0 3rem;
    }

    .card {
        padding: 2.5rem;
    }

    .shop-grid {
        gap: 2.5rem;
    }

    .shop-card.featured {
        transform: scale(1.05);
    }

    .discord-float {
        width: 4rem;
        height: 4rem;
        bottom: 3rem;
        right: 2rem;
    }

    .discord-float svg {
        width: 2rem;
        height: 2rem;
    }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ========================================
   CAROUSEL TIMES
   ======================================== */

.teams-carousel {
    background: rgba(124, 58, 237, 0.03);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
}

.goals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.goal-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.goal-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.goal-header h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.goal-amount {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-cyan));
    border-radius: 10px;
    transition: width 0.6s ease;
    box-shadow: var(--glow-purple);
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0.75rem 0;
}

.goal-description {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0;
}

.donations-plans {
    padding: 3rem 0;
}

.donations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.donation-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.donation-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
    transform: translateY(-5px);
}

.donation-card.featured {
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.donation-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.donation-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0.5rem 0 0.5rem 0;
}

.donation-amount {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.donation-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.donation-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.donation-benefits li:last-child {
    border-bottom: none;
}

.donation-btn {
    margin-top: 1.5rem;
    width: 100%;
}

.payment-methods {
    background: rgba(124, 58, 237, 0.03);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
}

.payment-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.method-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: var(--transition);
}

.method-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.method-icon {
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.method-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.5rem 0 1.5rem 0;
}

.method-btn {
    width: 100%;
}

/* ========================================
   RESPONSIVIDADE - DOAÇÕES
   ======================================== */

@media (min-width: 768px) {
    .goals-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .donations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .donations-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .methods-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   FORMULÁRIO DE WHITELIST
   ======================================== */

.whitelist-form-section {
    background: rgba(107, 33, 168, 0.03);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
}

.form-container {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
}

.whitelist-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: rgba(107, 33, 168, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(107, 33, 168, 0.1);
    border-color: var(--secondary-cyan);
    box-shadow: 0 0 10px rgba(8, 145, 178, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.form-group.checkbox input {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
}

.form-group.checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(107, 33, 168, 0.1);
    border-color: var(--primary-purple);
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-content .icon {
    color: #22c55e;
}

.success-content h3 {
    color: #22c55e;
    font-size: 1.3rem;
}

.success-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   RESPONSIVIDADE - FORMULÁRIO
   ======================================== */

@media (min-width: 768px) {
    .form-container {
        padding: 3rem;
    }

    .form-actions {
        flex-direction: row;
        gap: 1rem;
    }

    .form-actions .btn {
        flex: 1;
    }
}

/* ========================================
   AUTENTICAÇÃO (LOGIN/CADASTRO)
   ======================================== */

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0a0a0a 50%, #050505 100%);
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-form .form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.auth-form .form-group input {
    padding: 0.85rem 1rem;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.auth-form .form-group input:focus {
    outline: none;
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--primary-purple);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}

.auth-form .form-group small {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.auth-form .form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.auth-form .form-group.checkbox input {
    width: 1.1rem;
    height: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
}

.auth-form .form-group.checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
}

.auth-divider {
    text-align: center;
    color: var(--text-tertiary);
    margin: 1.5rem 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition);
}

.auth-footer a:hover {
    color: var(--secondary-cyan);
    text-decoration: underline;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ========================================
   DASHBOARD
   ======================================== */

.dashboard-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 3rem 0;
    min-height: 80vh;
}

.dashboard-sidebar {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-profile {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--primary-purple);
}

.admin-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.sidebar-link svg {
    width: 18px;
    height: 18px;
}

.sidebar-link:hover,
.sid.menu-link:hover {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-purple);
}

.menu-link.login-link {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    color: white !important;
    font-weight: 600;
    margin-top: 1rem;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-link.login-link:hover {
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}

.sidebar-link.logout {
    color: #ef4444;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.dashboard-main {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
}

.dashboard-section-content {
    display: none;
}

.dashboard-section-content.active {
    display: block;
}

.dashboard-section-content h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.profile-card,
.admin-card {
    background: rgba(124, 58, 237, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-card h3 {
    margin-top: 0;
    color: var(--text-primary);
}

.search-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
}

.search-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.user-item,
.blog-item {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
}

.user-item h4,
.blog-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.blog-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* ========================================
   BLOG
   ======================================== */

.blog-section {
    padding: 3rem 0;
}

.blog-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.blog-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-post-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.blog-post-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
    transform: translateY(-5px);
}

.blog-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-cyan));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-content h3 {
    margin: 0 0 0.75rem 0;
    color: var(--text-primary);
    font-size: 1.3rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
}

.sidebar-widget h3 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-list a {
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0.4rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.category-list a:hover,
.category-list a.active {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-purple);
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item h4 {
    margin: 0 0 0.3rem 0;
    font-size: 0.9rem;
}

.recent-post-item a {
    color: var(--primary-purple);
    text-decoration: none;
}

.recent-post-item a:hover {
    text-decoration: underline;
}

.recent-post-item small {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

/* ========================================
   BLOG POST INDIVIDUAL
   ======================================== */

.blog-post-section {
    padding: 3rem 0;
}

.blog-post-full {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.post-header {
    margin-bottom: 2rem;
}

.post-header h1 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-size: 2.2rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.post-image {
    margin: 2rem 0;
    border-radius: 0.75rem;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 2rem 0;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.post-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-purple);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.related-posts {
    margin-top: 3rem;
}

.related-posts h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-post-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}

.related-post-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.related-post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post-card h3 {
    padding: 1rem 1rem 0.5rem;
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.related-post-card p {
    padding: 0 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.related-post-card .btn {
    margin: 1rem;
    width: calc(100% - 2rem);
}

/* ========================================
   RESPONSIVIDADE - DASHBOARD E BLOG
   ======================================== */

@media (max-width: 768px) {
    .dashboard-section {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: static;
    }

    .blog-container {
        grid-template-columns: 1fr;
    }

    .post-header h1 {
        font-size: 1.6rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ACESSIBILIDADE
   ======================================== */

@media (prefers-color-scheme: dark) {
    body {
        color-scheme: dark;
    }
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--secondary-cyan);
    outline-offset: 2px;
}
