/* ============================================ */
/* TOP SPORTS CLUB - CSS PREMIUM */
/* Cores: Preto #000000, Branco #FFFFFF, Verde Lima Neon #B4F000 */
/* ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-lime: #B4F000;
    --color-lime-dark: #8FC000;
    --color-gray-dark: #1a1a1a;
    --color-gray: #2a2a2a;
    --color-gray-light: #3a3a3a;
    --color-gray-lighter: #666666;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================ */
/* MENU DE NAVEGAÇÃO */
/* ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-lime);
    box-shadow: 0 2px 20px rgba(180, 240, 0, 0.2);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(180, 240, 0, 0.5));
}

.nav-logo-text {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--color-white);
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    background: var(--color-lime);
    color: var(--color-black);
    transform: translateY(-2px);
}

.nav-menu a.active {
    background: var(--color-lime);
    color: var(--color-black);
    box-shadow: 0 0 15px rgba(180, 240, 0, 0.4);
}

.nav-menu a i {
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--color-lime);
    color: var(--color-lime);
    font-size: 24px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--color-lime);
    color: var(--color-black);
}

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

.hero-section {
    position: relative;
    min-height: 80vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(180, 240, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(180, 240, 0, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.5) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.5) 3px
    );
    pointer-events: none;
    opacity: 0.03;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.logo-container {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

/* Logo Principal Hero - Profissional */
/* Estilo premium sem glow neon para máxima elegância e profissionalismo */
/* Drop shadow escuro cria profundidade sem distrações visuais */
.main-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.95;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 8px;
}

.main-logo:hover {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5)) 
            drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    transform: translateY(-4px);
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-lime), var(--color-lime-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(180, 240, 0, 0.5), 0 0 60px rgba(180, 240, 0, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.logo-circle i {
    font-size: 50px;
    color: var(--color-black);
}

.logo-circle-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-lime), var(--color-lime-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(180, 240, 0, 0.4);
}

.logo-circle-small i {
    font-size: 20px;
    color: var(--color-black);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-white), var(--color-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--color-gray-lighter);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-value {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.value-text {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 10px;
}

.highlight {
    color: var(--color-lime);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(180, 240, 0, 0.5);
}

.price-text {
    font-size: 28px;
    color: var(--color-white);
}

.price-highlight {
    font-size: 48px;
    color: var(--color-lime);
    font-weight: 900;
    text-shadow: 0 0 20px rgba(180, 240, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--color-lime);
    font-family: var(--font-primary);
    text-shadow: 0 0 20px rgba(180, 240, 0, 0.5);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--color-gray-lighter);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--color-lime);
    animation: bounce 2s infinite;
}

/* ============================================ */
/* BUTTONS */
/* ============================================ */

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-lime), var(--color-lime-dark));
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(180, 240, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(180, 240, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-lime);
    box-shadow: 0 0 15px rgba(180, 240, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--color-lime);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(180, 240, 0, 0.4);
}

.btn-lg {
    padding: 20px 50px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
}

.btn-icon:hover {
    color: var(--color-lime);
    transform: scale(1.1);
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

/* ============================================ */
/* SECTIONS */
/* ============================================ */

.benefits-section,
.testimonials-section,
.cta-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray-lighter);
    font-weight: 300;
}

/* ============================================ */
/* BENEFITS GRID */
/* ============================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--color-gray-dark), var(--color-gray));
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-lime-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-lime);
    box-shadow: 0 10px 40px rgba(180, 240, 0, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.premium-card {
    border: 2px solid var(--color-lime);
    box-shadow: 0 0 30px rgba(180, 240, 0, 0.3);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-lime);
    color: var(--color-black);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(180, 240, 0, 0.1), rgba(180, 240, 0, 0.05));
    border-radius: 50%;
    border: 2px solid rgba(180, 240, 0, 0.3);
}

.benefit-icon i {
    font-size: 36px;
    color: var(--color-lime);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-white);
    font-family: var(--font-primary);
}

.benefit-description {
    font-size: 15px;
    color: var(--color-gray-lighter);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Botão Ver Regulamento */
