/*
Theme Name: BJ88NOW
Theme URI: https://bj88now.org
Author: BJ88NOW Team
Author URI: https://bj88now.org
Description: BJ88NOW - Tema profissional de navegação de slots e cassinos online, design 3D moderno e responsivo para o mercado brasileiro.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bj88now
Tags: casino, slots, gambling, navigation, responsive, modern, brazilian, portuguese
*/

/* ========================================
   CSS Variables
======================================== */
:root {
    --primary: #f59e0b;
    --primary-hover: #d97706;
    --primary-foreground: #ffffff;
    --background: #0f172a;
    --background-secondary: #1e293b;
    --foreground: #f8fafc;
    --muted: #94a3b8;
    --muted-foreground: #64748b;
    --card: #1e293b;
    --card-hover: #334155;
    --border: #334155;
    --gold: #ffd700;
    --gold-dark: #b8860b;
    --blue: #3b82f6;
    --green: #22c55e;
    --red: #ef4444;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Reset & Base Styles
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* ========================================
   Layout
======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

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

/* ========================================
   Header Styles
======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.site-logo img {
    height: 45px;
    width: auto;
}

.site-logo:hover {
    opacity: 0.9;
}

/* Main Navigation */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s;
    border-radius: var(--radius);
}

.nav-link:hover {
    color: var(--foreground);
    background: var(--background-secondary);
}

.nav-link.active {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--muted);
    transition: all 0.2s;
}

.dropdown-item:hover {
    color: var(--foreground);
    background: var(--background-secondary);
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    color: var(--primary-foreground);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-menu-toggle:hover {
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 1rem;
}

.mobile-nav.active {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--muted);
    border-radius: var(--radius);
}

.mobile-nav-item:hover {
    color: var(--foreground);
    background: var(--background-secondary);
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-secondary) 50%, var(--background) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--foreground) 0%, var(--muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-description {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
}

/* ========================================
   Casino Cards Section
======================================== */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Casino Card */
.casino-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

.casino-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

.casino-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.casino-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--background-secondary);
}

.casino-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star {
    color: var(--gold);
    font-size: 0.875rem;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--muted);
    margin-left: 0.25rem;
}

.casino-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    background: rgba(34, 197, 94, 0.2);
    color: var(--green);
}

.casino-badge.hot {
    background: rgba(239, 68, 68, 0.2);
    color: var(--red);
}

.casino-bonus {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.bonus-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.bonus-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    background: var(--background-secondary);
    color: var(--muted);
    border-radius: 50px;
}

.casino-card-footer {
    display: flex;
    gap: 0.75rem;
}

.casino-card-footer .btn {
    flex: 1;
    padding: 0.75rem;
}

/* ========================================
   Features Section
======================================== */
.features-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted);
}

/* ========================================
   Footer
======================================== */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

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

.footer-disclaimer {
    background: var(--background-secondary);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.7;
}

.footer-disclaimer strong {
    color: var(--foreground);
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: var(--muted);
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.age-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    background: var(--background-secondary);
    color: var(--muted);
    border-radius: 50px;
    font-weight: 600;
}

/* ========================================
   Trust Badges
======================================== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* ========================================
   WordPress Specific
======================================== */
.wp-block-image img {
    border-radius: var(--radius);
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.entry-content p {
    margin-bottom: 1.5rem;
    color: var(--muted);
}

.entry-content h2,
.entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--muted);
    transition: all 0.2s;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

/* Sidebar */
.sidebar {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.widget {
    margin-bottom: 2rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

/* ========================================
   Animations
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

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

/* ========================================
   Utility Classes
======================================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.hidden { display: none; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.grid { display: grid; }

/* ========================================
   Live Ticker
======================================== */
.live-ticker {
    background: linear-gradient(90deg, var(--primary) 0%, #6366f1 100%);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    background: rgba(0,0,0,0.2);
    height: 100%;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
}

.ticker-name {
    font-weight: 600;
}

.ticker-bonus {
    padding: 0.15rem 0.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 0.75rem;
}

.ticker-rating {
    color: #fbbf24;
    font-size: 0.8rem;
}

/* ========================================
   Daily Updates Section
======================================== */
.daily-updates-section {
    background: linear-gradient(180deg, var(--background) 0%, var(--background-secondary) 100%);
}

.section-header-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title .pulse-dot {
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.live-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-family: monospace;
    color: var(--primary);
}

.daily-updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.daily-update-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    position: relative;
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease forwards;
    opacity: 0;
}

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

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

.update-time-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
}

.update-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.update-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.update-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.update-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--foreground);
}

.update-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
}

.update-rating .stars {
    color: #fbbf24;
}

