@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #00D2FF;
    --primary-glow: rgba(0, 210, 255, 0.5);
    --secondary: #FF6B00;
    --secondary-glow: rgba(255, 107, 0, 0.5);
    --tertiary: #FFD700;
    --tertiary-glow: rgba(255, 215, 0, 0.5);
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.7);
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gold: #FFD700;
    --gold-glow: rgba(255, 215, 0, 0.4);
    --dash-bg: var(--bg-dark);
    --dash-sidebar: #0a0a0a;
    --dash-card: rgba(20, 20, 20, 0.8);
    --dash-accent: var(--primary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Animation */
#app-content {
    transition: opacity 0.4s ease-in-out;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, var(--primary-glow) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, var(--secondary-glow) 0%, transparent 40%);
    filter: blur(80px);
    opacity: 0.4;
}

/* Navbar Floating */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2%;
    position: fixed;
    top: 20px;
    left: 2%;
    right: 2%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), 
                inset 0 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    opacity: 0.6;
    filter: blur(0.5px);
}

.logo img {
    height: 80px;
    transition: 0.4s;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.8));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: 0.4s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    position: relative;
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.4s;
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3), inset 0 0 10px rgba(0, 210, 255, 0.1);
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    text-shadow: 0 0 5px rgba(0, 210, 255, 0.5);
    opacity: 1 !important;
    transition: 0.4s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-nav:hover {
    background: rgba(0, 210, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.6), inset 0 0 15px rgba(0, 210, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--primary) !important;
}

.btn-nav svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.8));
}

.btn-nav::after {
    display: none; /* No underline for button */
}