.btn-regulation {
    background: transparent;
    border: 2px solid var(--color-lime);
    color: var(--color-lime);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-regulation:hover {
    background: var(--color-lime);
    color: var(--color-black);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(180, 240, 0, 0.4);
}

.btn-regulation i {
    font-size: 14px;
}

/* Conteúdo do Regulamento (expansível) */
.regulation-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, margin 0.5s ease;
    background: rgba(180, 240, 0, 0.05);
    border-radius: 12px;
    margin-top: 0;
    text-align: left;
}

.regulation-content.active {
    max-height: 800px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(180, 240, 0, 0.3);
}

.regulation-content h4 {
    font-size: 16px;
    color: var(--color-lime);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.regulation-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.regulation-content ul li {
    font-size: 14px;
    color: var(--color-gray-lighter);
    line-height: 1.8;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.regulation-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-lime);
    font-weight: bold;
}

.regulation-content ul li strong {
    color: var(--color-white);
    font-weight: 600;
}

/* ============================================ */
/* TESTIMONIALS */
/* ============================================ */

.testimonials-section {
    background: var(--color-gray-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--color-gray);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-lime);
    box-shadow: 0 10px 30px rgba(180, 240, 0, 0.2);
}

.testimonial-avatar {
    font-size: 60px;
    color: var(--color-lime);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 5px;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: var(--color-lime);
}

.testimonial-rating {
    margin-top: 20px;
    color: var(--color-lime);
    font-size: 18px;
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--color-gray-dark), var(--color-black));
    padding: 100px 0;
}

.cta-card {
    background: var(--color-gray);
    border: 2px solid var(--color-lime);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 0 50px rgba(180, 240, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--color-white);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--color-gray-lighter);
    margin-bottom: 40px;
}

.plan-details {
    background: var(--color-gray-dark);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--color-gray-light);
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-from {
    display: block;
    font-size: 18px;
    color: var(--color-gray-lighter);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-current {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--color-lime);
    font-family: var(--font-primary);
    text-shadow: 0 0 20px rgba(180, 240, 0, 0.5);
}

.plan-features {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.plan-features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li i {
    color: var(--color-lime);
    font-size: 18px;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-gray-lighter);
}

.cta-note i {
    color: var(--color-lime);
    margin-right: 5px;
}

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

.footer {
    background: var(--color-black);
    border-top: 1px solid var(--color-gray-light);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Logo Footer */
.footer-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(180, 240, 0, 0.4));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 25px rgba(180, 240, 0, 0.6));
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-lime);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(180, 240, 0, 0.4);
}

.footer-text {
    text-align: center;
    color: var(--color-gray-lighter);
    font-size: 14px;
}

/* ============================================ */
/* MODAL DE LOGIN */
/* ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, var(--color-gray-dark), var(--color-gray));
    margin: 5% auto;
    padding: 0;
    border: 2px solid var(--color-lime);
    border-radius: 24px;
    max-width: 500px;
    box-shadow: 0 0 50px rgba(180, 240, 0, 0.4);
    animation: slideDown 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--color-white);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    color: var(--color-lime);
    transform: scale(1.2);
}

/* Logo Login Modal */
.login-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 25px rgba(180, 240, 0, 0.5)) 
            drop-shadow(0 0 50px rgba(180, 240, 0, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

.login-container {
    padding: 60px 40px;
}

.login-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--color-white);
}

.login-subtitle {
    text-align: center;
    color: var(--color-gray-lighter);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-black);
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-lime);
    box-shadow: 0 0 15px rgba(180, 240, 0, 0.2);
}

.form-input::placeholder {
    color: var(--color-gray-lighter);
}

.login-options {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.login-link {
    color: var(--color-lime);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.login-demo {
    margin-top: 30px;
    padding: 20px;
    background: var(--color-black);
    border-radius: 8px;
    border: 1px solid var(--color-gray-light);
    font-size: 13px;
}

.login-demo p {
    margin-bottom: 8px;
    color: var(--color-gray-lighter);
}

.login-demo code {
    background: var(--color-gray);
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--color-lime);
    font-family: 'Courier New', monospace;
}

/* ============================================ */
/* TOP BAR */
/* ============================================ */

.top-bar {
    background: var(--color-black);
    border-bottom: 2px solid var(--color-lime);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(180, 240, 0, 0.2);
}

.admin-bar {
    border-bottom-color: #ff4444;
    box-shadow: 0 2px 20px rgba(255, 68, 68, 0.2);
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Logo Top Bar */
.topbar-logo {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(180, 240, 0, 0.5));
    transition: all 0.3s ease;
}

.topbar-logo:hover {
    filter: drop-shadow(0 0 25px rgba(180, 240, 0, 0.7));
    transform: scale(1.05);
}

.top-bar-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    font-weight: 600;
    color: var(--color-lime);
}

