/* 7Games Bet - Master CSS
   Style: Luxury Gold Casino (豪华金色赌场)
   Target Market: Brazil
   ========================================== */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    /* Primary Colors - Luxury Gold Theme */
    --primary: #D4AF37;
    --primary-dark: #B8960C;
    --primary-light: #F4D03F;

    /* Secondary Colors */
    --secondary: #1A1A2E;
    --secondary-dark: #0F0F1A;
    --secondary-light: #2D2D44;

    /* Accent Colors */
    --accent: #C9A227;
    --accent-light: #E6C84A;

    /* Background Colors */
    --bg-primary: #0D0D0D;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #262626;
    --bg-card: linear-gradient(145deg, #1A1A2E, #0F0F1A);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #888888;
    --text-gold: #D4AF37;

    /* Status Colors */
    --success: #27AE60;
    --success-light: #2ECC71;
    --warning: #F39C12;
    --danger: #E74C3C;
    --info: #3498DB;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A2E 0%, #0D0D0D 100%);
    --gradient-hero: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(13, 13, 13, 1) 100%);
    --gradient-cta: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.2);

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;

    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --fs-4xl: 2.5rem;
    --fs-5xl: 3rem;
    --fs-hero: 3.5rem;

    /* Spacing (8px grid) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;

    /* Container */
    --container-max: 1200px;
    --container-padding: var(--space-4);
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    background-image: var(--gradient-dark);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    background-color: var(--bg-tertiary);
}

/* Image loading placeholder */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity var(--transition-base);
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* Image error fallback */
img.error {
    position: relative;
    min-height: 200px;
}

img.error::after {
    content: 'Imagem não disponível';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: var(--fs-hero);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: var(--fs-4xl);
    color: var(--text-gold);
}

h3 {
    font-size: var(--fs-2xl);
}

h4 {
    font-size: var(--fs-xl);
}

h5 {
    font-size: var(--fs-lg);
}

h6 {
    font-size: var(--fs-base);
}

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

.lead {
    font-size: var(--fs-xl);
    color: var(--text-secondary);
}

.text-gold {
    color: var(--text-gold);
}

.text-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   LAYOUT
   ========================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-16) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-6);
}

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

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

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

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: var(--fs-xl);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-6);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition-fast);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--secondary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    color: var(--secondary-dark);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary-dark);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--fs-lg);
}