/* Mobile Menu Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 2000;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--secondary);
}

/* Fix body scrolling when menu is open */
body.no-scroll {
    overflow: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('fundoprimeirasessao.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-logo {
    max-width: 450px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 25px #000); /* Glow Preto solicitado */
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 5px;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.typing-container {
    height: 40px;
    margin-bottom: 2rem;
}

/* Hero Buttons Spacing and Colors */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-eventos {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-baixar {
    background: #007bff; /* Azul solicitado */
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
    border-color: #007bff !important;
}

.btn-baixar:hover {
    background: #0056b3;
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.8);
}

#typing-text {
    font-size: 1.8rem;
    color: var(--text-main);
    font-weight: 400;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.cursor {
    font-size: 1.8rem;
    color: var(--secondary);
    animation: blink 0.7s infinite;
    margin-left: 5px;
    font-weight: 800;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.btn {
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 20px var(--secondary-glow);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--secondary-glow);
}

/* Sections */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    transition: 0.4s;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.card-img-small {
    max-width: 180px !important;
    margin: 0 auto 1.5rem auto;
    display: block;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, transparent, #080808, transparent);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.about-img {
    width: 100%;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: 0.5s;
    filter: drop-shadow(0 0 15px rgba(157, 0, 255, 0.2));
}

.about-image:hover .about-img {
    transform: scale(1.02);
    border-color: var(--primary);
    filter: drop-shadow(0 0 25px var(--primary-glow));
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(45deg, var(--secondary), #00c2cc);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--secondary-glow);
    animation: floating 3s ease-in-out infinite;
}

.experience-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #000;
}

.experience-badge p {
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
}

.about-features li {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Detailed Pack Cards (Home) */
.pack-card-detailed {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.5rem !important;
}

.pack-card-detailed .card-img-small {
    max-width: 220px !important;
}

.pack-content-list {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.pack-content-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pack-content-list li::before {
    content: '⚡';
    color: var(--secondary);
    font-size: 0.8rem;
}

.pack-actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
}

.btn-buy-pix {
    background: linear-gradient(45deg, #2ecc71, #27ae60) !important;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

.btn-buy-pix:hover {
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.btn-buy-kiwify {
    background: linear-gradient(45deg, #2563eb, #1d4ed8) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-buy-worldwide {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-buy-worldwide:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: white !important;
}

.discount-tag {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 700;
    margin-top: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-launch {
    background: linear-gradient(45deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    box-shadow: 0 0 15px var(--primary-glow) !important;
    animation: pulse-brand 2s infinite !important;
    border: none !important;
}

@keyframes pulse-brand {
    0% { transform: scale(1); box-shadow: 0 0 0 0 var(--primary-glow); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(157, 0, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(157, 0, 255, 0); }
}

.btn-youtube-small {
    background: #ff0000 !important;
    font-size: 0.75rem !important;
    padding: 0.5rem 1rem !important;
}

.testimonials-section {
    padding: 100px 5%;
    background: linear-gradient(to top, #0a0a0a, transparent);
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding-bottom: 20px;
    cursor: grab;
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonials-slider:active {
    cursor: grabbing;
}

.testimonial-card {
    min-width: 350px;
    scroll-snap-align: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 30px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--secondary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 20px var(--secondary-glow);
    border-color: transparent;
}

.slider-arrow.prev {
    left: -25px;
}

.slider-arrow.next {
    right: -25px;
}

/* Responsive arrows */
@media (max-width: 768px) {
    .slider-arrow {
        display: none; /* Hide arrows on mobile, swipe is enough */
    }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    border: 2px solid var(--glass-border);
}

.user-info h4 {
    color: #fff;
    margin-bottom: 5px;
}

.stars {
    color: var(--secondary);
    font-size: 0.9rem;
    text-shadow: 0 0 10px var(--secondary-glow);
}

.testimonial-content p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(157, 0, 255, 0.1);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
}

/* Curso LowProd+ Section */
.course-info-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #0a0a0a, transparent);
}

.course-info-header {
    text-align: center;
    margin-bottom: 50px;
}

.course-info-header h2 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.course-info-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 0 0 15px var(--primary-glow);
}

.stat-card p {
    color: var(--text-main);
    font-weight: 600;
}

.stat-card span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.showcase-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
}

.showcase-box h4 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.genre-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.genre-list li {
    background: rgba(0, 242, 255, 0.05);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    font-weight: 600;
    text-align: center;
    color: var(--secondary);
}

.checklist-box {
    list-style: none;
}

.checklist-box li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-footer {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: rgba(157, 0, 255, 0.05);
    border-radius: 30px;
    border: 1px dashed var(--primary);
}

.btn-checkout {
    font-size: 1.5rem !important;
    padding: 1.2rem 3rem !important;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary), #7a00cc) !important;
}

.trust-badge {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Responsividade Curso LowProd+ */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .course-info-header h2 {
        font-size: 2.2rem;
    }
    .stat-card {
        padding: 30px 20px;
    }
    .genre-list {
        grid-template-columns: 1fr;
    }
    .btn-checkout {
        font-size: 1.2rem !important;
        padding: 1rem 2rem !important;
    }
    .trust-badge {
        flex-direction: column;
        gap: 5px;
    }
    .trust-badge span:nth-child(2) {
        display: none;
    }
}

/* Course Hero Logo Style */
.hero-logo-container {
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.course-main-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.4));
}

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

/* MLL Dark Table Styles - Refined Neon */
.mll-dark-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: 'Inter', sans-serif;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    color: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(157, 0, 255, 0.1);
    position: relative;
}

.mll-dark-table::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.mll-dark-table th {
    background: linear-gradient(90deg, var(--primary), #8a00ff);
    color: white;
    padding: 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    border: none;
}

.mll-dark-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.mll-dark-table tr:last-child td {
    border-bottom: none;
}

.mll-dark-table tr:hover:not(.destaque) {
    background-color: rgba(255, 255, 255, 0.05);
}

.mll-dark-table tr.destaque {
    background: linear-gradient(90deg, var(--secondary), #00c2cc);
    color: #000;
    font-weight: 900;
    font-size: 1.15em;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.mll-dark-table .icon-cell {
    width: 50px;
    color: var(--secondary);
    font-size: 1.3rem;
    text-align: center;
    filter: drop-shadow(0 0 8px var(--secondary-glow));
}

.mll-dark-table tr.destaque .icon-cell {
    color: #000;
    filter: none;
}

/* Video Responsive Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 30px var(--secondary-glow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.packs-hero {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('sample_pack_preview_1773026026550.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Pack Cover Style */
.pack-cover-container {
    margin: 20px 0;
    perspective: 1000px;
}

.pack-cover-img {
    max-width: 150px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.5s;
    animation: floating 3s ease-in-out infinite;
}

.pack-cover-img:hover {
    transform: rotateY(10deg) scale(1.05);
    box-shadow: 0 0 50px rgba(157, 0, 255, 0.6);
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Contacts Page Styles */
.contacts-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('dj_hero_background_1773025990690.png') !important;
    background-size: cover !important;
}

.social-connect {
    padding: 60px 5%;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    margin-bottom: 10px;
    transition: 0.4s;
}

.card-icon svg {
    width: 35px;
    height: 35px;
}

.custom-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.contact-card span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Brand Specific Neon Colors */
.contact-card.instagram:hover { border-color: #E1306C; box-shadow: 0 0 30px rgba(225, 48, 108, 0.4); }
.contact-card.instagram:hover .card-icon { color: #E1306C; background: rgba(225, 48, 108, 0.1); }

.contact-card.youtube:hover { border-color: #FF0000; box-shadow: 0 0 30px rgba(255, 0, 0, 0.4); }
.contact-card.youtube:hover .card-icon { color: #FF0000; background: rgba(255, 0, 0, 0.1); }

.contact-card.spotify:hover { border-color: #1DB954; box-shadow: 0 0 30px rgba(29, 185, 84, 0.4); }
.contact-card.spotify:hover .card-icon { color: #1DB954; background: rgba(29, 185, 84, 0.1); }

.contact-card.soundcloud:hover { border-color: #FF3300; box-shadow: 0 0 30px rgba(255, 51, 0, 0.4); }
.contact-card.soundcloud:hover .card-icon { color: #FF3300; background: rgba(255, 51, 0, 0.1); }

.contact-card.whatsapp:hover { border-color: #25D366; box-shadow: 0 0 30px rgba(37, 211, 102, 0.4); }
.contact-card.whatsapp:hover .card-icon { color: #25D366; background: rgba(37, 211, 102, 0.1); }

.contact-card.lowfreq:hover { border-color: var(--secondary); box-shadow: 0 0 30px var(--secondary-glow); }
.contact-card.lowfreq:hover .card-icon { background: rgba(0, 242, 255, 0.1); }

.nav-links li {
    position: relative;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1001;
    list-style: none;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
    padding: 0 !important;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: 0.3s;
    text-align: center;
}

.dropdown-menu li a:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.05);
}

/* Responsividade Geral */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    outline: none;
    transition: 0.3s;
}

input:focus, textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    padding: 3rem 5%;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
    background: rgba(0,0,0,0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    width: 100%;
}

.footer-content a {
    color: #FF5F1F; /* Laranja Florecente */
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    text-shadow: 0 0 5px rgba(255, 95, 31, 0.3);
}

.footer-content a:hover {
    color: #FFAC1C;
    text-shadow: 0 0 15px rgba(255, 95, 31, 0.8);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Web Radio Player */
.radio-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 270px;
}

.radio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.radio-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 35px;
    margin-right: 15px; /* Added spacing from buttons */
}

.bar {
    width: 4px;
    height: 10px;
    background: var(--secondary); /* Laranja */
    border-radius: 2px;
    animation: bounce 1s ease-in-out infinite;
    opacity: 0.8;
}

.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(6) { animation-delay: 0.5s; }

@keyframes bounce {
    0%, 100% { height: 8px; }
    50% { height: 35px; }
}

.radio-info {
    width: 100%;
    text-align: center; /* Center song title */
}

.radio-info p {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the "No Ar" text with REC dot */
    gap: 8px;
}

.rec-dot {
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: blink-rec 1s step-start infinite;
}

@keyframes blink-rec {
    50% { opacity: 0; }
}

.radio-info h4 {
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
}

.radio-info-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    max-width: 250px;
}

/* Efeito letreiro (marquee) via CSS com loop perfeito */
@keyframes scrollText {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.radio-info-container h4 {
    animation: scrollText 50s linear infinite; /* Bem mais devagar (50s) */
    padding-left: 100%; /* Comeca fora da tela, exatamente colado na borda direita do container */
}

.radio-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 5px;
}

.player-main-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.player-side-controls {
    display: flex;
    align-items: center;
    gap: 4px;
}

.player-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.4); /* Borda Laranja */
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 0.7rem;
}

.player-btn:hover {
    background: var(--primary); /* Azul Ciano no hover */
    border-color: transparent;
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.1);
}

.main-play {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    background: var(--secondary); /* Laranja Neon principal */
    border: 1px solid var(--secondary);
    box-shadow: 0 0 20px var(--secondary-glow);
}

.download-btn {
    font-size: 0.8rem;
    color: var(--secondary); /* Laranja */
    border-color: rgba(255, 107, 0, 0.4);
}

.download-btn:hover {
    background: var(--primary); /* Azul Ciano */
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px;
    border-radius: 10px;
}

.vol-btn {
    background: transparent;
    border: none;
    color: var(--secondary); /* Laranja */
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.vol-btn:hover {
    color: white;
    transform: scale(1.1);
}

#radioVolume {
    width: 100%;
    height: 3px;
    accent-color: var(--secondary);
    cursor: pointer;
    outline: none;
}

.radio-controls button {
    background: var(--primary);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(157, 0, 255, 0.3);
}

.radio-controls button:hover {
    transform: scale(1.1);
    background: var(--secondary);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.5);
}

.radio-player.playing {
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(157, 0, 255, 0.2);
}
/* Landing Page Specific Styles */
.course-hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('dj_hero_background_1773025990690.png');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
}

.badge {
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 0 15px var(--primary-glow);
}

.highlight-text {
    font-size: 2rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-cta-giant {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(45deg, var(--secondary), var(--tertiary));
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 15px;
    margin-top: 30px;
    transition: 0.4s;
    box-shadow: 0 10px 40px var(--secondary-glow);
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-cta-giant:hover {
    transform: scale(1.05) translateY(-5px);
    background: linear-gradient(45deg, var(--tertiary), var(--secondary));
    box-shadow: 0 15px 50px var(--tertiary-glow);
}

.course-details {
    padding: 80px 5%;
    background: #0a0a0a;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.floating-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

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

.focus-styles {
    padding: 80px 5%;
    background: #050505;
    text-align: center;
}

.styles-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.style-tag {
    padding: 15px 30px;
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    transition: 0.3s;
}

.style-tag:hover {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.cta-final {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #0a0a0a, #000);
}

.cta-box {
    background: rgba(157, 0, 255, 0.05);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(157, 0, 255, 0.2);
    text-align: center;
}

.check-list {
    margin: 30px 0;
    font-size: 1.1rem;
}

.check-list p {
    margin-bottom: 10px;
}

.trust-badge {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.disclaimer {
    font-size: 0.8rem;
    color: #ff4444;
    margin-top: 10px;
}

.pulse-shadow {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(157, 0, 255, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(157, 0, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(157, 0, 255, 0); }
}

/* Packs Free Styles */
.free-packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.free-pack-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.free-pack-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(157, 0, 255, 0.2);
}

.free-pack-card h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 0;
}

.free-pack-card .btn-download {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.free-pack-card .btn-download:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

.free-pack-card .btn-youtube {
    background: #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.free-pack-card .btn-youtube:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .content-grid { grid-template-columns: 1fr; }
    .about-container { grid-template-columns: 1fr; gap: 30px; }
    .about-text h2 { font-size: 2.2rem; text-align: center; }
    .about-text { text-align: center; }
    .about-features li { justify-content: center; }
    .course-hero h1, .hero h1 { font-size: 3rem; }
    .btn-cta-giant { padding: 1.2rem 2rem; font-size: 1.1rem; }
    
    /* Navigation Adjustments for Mobile */
    nav {
        padding: 1rem 5%;
        border-radius: 0 0 24px 24px;
        top: 0;
        left: 0;
        right: 0;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        transform: translateY(-20px);
        z-index: 1500;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .btn-nav {
        font-size: 1.1rem !important;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
        margin-top: 1rem;
        box-shadow: 0 0 30px rgba(157, 0, 255, 0.6);
    }
    
    .dropdown {
        text-align: center;
    }
    
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
        transform: none;
    }

    .radio-player {
        bottom: 20px;
        left: 5%;
        right: 5%;
        min-width: 0;
        width: 90%;
        padding: 10px 15px;
        border-radius: 15px;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
        background: rgba(10, 10, 10, 0.98);
        border: 1px solid rgba(157, 0, 255, 0.4);
        z-index: 1000;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .radio-header {
        width: auto;
    }
    
    .radio-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .radio-info h4 {
        font-size: 0.9rem;
    }

    .radio-info p {
        font-size: 0.55rem;
        margin-bottom: 2px;
    }

    .radio-visualizer {
        display: none; /* Hide visualizer on mobile to save space */
    }

    .radio-controls {
        margin-top: 0;
        flex-direction: row-reverse;
        gap: 10px;
    }
    
    .radio-controls button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .volume-container {
        display: none; /* Hide volume on mobile (users use hardware buttons) */
    }

    .whatsapp-float {
        display: none; /* Removido botão do WhatsApp na versão Mobile */
    }
}

/* Ranking Section */
.ranking-section {
    padding: 50px 1%;
    background: linear-gradient(to bottom, transparent, rgba(0, 210, 255, 0.05), transparent);
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
}

@media (max-width: 1200px) {
    .ranking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.ranking-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 15px;
    text-align: center;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.ranking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.ranking-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 210, 255, 0.2);
}

.ranking-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 2px solid var(--glass-border);
    transition: 0.5s;
}

.ranking-card:hover img {
    border-color: var(--primary);
    filter: brightness(1.1);
}

.ranking-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ranking-info {
    text-align: left;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.ranking-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.ranking-info p strong {
    color: var(--primary);
    font-weight: 600;
}

.ranking-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-ranking-full {
    background: linear-gradient(45deg, var(--primary), #007bff) !important;
    font-size: 0.85rem !important;
    padding: 0.8rem !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 15px var(--primary-glow) !important;
}

.btn-ranking-more {
    background: transparent !important;
    border: 1px solid var(--glass-border) !important;
    font-size: 0.85rem !important;
    padding: 0.8rem !important;
    border-radius: 15px !important;
}

.btn-ranking-more:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--text-main) !important;
}

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

/* Cookie Consent Modal */
.cookie-modal {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 400px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 25px;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 1px 1px rgba(255, 255, 255, 0.1);
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-modal.active {
    transform: translateY(0);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.cookie-modal h4 {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.cookie-modal p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.btn-cookie-accept {
    flex: 1;
    background: linear-gradient(45deg, var(--primary), #007bff) !important;
    color: #fff !important;
    padding: 12px !important;
    border-radius: 12px !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-cookie-decline {
    background: transparent !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-muted) !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    font-size: 0.85rem !important;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--text-main) !important;
    color: var(--text-main) !important;
}

@media (max-width: 480px) {
    .cookie-modal {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
}

/* DASHBOARD LAYOUT (Dukaan Style) - HIDE SITE ELEMENTS */
body.admin-view-body nav, 
body.admin-view-body .nav-links,
body.admin-view-body .whatsapp-float,
body.admin-view-body .mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    background: var(--dash-bg);
    color: #fff;
    /* Removido o margem negativa que quebrava o topo */
}

/* Sidebar */
.dash-sidebar {
    background: var(--dash-sidebar);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 100;
}

.sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
    width: 100%;
}

.sidebar-logo img {
    height: 70px;
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.3));
}

.sidebar-menu {
    list-style: none;
    flex-grow: 1;
}

.menu-item {
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
}

.menu-item:hover, .menu-item.active {
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary);
    box-shadow: inset 0 0 10px rgba(0, 210, 255, 0.1);
}

.sidebar-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

/* Main Content */
.dash-main {
    padding: 2rem 3rem;
    overflow-y: auto;
}

body.admin-view-body .dash-main {
    padding-top: 2rem; /* Começa do topo normalmente agora */
}

.dash-header-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dash-grid-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: var(--dash-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.stat-card h4 {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.stat-card .value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card .trend {
    font-size: 0.85rem;
    color: #22c55e;
}

/* Charts Placeholder */
.dash-charts-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.chart-card {
    background: var(--dash-card);
    padding: 2rem;
    border-radius: 12px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
}

.chart-card h3 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-mock {
    flex-grow: 1;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 20px;
}

.bar-mock {
    flex: 1;
    background: var(--dash-accent);
    border-radius: 4px 4px 0 0;
    transition: 0.3s;
}

/* Table */
.data-table-card {
    background: var(--dash-card);
    border-radius: 12px;
    padding: 2rem;
}

table.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

table.admin-table th {
    text-align: left;
    color: var(--primary);
    padding: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--glass-border);
}

table.admin-table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 0.95rem;
    color: var(--text-main);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-delivered { color: #22c55e; }
.status-delivered .status-dot { background: #22c55e; }
.status-pending { color: #eab308; }
.status-pending .status-dot { background: #eab308; }

/* ACCESS DENIED PAGE */
.access-denied-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem; /* Removido padding-top excessivo, flexbox cuida do centro */
}

.access-denied-card {
    background: rgba(10, 10, 15, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.1), inset 0 0 20px rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    width: 100%;
    max-width: 480px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.access-denied-card h2 {
    color: var(--primary); /* Azul como login.php */
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

.quick-login-form .form-group {
    margin-bottom: 1.5rem;
    text-align: center;
}

.quick-login-form label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.quick-login-form input {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    outline: none;
    transition: 0.3s;
    text-align: center; /* Centralizar texto dentro do input */
}

.quick-login-form input:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

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

.access-denied-actions .btn, .access-denied-actions .btn-nav {
    width: 100%;
    margin: 0;
    justify-content: center;
    text-align: center;
}

/* Radio Navigation Overlap - Estabilidade no Admin */
/* Manter o player original flutuante mesmo no admin */
body.admin-view-body .radio-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
    width: 270px;
    height: auto;
    border-radius: 20px;
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-areas: none !important;
    background: var(--bg-card);
    padding: 12px 18px;
    z-index: 9999;
}

body.admin-view-body .radio-info { 
    display: block !important;
    flex-direction: column !important;
}

body.admin-view-body .dash-sidebar {
    padding-top: 0;
}

@media (max-width: 1024px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    .dash-sidebar {
        display: none;
    }
    .dash-charts-row {
        grid-template-columns: 1fr;
    }
    body.admin-view-body .radio-player {
        left: 0;
        width: 100%;
    }
}