/* ============================================ */
/* NAVIGATION TABS */
/* ============================================ */

.member-nav {
    background: var(--color-gray-dark);
    border-bottom: 1px solid var(--color-gray-light);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 20px;
    position: sticky;
    top: 67px;
    z-index: 99;
}

.nav-tab {
    background: transparent;
    border: none;
    color: var(--color-gray-lighter);
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-tab:hover {
    background: var(--color-gray);
    color: var(--color-white);
}

.nav-tab.active {
    background: var(--color-lime);
    color: var(--color-black);
    box-shadow: 0 0 15px rgba(180, 240, 0, 0.3);
}

.nav-tab i {
    font-size: 16px;
}

/* ============================================ */
/* TAB CONTENT */
/* ============================================ */

.member-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.page-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--color-white);
}

.page-subtitle {
    font-size: 18px;
    color: var(--color-gray-lighter);
    margin-bottom: 40px;
}

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

.welcome-section {
    margin-bottom: 40px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: linear-gradient(135deg, var(--color-gray-dark), var(--color-gray));
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-lime);
    box-shadow: 0 10px 30px rgba(180, 240, 0, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.ranking-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    color: #FFD700;
}

.points-icon {
    background: linear-gradient(135deg, rgba(180, 240, 0, 0.2), rgba(180, 240, 0, 0.1));
    color: var(--color-lime);
}

.games-icon {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.2), rgba(0, 150, 255, 0.1));
    color: #0096FF;
}

.winrate-icon {
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.2), rgba(255, 0, 150, 0.1));
    color: #FF0096;
}

.card-content h3 {
    font-size: 14px;
    color: var(--color-gray-lighter);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 36px;
    font-weight: 900;
    font-family: var(--font-primary);
    margin-bottom: 5px;
}

.card-label {
    font-size: 12px;
    color: var(--color-gray-lighter);
}

.dashboard-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.section-card {
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 30px;
}

.section-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-card-title i {
    color: var(--color-lime);
}

.events-list,
.notices-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--color-gray);
    border-radius: 12px;
    border: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
}

.event-item:hover {
    border-color: var(--color-lime);
    transform: translateX(5px);
}

.event-date {
    text-align: center;
    min-width: 60px;
}

.event-day {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--color-lime);
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 14px;
    color: var(--color-gray-lighter);
    text-transform: uppercase;
}

.event-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--color-white);
}

.event-info p {
    font-size: 14px;
    color: var(--color-gray-lighter);
}

.notice-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--color-gray);
    border-radius: 12px;
    border-left: 4px solid var(--color-lime);
}

.notice-icon {
    color: var(--color-lime);
    font-size: 20px;
    flex-shrink: 0;
}

.notice-item p {
    font-size: 14px;
    color: var(--color-white);
    line-height: 1.6;
}

/* ============================================ */
/* RANKING */
/* ============================================ */

.ranking-filters {
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--color-gray);
    border: 1px solid var(--color-gray-light);
    color: var(--color-white);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--color-gray-light);
    border-color: var(--color-lime);
}

.filter-btn.active {
    background: var(--color-lime);
    color: var(--color-black);
    border-color: var(--color-lime);
    box-shadow: 0 0 15px rgba(180, 240, 0, 0.3);
}

.search-box {
    position: relative;
    margin-top: 20px;
}

.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-lighter);
    font-size: 16px;
}

.search-box input {
    width: 100%;
    padding: 14px 18px 14px 50px;
    background: var(--color-black);
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--color-lime);
    box-shadow: 0 0 15px rgba(180, 240, 0, 0.2);
}

.ranking-table-container {
    overflow-x: auto;
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table thead {
    background: var(--color-black);
}

.ranking-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 700;
    color: var(--color-lime);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--color-lime);
}

.ranking-table tbody tr {
    border-bottom: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
}

