@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;700&family=Quicksand:wght@500;700&display=swap');

:root {
    /* Modo 1: White & Black */
    --bg-body: #ffffff;
    --bg-card: #f8f9fa;
    --navbar-bg: rgba(255, 255, 255, 0.9);
    --text-main: #1a1a1a;
    --text-secondary: #555555;
    --primary: #000000;
    --secondary: #444444;
    --accent: #eeeeee;
    --toast-bg: #2ecc71;
}

body.dark-mode {
    /* Modo 2: Black & White */
    --bg-body: #0a0a0a;
    --bg-card: #151515;
    --navbar-bg: rgba(10, 10, 10, 0.9);
    --text-main: #ffffff;
    --text-secondary: #cccccc;
    --primary: #ffffff;
    --secondary: #888888;
    --accent: #222222;
}

body.pink-mode {
    /* Modo 3: Rosa Fofo */
    --bg-body: #fff0f5;
    --bg-card: #ffffff;
    --navbar-bg: rgba(255, 240, 245, 0.85);
    --text-main: #4a3a40;
    --text-secondary: #7a6a70;
    --primary: #ff85a1;
    --secondary: #b19cd9;
    --accent: #ffdef2;
}

/* --- SCROLLBAR CUSTOMIZADA (Chrome, Edge, OperaGX, Brave) --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 3px solid var(--bg-body);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Scrollbar Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-body);
}

/* --- RESET E ESTRUTURA --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Quicksand', sans-serif;
    transition: background 0.4s ease, color 0.3s ease;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mc-font {
    font-family: 'Fredoka', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}


.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--accent);
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* SELETOR DE TEMAS */
.theme-switcher {
    display: flex;
    gap: 10px;
    background: var(--accent);
    padding: 6px 12px;
    border-radius: 50px;
    margin: 0 15px;
}

.theme-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease;
}

.theme-btn:hover {
    transform: scale(1.2);
}

.btn-white {
    background: #ffffff;
    border-color: #ccc;
}

.btn-dark {
    background: #000000;
    border-color: #444;
}

.btn-pink {
    background: #ff85a1;
    border-color: #ffb1c1;
}

/* --- SEÇÕES --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px 20px;
}

.title-glow {
    font-size: clamp(40px, 10vw, 85px);
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.btn-main {
    display: inline-block;
    padding: 16px 45px;
    background: var(--primary);
    color: var(--bg-body) !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.feature-card {
    background: #0f0f0f;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(var(--primary-rgb), 0.2);
}

.feature-banner {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: 0.6s;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, #0f0f0f 0%, rgba(15, 15, 15, 0) 100%);
}

.feature-card:hover .feature-banner {
    transform: scale(1.1);
}

.module-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #000;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-body {
    padding: 0 30px 40px 30px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.feature-icon-float {
    width: 70px;
    height: 70px;
    background: #161616;
    border: 2px solid var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 20px auto;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.feature-icon-float svg {
    width: 35px;
    height: 35px;
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary));
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.feature-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}
/* GALERIA */
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.img-wrapper {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--accent);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.img-wrapper:hover img {
    transform: scale(1.1);
}

/* --- TOAST NOTIFICATION (SLIDE DIREITO SUPERIOR) --- */
.toast-download {
    position: fixed;
    top: 100px;
    right: -400px;
    width: 320px;
    background: #27ae60;
    /* Verde sólido para o aviso */
    color: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-download.active {
    right: 25px;
}

.toast-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 10px;
    display: flex;
}

/* FOOTER */
.footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--accent);
    margin-top: 50px;
}

.btn-main {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-us-text {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.hero-highlight {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 15px;
    letter-spacing: 1px;
}

.status-indicator {
    margin-top: 25px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.status-text {
    color: #27ae60;
    /* Verde para passar confiança */
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #27ae60;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.beta-notification {
    position: fixed;
    bottom: 85px;
    left: 20px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    padding: 20px;
    border-radius: 15px;
    display: none;
    z-index: 9999;
    max-width: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.beta-notification.active {
    display: block;
    animation: slideUp 0.3s ease-out;
}

.bell-fixed-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
}

.bell-btn {
    background: var(--primary);
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.bell-btn svg {
    stroke: #ffffff00;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.bell-btn:hover {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(1.1);
}

.member-count {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-top: 8px;
    display: block;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(var(--secondary-rgb), 0.3);
}

.hero-highlight {
    border-left: 3px solid var(--primary);
    padding-left: 15px;
    font-style: italic;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.feature-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--primary);
    border-color: var(--primary);
}

.icon-box svg {
    width: 45px;
    height: 45px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary));
}

.feature-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    backdrop-filter: blur(12px);
}

.feature-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    padding: 45px;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 70px rgba(var(--primary-rgb), 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary);
}

.beta-notification {
    position: fixed;
    bottom: 85px;
    left: 20px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    padding: 20px;
    border-radius: 15px;
    display: none;
    z-index: 9999;
    max-width: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.beta-notification.active {
    display: block;
    animation: slideUp 0.3s ease-out;
}

.bell-fixed-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
}

.bell-btn {
    background: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
    box-shadow: 0 0 20px var(--primary);
}

.modules-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.module-tag {
    font-size: 10px;
    background: var(--primary);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-left-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { 
    to { transform: rotate(360deg); } 
}

.loading-container.hidden {
    opacity: 0;
    visibility: hidden;
}