.btn-cta {
    background: var(--gradient-gold);
    color: var(--secondary-dark);
    padding: var(--space-4) var(--space-10);
    font-size: var(--fs-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
    animation: pulse-gold 2s infinite;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(212, 175, 55, 0.5);
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--primary);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.hero-title {
    font-size: var(--fs-hero);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: var(--fs-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.hero-stat-value {
    font-family: var(--font-primary);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

/* ==========================================
   CARDS
   ========================================== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: var(--space-6);
}

.card-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-3);
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

/* Feature Card */
.feature-card {
    padding: var(--space-8);
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: var(--fs-3xl);
}

/* Info Box */
.info-box {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--primary);
    padding: var(--space-6);
    margin: var(--space-6) 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.info-box-title {
    font-size: var(--fs-lg);
    color: var(--primary);
    margin-bottom: var(--space-2);
}

/* Warning Box */
.warning-box {
    background: rgba(243, 156, 18, 0.1);
    border-left: 4px solid var(--warning);
    padding: var(--space-6);
    margin: var(--space-6) 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.warning-box-title {
    font-size: var(--fs-lg);
    color: var(--warning);
    margin-bottom: var(--space-2);
}

/* ==========================================
   RATING & BADGES
   ========================================== */
.rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: var(--primary);
}

.rating-value {
    font-weight: 700;
    color: var(--text-primary);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.badge-gold {
    background: var(--gradient-gold);
    color: var(--secondary-dark);
}

.badge-success {
    background: rgba(39, 174, 96, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.badge-warning {
    background: rgba(243, 156, 18, 0.2);
    color: var(--warning);
    border: 1px solid var(--warning);
}

/* License Badge */
.license-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid var(--success);
    border-radius: var(--radius-md);
    color: var(--success);
    font-size: var(--fs-sm);
}

.license-badge svg {
    width: 16px;
    height: 16px;
}

/* ==========================================
   PROS & CONS
   ========================================== */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.pros-list,
.cons-list {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
}

.pros-list {
    background: rgba(39, 174, 96, 0.05);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.cons-list {
    background: rgba(231, 76, 60, 0.05);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.pros-title,
.cons-title {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fs-lg);
    margin-bottom: var(--space-4);
}

.pros-title {
    color: var(--success);
}

.cons-title {
    color: var(--danger);
}

.pros-list ul,
.cons-list ul {
    list-style: none;
}

.pros-list li,
.cons-list li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

/* ==========================================
   TABLES
   ========================================== */
.table-wrapper {
    overflow-x: auto;
    margin: var(--space-6) 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
}

th, td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

th {
    background: rgba(212, 175, 55, 0.1);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    font-size: var(--fs-sm);
}

tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* ==========================================
   ACCORDION / FAQ
   ========================================== */
.accordion {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-size: var(--fs-base);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.accordion-header:hover {
    background: rgba(212, 175, 55, 0.05);
    color: var(--primary);
}

.accordion-header.active {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform var(--transition-fast);
}

.accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-header.active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.accordion-body.active {
    max-height: 500px;
}

.accordion-content {
    padding: var(--space-6);
    color: var(--text-secondary);
    background: var(--bg-primary);
}

/* ==========================================
   STEPS / PROCESS
   ========================================== */
.steps {
    counter-reset: step;
}

.step {
    position: relative;
    padding-left: var(--space-16);
    padding-bottom: var(--space-8);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--secondary-dark);
    font-family: var(--font-primary);
    font-size: var(--fs-xl);
    font-weight: 700;
    border-radius: 50%;
}

.step::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 56px;
    width: 2px;
    height: calc(100% - 56px);
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.step:last-child::after {
    display: none;
}

.step-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-2);
}

.step-content {
    color: var(--text-secondary);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo img {
    height: 40px;
}

.footer-description {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-4);
}

.footer-title {
    font-size: var(--fs-lg);
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

/* Responsible Gaming */
.responsible-gaming {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid var(--warning);
    border-radius: var(--radius-md);
    margin-top: var(--space-8);
}

.responsible-gaming-icon {
    font-size: var(--fs-3xl);
}

.responsible-gaming-text {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--danger);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================
   PIX SPECIFIC STYLES
   ========================================== */
.pix-section {
    background: linear-gradient(135deg, rgba(0, 175, 155, 0.1), transparent);
    border: 1px solid rgba(0, 175, 155, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
}

.pix-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: #00AF9B;
    color: white;
    font-weight: 700;
    border-radius: var(--radius-md);
}

.pix-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.pix-benefit {
    text-align: center;
    padding: var(--space-4);
    background: rgba(0, 175, 155, 0.05);
    border-radius: var(--radius-md);
}

.pix-benefit-icon {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-2);
}

.pix-benefit-text {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

/* ==========================================
   BONUS SECTION
   ========================================== */
.bonus-card {
    background: var(--gradient-hero);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bonus-value {
    font-family: var(--font-primary);
    font-size: var(--fs-hero);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.bonus-label {
    font-size: var(--fs-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

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

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --fs-hero: 2.5rem;
        --fs-4xl: 2rem;
    }

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

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

    .hero-stats {
        flex-wrap: wrap;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --fs-hero: 2rem;
        --fs-4xl: 1.75rem;
        --fs-3xl: 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        background: #0D0D0D;
        background-color: #0D0D0D;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: var(--space-8);
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        z-index: var(--z-fixed);
        overflow-y: auto;
        display: flex;
    }

    .nav.active {
        transform: translateX(0);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--space-2);
    }

    .nav-link {
        display: block;
        padding: var(--space-4);
        font-size: var(--fs-lg);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 70vh;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .pix-benefits {
        grid-template-columns: 1fr;
    }

    .step {
        padding-left: var(--space-12);
    }

    .step::before {
        width: 40px;
        height: 40px;
        font-size: var(--fs-lg);
    }

    .step::after {
        left: 19px;
        top: 48px;
        height: calc(100% - 48px);
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    :root {
        --fs-hero: 1.75rem;
        --container-padding: var(--space-3);
    }

    .btn-large {
        padding: var(--space-3) var(--space-6);
        font-size: var(--fs-base);
    }

    .btn-cta {
        padding: var(--space-3) var(--space-6);
        font-size: var(--fs-base);
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }

.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

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

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn-cta {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}