.ranking-table tbody tr:hover {
    background: var(--color-gray);
}

.ranking-table td {
    padding: 20px 15px;
    color: var(--color-white);
    font-size: 15px;
}

.ranking-table .position-cell {
    font-weight: 900;
    font-size: 20px;
    color: var(--color-lime);
    font-family: var(--font-primary);
}

.ranking-table .name-cell {
    font-weight: 600;
}

.category-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-masculino {
    background: rgba(0, 150, 255, 0.2);
    color: #0096FF;
    border: 1px solid #0096FF;
}

.category-feminino {
    background: rgba(255, 0, 150, 0.2);
    color: #FF0096;
    border: 1px solid #FF0096;
}

.category-duplas {
    background: rgba(150, 0, 255, 0.2);
    color: #9600FF;
    border: 1px solid #9600FF;
}

.level-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.level-beginner {
    background: rgba(100, 255, 100, 0.2);
    color: #64FF64;
    border: 1px solid #64FF64;
}

.level-intermediate {
    background: rgba(255, 200, 0, 0.2);
    color: #FFC800;
    border: 1px solid #FFC800;
}

.level-advanced {
    background: rgba(255, 50, 50, 0.2);
    color: #FF3232;
    border: 1px solid #FF3232;
}

/* Badge de Gênero */
.badge-masculino {
    background: rgba(0, 150, 255, 0.2);
    color: #0096FF;
    border: 1px solid #0096FF;
}

.badge-feminino {
    background: rgba(255, 0, 150, 0.2);
    color: #FF0096;
    border: 1px solid #FF0096;
}

/* Badge de Modalidade */
.badge-simples {
    background: rgba(180, 240, 0, 0.2);
    color: var(--color-lime);
    border: 1px solid var(--color-lime);
}

.badge-dupla {
    background: rgba(150, 0, 255, 0.2);
    color: #9600FF;
    border: 1px solid #9600FF;
}

/* Badge de Grupo */
.group-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(180, 240, 0, 0.15);
    color: var(--color-lime);
    border: 1px solid rgba(180, 240, 0, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   CTA RANKING
   ========================================= */

.ranking-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(180, 240, 0, 0.05) 0%, rgba(180, 240, 0, 0.02) 100%);
    border: 2px solid rgba(180, 240, 0, 0.2);
    border-radius: 20px;
    text-align: center;
    min-height: 300px;
}

.ranking-cta-description {
    font-size: 1.2rem;
    color: var(--color-gray-lighter);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

.ranking-cta-description i {
    color: var(--color-lime);
    margin-right: 8px;
    font-size: 1.3rem;
}

.btn-ranking-access {
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(180, 240, 0, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-ranking-access:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(180, 240, 0, 0.5);
}

.btn-ranking-access i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .ranking-cta-container {
        padding: 40px 20px;
        min-height: 250px;
    }
    
    .ranking-cta-description {
        font-size: 1rem;
    }
    
    .btn-ranking-access {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

/* Badge de Grupo (continuação) */
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(180, 240, 0, 0.15);
    color: var(--color-lime);
    border: 1px solid rgba(180, 240, 0, 0.4);
}

.trend-icon {
    font-size: 18px;
}

.trend-up {
    color: #00FF00;
}

.trend-down {
    color: #FF0000;
}

.trend-stable {
    color: var(--color-gray-lighter);
}

.loading-row {
    text-align: center;
    padding: 40px !important;
    color: var(--color-gray-lighter);
}

.ranking-info {
    text-align: center;
    margin-top: 20px;
    color: var(--color-gray-lighter);
    font-size: 14px;
}

.ranking-info i {
    color: var(--color-lime);
    margin-right: 5px;
}

/* ============================================ */
/* CALENDAR */
/* ============================================ */

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.calendar-card {
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.calendar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(180, 240, 0, 0.2);
}

.special-card {
    border: 2px solid var(--color-lime);
}

.calendar-header {
    background: var(--color-gray);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--color-gray-light);
}

.calendar-header i {
    font-size: 28px;
    color: var(--color-lime);
}

.calendar-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
}

.calendar-body {
    padding: 25px;
}

.calendar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    background: var(--color-gray);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
}

.calendar-item:last-child {
    margin-bottom: 0;
}