.update-bonus {
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.update-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    flex: 1;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

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

.btn-small.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-small.btn-primary {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.btn-small.btn-primary:hover {
    background: var(--primary-hover);
}

.updates-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.updates-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
}

/* ========================================
   Payment Methods Section
======================================== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.payment-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

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

.payment-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, var(--card) 100%);
}

.payment-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 0.2rem 0.5rem;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.payment-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-secondary);
    border-radius: 12px;
    color: var(--primary);
}

.pix-icon {
    background: linear-gradient(135deg, #32bcad 0%, #00bdae 100%);
    color: white;
}

.payment-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.payment-card p {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0;
}

/* ========================================
   Trust Section
======================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.trust-card:hover {
    border-color: var(--primary);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-radius: 16px;
    color: var(--primary);
}

.trust-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.license-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.license-badge {
    padding: 0.5rem 1rem;
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
}

/* ========================================
   Reviews Section
======================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all 0.3s;
}

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

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.review-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-meta h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.review-meta h4 a {
    color: var(--foreground);
    text-decoration: none;
}

.review-meta h4 a:hover {
    color: var(--primary);
}

.review-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.review-score {
    text-align: right;
}

.score-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.score-max {
    font-size: 0.875rem;
    color: var(--muted);
}

.review-excerpt {
    margin-bottom: 1rem;
}

.review-excerpt p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.review-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
}

.review-link:hover {
    text-decoration: underline;
}

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

/* ========================================
   FAQ Section
======================================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--foreground);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    flex: 1;
    padding-right: 1rem;
}

.faq-item summary svg {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.3s;
}

.faq-item[open] summary svg {
    transform: rotate(180deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--border);
}

.faq-item p {
    padding: 1rem 1.25rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ========================================
   Counter Animation
======================================== */
.stat-number[data-count] {
    font-variant-numeric: tabular-nums;
}

/* ========================================
   Responsive Adjustments
======================================== */
@media (max-width: 768px) {
    .live-ticker {
        height: 36px;
    }
    
    .ticker-label {
        padding: 0 0.75rem;
        font-size: 0.65rem;
    }
    
    .ticker-item {
        font-size: 0.8rem;
    }
    
    .section-header-flex {
        flex-direction: column;
        align-items: stretch;
    }
    
    .live-time {
        align-self: flex-start;
    }
    
    .daily-updates-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .updates-footer {
        flex-direction: column;
        text-align: center;
    }
}

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

/* ========================================
   Intro Section - Who We Are
======================================== */
.intro-section {
    background: linear-gradient(135deg, var(--background) 0%, var(--background-secondary) 100%);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

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

.intro-text strong {
    color: var(--foreground);
}

.intro-stats-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.intro-stats-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.intro-stats-box ul {
    list-style: none;
}

.intro-stats-box li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.95rem;
}

.intro-stats-box li:last-child {
    border-bottom: none;
}

.intro-stats-box li strong {
    color: var(--foreground);
    font-size: 1.1rem;
}

/* ========================================
   Methodology Section
======================================== */
.methodology-section {
    background: var(--background);
}

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

.method-step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.method-step:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.method-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    color: var(--foreground);
}

.method-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
}

/* ========================================
   Guide Section
======================================== */
.guide-section {
    background: linear-gradient(180deg, var(--background-secondary) 0%, var(--background) 100%);
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.guide-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-article {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.guide-article h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.guide-article p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1rem;
}

.guide-article p:last-child {
    margin-bottom: 0;
}

.guide-article strong {
    color: var(--foreground);
}

.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.warning-box, .tip-box, .help-box {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.warning-box {
    border: 1px solid var(--red);
    border-left: 4px solid var(--red);
}

.warning-box h4 {
    color: var(--red);
    margin-bottom: 1rem;
}

.warning-box ul {
    list-style: none;
    color: var(--muted);
}

.warning-box li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.warning-box li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--red);
}

.tip-box {
    border: 1px solid var(--primary);
    border-left: 4px solid var(--primary);
}

.tip-box h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.tip-box p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.help-box {
    border: 1px solid var(--green);
    border-left: 4px solid var(--green);
    text-align: center;
}

.help-box h4 {
    color: var(--green);
    margin-bottom: 0.75rem;
}

.help-box p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.help-box strong {
    color: var(--foreground);
    font-size: 1.5rem;
    display: block;
    margin: 0.5rem 0;
}

.help-box a {
    color: var(--primary);
    text-decoration: none;
}

.help-box a:hover {
    text-decoration: underline;
}

/* ========================================
   Responsive - New Sections
======================================== */
@media (max-width: 992px) {
    .intro-content,
    .guide-content {
        grid-template-columns: 1fr;
    }
    
    .intro-stats-box,
    .guide-sidebar {
        position: static;
    }
    
    .guide-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .guide-sidebar > * {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .intro-text h2 {
        font-size: 1.5rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-sidebar {
        flex-direction: column;
    }
    
    .guide-sidebar > * {
        min-width: 100%;
    }
}

/* ========================================
   Enhanced FAQ Grid
======================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

/* ========================================
   Article Component - Content Blocks
======================================== */
.article-component {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.article-component::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--gold) 100%);
}

.article-component__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.article-component__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.article-component__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.article-component__subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

.article-component__content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--muted);
}

.article-component__content p {
    margin-bottom: 1.25rem;
}

.article-component__content p:last-child {
    margin-bottom: 0;
}

.article-component__content strong {
    color: var(--foreground);
}

.article-component__content em {
    color: var(--primary);
    font-style: normal;
    font-weight: 500;
}

.article-component__content ul,
.article-component__content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-component__content li {
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.article-component__content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
    transition: all 0.2s ease;
}

.article-component__content a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Article Component - Highlight Box */
.article-component__highlight {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.article-component__highlight h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-component__highlight p {
    margin: 0;
    font-size: 0.95rem;
}

/* Article Component - Quote */
.article-component__quote {
    background: var(--background);
    border-left: 3px solid var(--primary);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--foreground);
}

.article-component__quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--muted);
    font-style: normal;
}

/* Article Component - Stats Grid */
.article-component__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.article-component__stat {
    text-align: center;
    padding: 1rem;
    background: var(--background);
    border-radius: 8px;
}

.article-component__stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.article-component__stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* Article Component Footer */
.article-component__footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-component__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.article-component__meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Responsive */
@media (max-width: 768px) {
    .article-component {
        padding: 1.5rem;
    }
    
    .article-component__title {
        font-size: 1.25rem;
    }
    
    .article-component__content {
        font-size: 1rem;
    }
    
    .article-component__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Article Component - Headings */
.article-component__content h3 {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.article-component__content h3:first-of-type {
    margin-top: 1.5rem;
}