.calendar-item:hover {
    border-color: var(--color-lime);
    transform: translateX(5px);
}

.calendar-round {
    font-weight: 600;
    color: var(--color-white);
    flex: 1;
}

.calendar-date {
    color: var(--color-gray-lighter);
    font-size: 14px;
    flex: 1;
    text-align: center;
}

.calendar-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.calendar-status.completed {
    background: rgba(100, 255, 100, 0.2);
    color: #64FF64;
    border: 1px solid #64FF64;
}

.calendar-status.active {
    background: rgba(180, 240, 0, 0.2);
    color: var(--color-lime);
    border: 1px solid var(--color-lime);
}

.calendar-status.upcoming {
    background: rgba(100, 100, 255, 0.2);
    color: #6464FF;
    border: 1px solid #6464FF;
}

.calendar-legend {
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 25px;
}

.calendar-legend h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.legend-items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-white);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.completed {
    background: rgba(100, 255, 100, 0.5);
    border: 2px solid #64FF64;
}

.legend-color.active {
    background: rgba(180, 240, 0, 0.5);
    border: 2px solid var(--color-lime);
}

.legend-color.upcoming {
    background: rgba(100, 100, 255, 0.5);
    border: 2px solid #6464FF;
}

/* ============================================ */
/* RULES */
/* ============================================ */

.rules-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.rule-section {
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    overflow: hidden;
}

.rule-header {
    background: var(--color-gray);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--color-lime);
    flex-wrap: wrap;
    gap: 15px;
}

.rule-header i {
    font-size: 28px;
    color: var(--color-lime);
    margin-right: 15px;
}

.rule-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    flex: 1;
}

.rule-content {
    padding: 35px;
}

.rule-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-lime);
}

.rule-content h3:first-child {
    margin-top: 0;
}

.rule-content p {
    margin-bottom: 15px;
    color: var(--color-white);
    line-height: 1.8;
}

.rule-content ul,
.rule-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.rule-content li {
    margin-bottom: 10px;
    color: var(--color-white);
    line-height: 1.8;
}

.rule-content ul li {
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.rule-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-lime);
    font-weight: bold;
}

.rule-content strong {
    color: var(--color-lime);
}

/* ============================================ */
/* QUICK ACCESS */
/* ============================================ */

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.access-card {
    background: linear-gradient(135deg, var(--color-gray-dark), var(--color-gray));
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-lime-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.access-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-lime);
    box-shadow: 0 10px 40px rgba(180, 240, 0, 0.3);
}

.access-card:hover::before {
    opacity: 1;
}

.whatsapp-card {
    border: 2px solid #25D366;
}

.whatsapp-card .access-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
}

.whatsapp-card .access-icon i {
    color: #25D366;
}

.access-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(180, 240, 0, 0.2), rgba(180, 240, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid rgba(180, 240, 0, 0.3);
}

.access-icon i {
    font-size: 36px;
    color: var(--color-lime);
}

.access-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-white);
}

.access-card p {
    font-size: 14px;
    color: var(--color-gray-lighter);
    margin-bottom: 20px;
    line-height: 1.6;
}

.access-arrow {
    color: var(--color-lime);
    font-size: 20px;
    margin-top: auto;
}

.contact-info-card {
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 35px;
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-card h3 i {
    color: var(--color-lime);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 24px;
    color: var(--color-lime);
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--color-lime);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 15px;
    color: var(--color-white);
}

/* ============================================ */
/* BENEFITS MEMBER */
/* ============================================ */

.benefits-member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-member-card {
    background: linear-gradient(135deg, var(--color-gray-dark), var(--color-gray));
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-member-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-lime);
    box-shadow: 0 10px 40px rgba(180, 240, 0, 0.3);
}

.benefit-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(180, 240, 0, 0.2), rgba(180, 240, 0, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(180, 240, 0, 0.3);
}

.benefit-logo i {
    font-size: 40px;
    color: var(--color-lime);
}

.benefit-member-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
}

.benefit-discount {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-lime);
    font-family: var(--font-primary);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(180, 240, 0, 0.5);
}

.benefit-description {
    font-size: 15px;
    color: var(--color-gray-lighter);
    margin-bottom: 25px;
    line-height: 1.6;
}

.benefit-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-black);
    border: 1px dashed var(--color-lime);
    border-radius: 8px;
    padding: 12px 15px;
    gap: 10px;
}

.benefit-coupon span {
    font-size: 13px;
    color: var(--color-gray-lighter);
}

.benefit-coupon strong {
    color: var(--color-lime);
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.btn-copy {
    background: var(--color-lime);
    border: none;
    color: var(--color-black);
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-copy:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(180, 240, 0, 0.5);
}

.benefit-rules-card {
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 35px;
}

.benefit-rules-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-rules-card h3 i {
    color: var(--color-lime);
}

.benefit-rules-card ul {
    list-style: none;
    padding: 0;
}

.benefit-rules-card li {
    padding: 12px 0;
    color: var(--color-white);
    font-size: 15px;
    line-height: 1.8;
    border-bottom: 1px solid var(--color-gray-light);
}

.benefit-rules-card li:last-child {
    border-bottom: none;
}

/* ============================================ */
/* ADMIN PANEL */
/* ============================================ */

.admin-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background: linear-gradient(135deg, var(--color-gray-dark), var(--color-gray));
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-stat-card i {
    font-size: 40px;
    color: var(--color-lime);
}

.admin-stat-card h3 {
    font-size: 14px;
    color: var(--color-gray-lighter);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-white);
    font-family: var(--font-primary);
}

.admin-table-container {
    overflow-x: auto;
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--color-black);
}

.admin-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 700;
    color: var(--color-lime);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--color-lime);
}

.admin-table tbody tr {
    border-bottom: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
}

.admin-table tbody tr:hover {
    background: var(--color-gray);
}

.admin-table td {
    padding: 18px 15px;
    color: var(--color-white);
    font-size: 14px;
}

.admin-table .action-buttons {
    display: flex;
    gap: 10px;
}

.admin-table .btn-edit,
.admin-table .btn-delete {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-table .btn-edit {
    background: #0096FF;
    color: white;
}

.admin-table .btn-edit:hover {
    background: #0077CC;
}

.admin-table .btn-delete {
    background: #FF3232;
    color: white;
}

.admin-table .btn-delete:hover {
    background: #CC0000;
}

.info-message {
    text-align: center;
    padding: 40px;
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    color: var(--color-gray-lighter);
    font-size: 16px;
}

.info-message i {
    color: var(--color-lime);
    margin-right: 10px;
    font-size: 20px;
}

/* ============================================ */
/* RANKING PÚBLICO */
/* ============================================ */

.ranking-public-section {
    padding: 100px 0;
    background: var(--color-gray-dark);
}

/* ============================================ */
/* DESCONTOS PARCEIROS */
/* ============================================ */

.discounts-section {
    margin-top: 60px;
    padding: 40px;
    background: var(--color-gray);
    border-radius: 16px;
    border: 1px solid var(--color-gray-light);
}

.discounts-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-lime);
    margin-bottom: 40px;
    font-family: var(--font-primary);
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.discount-card {
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.discount-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-lime);
    box-shadow: 0 10px 30px rgba(180, 240, 0, 0.2);
}

.discount-card i {
    font-size: 40px;
    color: var(--color-lime);
    margin-bottom: 15px;
}

.discount-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.discount-card p {
    font-size: 14px;
    color: var(--color-gray-lighter);
    line-height: 1.6;
}

/* ============================================ */
/* REGUL AMENTOS PÚBLICO */
/* ============================================ */

.rules-public-section {
    padding: 100px 0;
    background: var(--color-black);
}

/* ============================================ */
/* CONTATO */
/* ============================================ */

.contact-section {
    padding: 100px 0;
    background: var(--color-gray-dark);
}

.contact-card {
    background: var(--color-gray);
    border: 2px solid var(--color-lime);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(180, 240, 0, 0.3);
}

.contact-icon {
    font-size: 80px;
    color: var(--color-lime);
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

.contact-card h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.contact-card p {
    font-size: 18px;
    color: var(--color-gray-lighter);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info {
    margin-top: 30px;
    font-size: 16px;
    color: var(--color-white);
    line-height: 2;
}

.contact-info i {
    color: var(--color-lime);
    margin-right: 10px;
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(180, 240, 0, 0.5), 0 0 60px rgba(180, 240, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(180, 240, 0, 0.7), 0 0 80px rgba(180, 240, 0, 0.5);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(180, 240, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(180, 240, 0, 0.6), 0 0 40px rgba(180, 240, 0, 0.3);
    }
}

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

/* ============================================ */
/* BADGES COLORIDOS */
/* ============================================ */

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-blue {
    background: rgba(0, 150, 255, 0.2);
    color: #0096FF;
    border: 1px solid rgba(0, 150, 255, 0.4);
}

.badge-pink {
    background: rgba(255, 0, 150, 0.2);
    color: #FF0096;
    border: 1px solid rgba(255, 0, 150, 0.4);
}

.badge-lime {
    background: rgba(180, 240, 0, 0.2);
    color: var(--color-lime);
    border: 1px solid rgba(180, 240, 0, 0.4);
}

.badge-purple {
    background: rgba(150, 0, 255, 0.2);
    color: #9600FF;
    border: 1px solid rgba(150, 0, 255, 0.4);
}

.badge-green {
    background: rgba(100, 255, 100, 0.2);
    color: #64FF64;
    border: 1px solid rgba(100, 255, 100, 0.4);
}

.badge-yellow {
    background: rgba(255, 200, 0, 0.2);
    color: #FFC800;
    border: 1px solid rgba(255, 200, 0, 0.4);
}

.badge-red {
    background: rgba(255, 50, 50, 0.2);
    color: #FF3232;
    border: 1px solid rgba(255, 50, 50, 0.4);
}

.badge-gray {
    background: rgba(102, 102, 102, 0.2);
    color: var(--color-gray-lighter);
    border: 1px solid rgba(102, 102, 102, 0.4);
}

.badge-lime-soft {
    background: rgba(180, 240, 0, 0.15);
    color: var(--color-lime);
    border: 1px solid rgba(180, 240, 0, 0.3);
}

/* Tabela de Ranking */
.table-container {
    overflow-x: auto;
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 20px;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.ranking-table thead {
    background: var(--color-black);
}

.ranking-table thead tr {
    border-bottom: 2px solid var(--color-lime);
}

.ranking-table th {
    padding: 18px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-lime);
}

.ranking-table tbody tr {
    border-bottom: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
}

.ranking-table tbody tr:hover {
    background: rgba(180, 240, 0, 0.05);
}

.ranking-table tbody tr:last-child {
    border-bottom: none;
}

.ranking-table td {
    padding: 16px;
    font-size: 14px;
    color: var(--color-white);
    vertical-align: middle;
}

.ranking-table td:first-child {
    font-weight: 700;
    color: var(--color-lime);
    font-size: 16px;
}

.loading-row td {
    text-align: center;
    padding: 60px 20px !important;
    color: var(--color-gray-lighter);
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
    /* Menu Mobile */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 20px;
        display: none;
        border-top: 1px solid var(--color-lime);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
    
    .nav-logo-img {
        height: 30px;
    }
    
    .nav-logo-text {
        font-size: 14px;
    }
    
    /* Logos Responsivos */
    .main-logo {
        width: 120px;
    }
    
    .login-logo {
        width: 100px;
    }
    
    .topbar-logo {
        height: 30px;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .price-highlight {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .quick-access-grid,
    .benefits-member-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-tab span {
        display: none;
    }
    
    .nav-tab {
        padding: 14px 18px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .dashboard-grid,
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sections {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: flex-start;
    }
    
    .ranking-table-container,
    .admin-table-container {
        overflow-x: scroll;
    }
    
    .ranking-table,
    .admin-table {
        min-width: 800px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .modal-content {
        margin: 10% 20px;
    }
    
    .login-container {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    /* Logos Mobile */
    .main-logo {
        width: 100px;
    }
    
    .login-logo {
        width: 80px;
    }
    
    .topbar-logo {
        height: 25px;
    }
    
    .footer-logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .page-title {
        font-size: 26px;
    }
    
    .member-nav {
        top: 60px;
    }
}

/* ============================================ */
/* UTILITIES */
/* ============================================ */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.page-container {
    min-height: 100vh;
}

/* Fix para scroll suave */
html {
    scroll-behavior: smooth;
}

/* Fix para inputs em iOS */
input,
textarea,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}