        :root {
            --primary: #E53935;
            --primary-dark: #B71C1C;
            --gold: #FFD700;
            --dark: #0a0a0a;
            --darker: #000000;
            --light: #ffffff;
            --gray: #9a9a9a;
            --gray-dark: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--darker);
            color: var(--light);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        /* ==================== BARRA DE PROGRESSO ==================== */
        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 9999;
        }
        
        .reading-progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            transition: width 0.1s ease-out;
        }
        
        /* ==================== TOAST NOTIFICATIONS ==================== */
        .toast-container {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .toast {
            background: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            animation: toastSlideIn 0.4s ease-out, toastSlideOut 0.4s ease-in 3.6s forwards;
            white-space: nowrap;
        }
        
        .toast-icon {
            font-size: 16px;
        }
        
        @keyframes toastSlideIn {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes toastSlideOut {
            from {
                opacity: 1;
                transform: translateX(0);
            }
            to {
                opacity: 0;
                transform: translateX(-100px);
            }
        }
        
        /* ==================== LIKE SECTION ==================== */
        .like-section {
            margin-top: 60px;
            text-align: center;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
            pointer-events: none;
        }
        
        /* Mostra like section só no card ativo */
        .edition-card.active .like-section {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        
        .like-cta {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            margin: 0 0 12px 0;
            letter-spacing: 0.3px;
        }
        
        .like-btn {
            background: var(--primary);
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
        }
        
        .like-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(229, 57, 53, 0.5);
        }
        
        .like-btn.liked {
            background: var(--primary);
            box-shadow: 0 0 25px rgba(229, 57, 53, 0.6);
        }
        
        .like-btn.liked .like-icon {
            animation: likePopAni 0.4s ease;
        }
        
        .like-icon {
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        
        .like-count {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: white;
        }
        
        .like-label {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }
        
        @keyframes likePopAni {
            0% { transform: scale(1); }
            50% { transform: scale(1.4); }
            100% { transform: scale(1); }
        }
        
        /* ==================== BADGE MAIS AMADA ==================== */
        .most-loved-badge {
            position: absolute;
            top: -55px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #FFD700, #FFA500);
            padding: 6px 16px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
            opacity: 0;
            transition: all 0.4s ease;
            white-space: nowrap;
            z-index: 25;
        }
        
        .most-loved-badge.visible {
            opacity: 1;
        }
        
        .most-loved-badge .crown {
            font-size: 14px;
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: visible;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(229, 57, 53, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
            z-index: 1;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.015">🛹</text></svg>') repeat;
            background-size: 80px;
            z-index: 0;
            animation: float 20s linear infinite;
        }
        
        @keyframes float {
            from { transform: translateY(0); }
            to { transform: translateY(-80px); }
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            width: 100%;
            padding: 2rem 4rem;
            position: relative;
            z-index: 2;
            align-items: center;
        }
        
        /* Left Side - Magazine Cover */
        .magazine-showcase {
            display: flex;
            justify-content: center;
            perspective: 1500px;
        }
        
        .magazine-wrapper {
            position: relative;
            transform-style: preserve-3d;
            animation: magazineFloat 6s ease-in-out infinite;
        }
        
        @keyframes magazineFloat {
            0%, 100% { transform: rotateY(-8deg) rotateX(2deg) translateY(0); }
            50% { transform: rotateY(-5deg) rotateX(0deg) translateY(-15px); }
        }
        
        .magazine-cover {
            width: 380px;
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 
                0 50px 100px rgba(0, 0, 0, 0.8),
                0 30px 60px rgba(229, 57, 53, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        
        .magazine-wrapper:hover .magazine-cover {
            transform: rotateY(0deg) scale(1.02);
            box-shadow: 
                0 60px 120px rgba(0, 0, 0, 0.9),
                0 40px 80px rgba(229, 57, 53, 0.4);
        }
        
        .magazine-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background: var(--primary);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.2rem;
            letter-spacing: 0.05em;
            box-shadow: 0 10px 30px rgba(229, 57, 53, 0.5);
            transform: rotate(12deg);
            z-index: 10;
        }
        
        .magazine-edition {
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.75rem 2rem;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            white-space: nowrap;
        }
        
        /* Right Side - Content */
        .hero-text {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .brand-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 1rem;
            background: rgba(229, 57, 53, 0.1);
            border: 1px solid rgba(229, 57, 53, 0.3);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            width: fit-content;
        }
        
        .brand-tag::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }
        
        .hero-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3.5rem, 8vw, 6rem);
            line-height: 0.95;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        
        .hero-title span {
            display: block;
            background: linear-gradient(135deg, var(--primary) 0%, #FF6B6B 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-style: italic;
            color: var(--gray);
            font-weight: 400;
        }
        
        .hero-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray);
            max-width: 500px;
        }
        
        /* Stats Row */
        .stats-row {
            display: flex;
            gap: 3rem;
            padding-top: 1rem;
        }
        
        .stat {
            text-align: left;
        }
        
        .stat-value {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            line-height: 1;
            color: var(--light);
        }
        
        .stat-value span {
            color: var(--primary);
            font-size: 2rem;
        }
        
        .stat-label {
            font-size: 0.8rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-top: 0.25rem;
        }
        
        /* CTA */
        .cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(229, 57, 53, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(229, 57, 53, 0.5);
            background: var(--primary-dark);
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: transparent;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.4);
        }
        
        /* ==================== TRIBUTE SECTION ==================== */
        .tribute {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .tribute::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.5), transparent);
        }
        
        .tribute-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .tribute-icon {
            font-size: 3rem;
            margin-bottom: 2rem;
            filter: grayscale(100%);
        }
        
        .tribute-quote {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-style: italic;
            line-height: 1.5;
            margin-bottom: 2rem;
            color: var(--light);
        }
        
        .tribute-quote::before,
        .tribute-quote::after {
            content: '"';
            color: var(--primary);
            opacity: 0.5;
        }
        
        .tribute-name {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 0.2em;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .tribute-dates {
            font-size: 0.9rem;
            color: var(--gray);
            letter-spacing: 0.1em;
        }
        
        .tribute-text {
            margin-top: 2rem;
            font-size: 1rem;
            line-height: 1.8;
            color: var(--gray);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* ==================== SPORTS SECTION ==================== */
        /* ==================== EDITIONS 3D SHOWCASE SECTION ==================== */
        .editions {
            padding: 6rem 0;
            background: linear-gradient(180deg, #0d1117 0%, #0a0d12 50%, #0d1117 100%);
            position: relative;
            overflow: hidden;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .editions::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.5), transparent);
        }
        
        .editions-content, .global-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            color: var(--light);
            margin: 1rem 0 0.5rem;
            letter-spacing: 0.05em;
        }
        
        .section-title span {
            color: var(--primary);
        }
        
        /* ===== 3D SHOWCASE CONTAINER ===== */
        .showcase-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 0;
            perspective: 1500px;
        }
        
        /* ===== NAVIGATION ARROWS ===== */
        .showcase-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .showcase-arrow:hover {
            transform: translateY(-50%) scale(1.2);
        }
        
        .showcase-arrow svg {
            width: 50px;
            height: 50px;
            stroke: rgba(255, 255, 255, 0.4);
            stroke-width: 3;
            fill: none;
            transition: all 0.3s ease;
        }
        
        .showcase-arrow:hover svg {
            stroke: var(--primary);
            filter: drop-shadow(0 0 20px rgba(229, 57, 53, 0.6));
        }
        
        .showcase-arrow.prev {
            left: 5%;
        }
        
        .showcase-arrow.next {
            right: 5%;
        }
        
        /* ===== CARDS WRAPPER - CARROSSEL SIMPLES ===== */
        .showcase-cards {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            overflow: visible;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            height: 500px; /* Altura FIXA - não muda nunca */
            padding: 50px 0;
        }
        
        /* ===== EDITION CARD ===== */
        .edition-card {
            flex-shrink: 0;
            width: 180px;
            height: 240px; /* Altura FIXA */
            border-radius: 12px;
            overflow: visible;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: absolute;
            opacity: 0;
            transform: scale(0.7);
            pointer-events: none;
        }
        
        /* Card esquerdo (prev) - posição 1 */
        .edition-card.prev {
            position: relative;
            width: 180px;
            height: 240px; /* Altura FIXA */
            opacity: 0.5;
            transform: scale(1);
            pointer-events: auto;
            order: 1;
            overflow: visible;
        }
        
        /* Card central (active) - DESTAQUE - posição 2 */
        .edition-card.active {
            position: relative;
            width: 300px;
            height: 400px; /* Altura FIXA maior */
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
            order: 2;
            z-index: 10;
            overflow: visible;
        }
        
        /* Card direito (next) - posição 3 */
        .edition-card.next {
            position: relative;
            width: 180px;
            height: 240px; /* Altura FIXA */
            opacity: 0.5;
            transform: scale(1);
            pointer-events: auto;
            order: 3;
            overflow: visible;
        }
        
        /* ===== HIGHLIGHT TAGS (aparecem só no card ativo) ===== */
        
        /* Tag do esporte (em cima do card) - estilo pill vermelho */
        .highlight-tag {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            background: var(--primary);
            padding: 8px 24px;
            border-radius: 8px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 20;
            white-space: nowrap;
        }
        
        .highlight-sport {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        /* Tag da edição (embaixo do card) - estilo pill escuro */
        .highlight-edition {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            background: rgba(30, 30, 30, 0.95);
            padding: 10px 20px;
            border-radius: 25px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transition-delay: 0.1s;
            z-index: 20;
            white-space: nowrap;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.5px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Mostrar tags apenas no card ATIVO (destaque) */
        .edition-card.active .highlight-tag {
            opacity: 1;
            transform: translateX(-50%) scale(1);
            top: -30px;
        }
        
        .edition-card.active .highlight-edition {
            opacity: 1;
            transform: translateX(-50%) scale(1);
            bottom: -35px;
        }
        
        .edition-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 
                0 30px 80px rgba(0, 0, 0, 0.8),
                0 15px 40px rgba(0, 0, 0, 0.6);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .edition-card.active .edition-card-inner {
            box-shadow: 
                0 50px 100px rgba(0, 0, 0, 0.9),
                0 25px 60px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.1);
        }
        
        /* Gradient overlay */
        .edition-card-inner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.3) 30%,
                transparent 60%
            );
            z-index: 1;
            transition: all 0.4s ease;
        }
        
        /* Hover effects - only center */
        .edition-card.center:hover {
            transform: translateZ(80px) scale(1.05);
        }
        
        .edition-card.center:hover .edition-card-inner {
            box-shadow: 
                0 60px 120px rgba(229, 57, 53, 0.4),
                0 30px 70px rgba(0, 0, 0, 0.8),
                0 0 0 3px var(--primary),
                0 0 80px rgba(229, 57, 53, 0.3);
        }
        
        .edition-card.center:hover .edition-card-inner::after {
            background: linear-gradient(
                to top,
                rgba(229, 57, 53, 0.95) 0%,
                rgba(229, 57, 53, 0.2) 30%,
                transparent 50%
            );
        }
        
        /* Cover image - preenche o card na proporção correta */
        .edition-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .edition-card.center:hover .edition-cover {
            transform: scale(1.1);
        }
        
        /* Edition info - only visible on center */
        .edition-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 1.5rem;
            z-index: 2;
            text-align: center;
            opacity: 1;
            transition: all 0.4s ease;
        }
        
        .edition-card:not(.center) .edition-info {
            opacity: 0;
        }
        
        .edition-sport {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.4rem;
            color: var(--light);
            letter-spacing: 0.2em;
            margin: 0 0 0.5rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
            transition: all 0.3s ease;
        }
        
        .edition-card.center:hover .edition-sport {
            transform: scale(1.05);
            text-shadow: 0 4px 25px rgba(229, 57, 53, 0.8);
        }
        
        .edition-number {
            font-size: 0.9rem;
            color: var(--gold);
            letter-spacing: 0.25em;
            text-transform: uppercase;
            margin: 0;
        }
        
        /* Edition badge - only on center */
        .edition-badge {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.9rem;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            letter-spacing: 0.15em;
            z-index: 5;
            box-shadow: 0 4px 20px rgba(229, 57, 53, 0.6);
            transition: all 0.3s ease;
            opacity: 1;
        }
        
        .edition-card:not(.center) .edition-badge {
            opacity: 0;
        }
        
        .edition-card.center:hover .edition-badge {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(229, 57, 53, 0.8);
        }
        
        /* Glow effect - hidden */
        .edition-glow {
            display: none;
        }
        
        /* ===== NAVIGATION DOTS ===== */
        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 3.5rem;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot:hover,
        .carousel-dot.active {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(229, 57, 53, 0.6);
        }
        
        /* Hint text */
        .carousel-hint {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.8rem;
            color: var(--gray);
            opacity: 0.6;
            letter-spacing: 0.1em;
        }

        /* ==================== GLOBAL REACH SECTION ==================== */
        .global-reach {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #0a0a0a 0%, var(--dark) 100%);
            position: relative;
        }
        
        .global-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-bottom: 3rem;
        }
        
        .global-stat {
            text-align: center;
        }
        
        .global-stat-value {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: var(--light);
            line-height: 1;
        }
        
        .global-stat-value span {
            color: var(--primary);
            font-size: 2.5rem;
        }
        
        .global-stat-label {
            font-size: 0.85rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-top: 0.5rem;
        }
        
        /* World Map */
        .world-map-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .world-map {
            width: 100%;
            max-width: 800px;
            position: relative;
        }
        
        .map-svg {
            width: 100%;
            height: auto;
        }
        
        .continent {
            fill: rgba(255, 255, 255, 0.03);
            stroke: rgba(255, 255, 255, 0.08);
            stroke-width: 1;
            transition: all 0.4s ease;
            cursor: pointer;
        }
        
        .continent-active {
            fill: rgba(229, 57, 53, 0.35);
            stroke: rgba(229, 57, 53, 0.7);
            stroke-width: 1.5;
            filter: drop-shadow(0 0 8px rgba(229, 57, 53, 0.4));
        }
        
        .continent-active:hover {
            fill: rgba(229, 57, 53, 0.5);
            stroke: rgba(229, 57, 53, 0.9);
            filter: drop-shadow(0 0 20px rgba(229, 57, 53, 0.6));
        }
        
        .continent-home {
            fill: rgba(255, 215, 0, 0.5);
            stroke: rgba(255, 215, 0, 0.9);
            stroke-width: 2.5;
            filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
        }
        
        .continent-home:hover {
            fill: rgba(255, 215, 0, 0.7);
            filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
        }
        
        .connection-line {
            stroke: rgba(229, 57, 53, 0.5);
            stroke-width: 1.5;
            stroke-dasharray: 5, 5;
            animation: dash 20s linear infinite;
        }
        
        @keyframes dash {
            to {
                stroke-dashoffset: -100;
            }
        }
        
        .pulse-point {
            fill: rgba(229, 57, 53, 0.7);
        }
        
        .home-point {
            fill: var(--gold);
            filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
        }
        
        /* Continents Legend */
        .continents-legend {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .continent-tag {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: var(--gray);
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        
        .continent-tag:hover {
            border-color: rgba(229, 57, 53, 0.3);
            color: var(--light);
        }
        
        .continent-tag.home {
            background: rgba(255, 215, 0, 0.1);
            border-color: rgba(255, 215, 0, 0.3);
            color: var(--gold);
        }
        
        .tag-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
        }
        
        .tag-dot.home {
            background: var(--gold);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        
        .global-message {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .global-message blockquote {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-style: italic;
            color: var(--light);
            line-height: 1.8;
            margin: 0;
            padding: 2rem;
            background: rgba(229, 57, 53, 0.05);
            border-radius: 12px;
            border-left: 3px solid var(--primary);
        }
        
        /* ==================== COMING SOON SECTION ==================== */
        .coming-soon {
            padding: 6rem 2rem;
            background: var(--dark);
            text-align: center;
        }
        
        .coming-soon-content {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 2rem;
        }
        
        .coming-soon h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            letter-spacing: 0.02em;
            margin-bottom: 1.5rem;
        }
        
        .coming-soon p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 2.5rem;
        }
        
        /* Social Links */
        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* ==================== FOOTER ==================== */
        footer {
            padding: 2rem;
            background: var(--darker);
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer-brand {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }
        
        .footer-brand span {
            color: var(--primary);
        }
        
        .footer-text {
            font-size: 0.85rem;
            color: var(--gray);
        }
        
        .footer-text a {
            color: var(--primary);
            text-decoration: none;
        }
        
        /* ==================== RESPONSIVE ==================== */
        
        /* ===== TELAS ULTRA WIDE / TV 4K (2560px+) ===== */
        @media (min-width: 2560px) {
            .hero-content {
                max-width: 2000px;
                gap: 8rem;
                padding: 4rem 8rem;
            }
            
            .magazine-cover {
                width: 550px;
            }
            
            .magazine-badge {
                padding: 1.5rem 2rem;
                font-size: 1.6rem;
                top: -30px;
                right: -30px;
            }
            
            .magazine-edition {
                padding: 1rem 3rem;
                font-size: 1.1rem;
            }
            
            .hero-title {
                font-size: 8rem;
            }
            
            .hero-subtitle {
                font-size: 2.2rem;
            }
            
            .hero-description {
                font-size: 1.4rem;
                max-width: 700px;
            }
            
            .brand-tag {
                font-size: 1rem;
                padding: 0.75rem 1.5rem;
            }
            
            .stats-row {
                gap: 5rem;
            }
            
            .stat-value {
                font-size: 4.5rem;
            }
            
            .stat-value span {
                font-size: 3rem;
            }
            
            .stat-label {
                font-size: 1.1rem;
            }
            
            .btn-primary, .btn-secondary {
                padding: 1.25rem 2.5rem;
                font-size: 1.15rem;
            }
            
            .tribute {
                padding: 10rem 4rem;
            }
            
            .tribute-quote {
                font-size: 3.5rem;
            }
            
            .tribute-name {
                font-size: 2.2rem;
            }
            
            .tribute-text {
                font-size: 1.3rem;
                max-width: 900px;
            }
            
            .coming-soon {
                padding: 10rem 4rem;
            }
            
            .coming-soon h2 {
                font-size: 5rem;
            }
            
            .coming-soon p {
                font-size: 1.4rem;
            }
            
            /* Editions - Ultra Wide / 4K */
            .editions {
                padding: 10rem 4rem;
            }
            
            .section-title {
                font-size: 5rem;
            }
            
            .section-subtitle {
                font-size: 1.4rem;
                max-width: 800px;
            }
            
            /* 3D Showcase - 4K Ultra */
            .showcase-container {
                gap: 4rem;
            }
            
            .showcase-arrow {
                width: 80px;
                height: 80px;
            }
            
            .showcase-arrow svg {
                width: 40px;
                height: 40px;
            }
            
            .edition-card.center {
                width: 450px;
                height: 680px;
            }
            
            .edition-card.side-left,
            .edition-card.side-right {
                width: 280px;
                height: 420px;
            }
            
            .edition-card.far-left,
            .edition-card.far-right {
                width: 220px;
                height: 330px;
            }
            
            .edition-sport {
                font-size: 2.8rem;
            }
            
            .edition-number {
                font-size: 1rem;
            }
            
            .edition-badge {
                font-size: 1rem;
                padding: 0.65rem 1.25rem;
            }
            
            .carousel-dot {
                width: 14px;
                height: 14px;
            }
            
            .global-reach {
                padding: 10rem 4rem;
            }
            
            .global-stats {
                gap: 6rem;
            }
            
            .global-stat-value {
                font-size: 6rem;
            }
            
            .global-stat-label {
                font-size: 1.3rem;
            }
            
            .world-map {
                max-width: 1200px;
            }
            
            .continents-legend {
                gap: 1.5rem;
            }
            
            .continent-tag {
                font-size: 1rem;
                padding: 0.75rem 1.25rem;
            }
            
            .social-link {
                width: 70px;
                height: 70px;
            }
            
            .social-link svg {
                width: 32px;
                height: 32px;
            }
            
            .scroll-indicator {
                bottom: 3rem;
                padding: 1.5rem;
            }
            
            .scroll-indicator svg {
                width: 36px;
                height: 36px;
            }
            
            footer {
                padding: 3rem;
            }
            
            .footer-brand {
                font-size: 2rem;
            }
            
            .footer-text {
                font-size: 1.1rem;
            }
        }
        
        /* ===== TELAS TV / DESKTOP GRANDE (1920px - 2559px) ===== */
        @media (min-width: 1920px) and (max-width: 2559px) {
            .hero-content {
                max-width: 1700px;
                gap: 6rem;
            }
            
            .magazine-cover {
                width: 480px;
            }
            
            .magazine-badge {
                padding: 1.25rem 1.75rem;
                font-size: 1.4rem;
            }
            
            .hero-title {
                font-size: 7rem;
            }
            
            .hero-subtitle {
                font-size: 1.8rem;
            }
            
            .hero-description {
                font-size: 1.25rem;
                max-width: 600px;
            }
            
            .stats-row {
                gap: 4rem;
            }
            
            .stat-value {
                font-size: 4rem;
            }
            
            .stat-value span {
                font-size: 2.5rem;
            }
            
            .btn-primary, .btn-secondary {
                padding: 1.15rem 2.25rem;
                font-size: 1.05rem;
            }
            
            .tribute {
                padding: 8rem 3rem;
            }
            
            .tribute-quote {
                font-size: 3rem;
            }
            
            .tribute-text {
                font-size: 1.15rem;
                max-width: 750px;
            }
            
            .coming-soon {
                padding: 8rem 3rem;
            }
            
            .coming-soon h2 {
                font-size: 4.5rem;
            }
            
            /* 3D Showcase - TV/Desktop Grande */
            .editions {
                padding: 8rem 0;
            }
            
            .section-title {
                font-size: 4.5rem;
            }
            
            .section-subtitle {
                font-size: 1.25rem;
            }
            
            .showcase-container {
                gap: 3rem;
            }
            
            .showcase-arrow {
                width: 70px;
                height: 70px;
            }
            
            .edition-card.center {
                width: 400px;
                height: 600px;
            }
            
            .edition-card.side-left,
            .edition-card.side-right {
                width: 250px;
                height: 375px;
            }
            
            .edition-card.far-left,
            .edition-card.far-right {
                width: 200px;
                height: 300px;
            }
            
            .edition-sport {
                font-size: 2.4rem;
            }
            
            .global-reach {
                padding: 8rem 3rem;
            }
            
            .global-stats {
                gap: 5rem;
            }
            
            .global-stat-value {
                font-size: 5rem;
            }
            
            .global-stat-label {
                font-size: 1.15rem;
            }
            
            .world-map {
                max-width: 1000px;
            }
            
            .continent-tag {
                font-size: 0.9rem;
            }
            
            .social-link {
                width: 60px;
                height: 60px;
            }
            
            .social-link svg {
                width: 28px;
                height: 28px;
            }
        }
        
        /* ===== DESKTOP PADRÃO (1440px - 1919px) ===== */
        @media (min-width: 1440px) and (max-width: 1919px) {
            .hero-content {
                max-width: 1500px;
                gap: 5rem;
            }
            
            .magazine-cover {
                width: 420px;
            }
            
            .hero-title {
                font-size: 6.5rem;
            }
            
            .stat-value {
                font-size: 3.5rem;
            }
            
            /* 3D Showcase - Desktop Padrão */
            .section-title {
                font-size: 4rem;
            }
            
            .showcase-container {
                gap: 2.5rem;
            }
            
            .edition-card.center {
                width: 360px;
                height: 540px;
            }
            
            .edition-card.side-left,
            .edition-card.side-right {
                width: 220px;
                height: 330px;
            }
            
            .edition-card.far-left,
            .edition-card.far-right {
                width: 180px;
                height: 270px;
            }
            
            .global-stats {
                gap: 4rem;
            }
            
            .global-stat-value {
                font-size: 4.5rem;
            }
        }
        
        /* ===== LAPTOP / DESKTOP PEQUENO (1024px - 1439px) ===== */
        @media (min-width: 1024px) and (max-width: 1439px) {
            .hero-content {
                gap: 3rem;
                padding: 2rem 3rem;
            }
            
            .magazine-cover {
                width: 340px;
            }
            
            .hero-title {
                font-size: 5rem;
            }
            
            .stat-value {
                font-size: 2.8rem;
            }
            
            /* Editions - Laptop */
            .editions, .global-reach {
                padding: 5rem 2rem;
            }
            
            .section-title {
                font-size: 3.5rem;
            }
            
            /* 3D Showcase - Laptop */
            .showcase-container {
                gap: 1.5rem;
            }
            
            .showcase-arrow {
                width: 55px;
                height: 55px;
            }
            
            .edition-card.center {
                width: 300px;
                height: 450px;
            }
            
            .edition-card.side-left,
            .edition-card.side-right {
                width: 180px;
                height: 270px;
            }
            
            .edition-card.far-left,
            .edition-card.far-right {
                width: 140px;
                height: 210px;
            }
            
            .edition-sport {
                font-size: 1.8rem;
            }
            
            .edition-number {
                font-size: 0.75rem;
            }
            
            .edition-badge {
                font-size: 0.75rem;
                padding: 0.4rem 0.85rem;
            }
            
            .global-stats {
                gap: 3rem;
            }
            
            .global-stat-value {
                font-size: 4rem;
            }
            
            .world-map {
                max-width: 700px;
            }
        }
        
        /* ===== TABLET LANDSCAPE (768px - 1023px) ===== */
        @media (max-width: 1023px) and (min-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 4rem 3rem;
                text-align: center;
            }
            
            .magazine-showcase {
                order: -1;
            }
            
            .magazine-cover {
                width: 360px;
            }
            
            .magazine-badge {
                top: -15px;
                right: -15px;
            }
            
            .hero-text {
                align-items: center;
            }
            
            .hero-title {
                font-size: 5rem;
            }
            
            .hero-description {
                text-align: center;
                max-width: 600px;
            }
            
            .stats-row {
                justify-content: center;
                gap: 3rem;
            }
            
            .stat {
                text-align: center;
            }
            
            .stat-value {
                font-size: 3rem;
            }
            
            .cta-group {
                justify-content: center;
            }
            
            .tribute {
                padding: 5rem 3rem;
            }
            
            .coming-soon {
                padding: 5rem 3rem;
            }
            
            /* 3D Showcase - Tablet Landscape */
            .showcase-container {
                gap: 1rem;
            }
            
            .showcase-arrow {
                width: 50px;
                height: 50px;
            }
            
            .edition-card.center {
                width: 280px;
                height: 420px;
            }
            
            .edition-card.side-left,
            .edition-card.side-right {
                width: 160px;
                height: 240px;
            }
            
            .edition-card.far-left,
            .edition-card.far-right {
                width: 120px;
                height: 180px;
            }
            
            .edition-sport {
                font-size: 1.6rem;
            }
            
            .edition-number {
                font-size: 0.7rem;
            }
            
            .edition-badge {
                font-size: 0.7rem;
                padding: 0.35rem 0.75rem;
                top: 1rem;
                right: 1rem;
            }
            
            .edition-info {
                padding: 1.25rem 1rem;
            }
            
            .carousel-hint {
                font-size: 0.75rem;
            }
            
            .global-stats {
                gap: 3rem;
            }
            
            .global-stat-value {
                font-size: 3.5rem;
            }
            
            .world-map {
                max-width: 650px;
            }
        }
        
        /* ===== TABLET PORTRAIT (640px - 767px) ===== */
        @media (max-width: 767px) and (min-width: 640px) {
            .hero {
                min-height: auto;
                padding: 3rem 0;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                padding: 3rem 2rem;
                text-align: center;
            }
            
            .magazine-showcase {
                order: -1;
            }
            
            .magazine-cover {
                width: 320px;
            }
            
            .hero-text {
                align-items: center;
            }
            
            .hero-title {
                font-size: 4rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .hero-description {
                text-align: center;
                font-size: 1rem;
            }
            
            .stats-row {
                justify-content: center;
                gap: 2.5rem;
            }
            
            .stat {
                text-align: center;
            }
            
            .stat-value {
                font-size: 2.8rem;
            }
            
            .cta-group {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .tribute {
                padding: 4rem 2rem;
            }
            
            .tribute-quote {
                font-size: 1.8rem;
            }
            
            .coming-soon {
                padding: 4rem 2rem;
            }
            
            /* 3D Showcase - Tablet Portrait */
            .editions {
                padding: 4rem 0;
            }
            
            .showcase-container {
                gap: 0.75rem;
                padding: 2rem 0;
            }
            
            .showcase-arrow {
                width: 45px;
                height: 45px;
            }
            
            .edition-card.center {
                width: 240px;
                height: 360px;
            }
            
            .edition-card.side-left,
            .edition-card.side-right {
                width: 140px;
                height: 210px;
            }
            
            .edition-card.far-left,
            .edition-card.far-right {
                width: 100px;
                height: 150px;
            }
            
            .edition-sport {
                font-size: 1.4rem;
            }
            
            .edition-number {
                font-size: 0.6rem;
            }
            
            .edition-badge {
                font-size: 0.6rem;
                padding: 0.3rem 0.6rem;
            }
            
            .edition-info {
                padding: 1rem 0.75rem;
            }
            
            .carousel-nav {
                gap: 0.6rem;
                margin-top: 3rem;
            }
            
            .carousel-dot {
                width: 10px;
                height: 10px;
            }
            
            .like-section {
                margin-top: 50px;
            }
            
            .section-title {
                font-size: 3rem;
            }
            
            .global-stats {
                gap: 2rem;
            }
            
            .global-stat-value {
                font-size: 3rem;
            }
            
            .world-map {
                max-width: 500px;
            }
            
            .continents-legend {
                gap: 0.75rem;
            }
            
            .continent-tag {
                font-size: 0.7rem;
                padding: 0.4rem 0.75rem;
            }
        }
        
        /* ===== MOBILE GRANDE (480px - 639px) ===== */
        @media (max-width: 639px) and (min-width: 480px) {
            .hero {
                min-height: auto;
                padding: 3rem 0;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem 1.5rem;
                text-align: center;
            }
            
            .magazine-showcase {
                order: -1;
            }
            
            .magazine-cover {
                width: 300px;
            }
            
            .magazine-badge {
                padding: 0.75rem 1rem;
                font-size: 1rem;
                top: -12px;
                right: -12px;
            }
            
            .magazine-edition {
                font-size: 0.75rem;
                padding: 0.5rem 1.25rem;
            }
            
            .hero-text {
                align-items: center;
                gap: 1.5rem;
            }
            
            .hero-title {
                font-size: 3.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-description {
                text-align: center;
                font-size: 1rem;
            }
            
            .stats-row {
                justify-content: center;
                gap: 2rem;
            }
            
            .stat {
                text-align: center;
            }
            
            .stat-value {
                font-size: 2.5rem;
            }
            
            .stat-value span {
                font-size: 1.5rem;
            }
            
            .cta-group {
                flex-direction: column;
                width: 100%;
                padding: 0 1rem;
            }
            
            .btn-primary, .btn-secondary {
                justify-content: center;
                width: 100%;
            }
            
            .scroll-indicator {
                bottom: 1.5rem;
            }
            
            .tribute {
                padding: 4rem 1.5rem;
            }
            
            .tribute-quote {
                font-size: 1.5rem;
            }
            
            .tribute-text {
                font-size: 0.95rem;
            }
            
            .coming-soon {
                padding: 4rem 1.5rem;
            }
            
            .coming-soon h2 {
                font-size: 2.5rem;
            }
            
            /* 3D Showcase - Mobile Grande */
            .editions {
                padding: 4rem 0;
            }
            
            .showcase-container {
                gap: 0.5rem;
                padding: 1.5rem 0;
            }
            
            .showcase-arrow {
                width: 40px;
                height: 40px;
            }
            
            .showcase-arrow svg {
                width: 20px;
                height: 20px;
            }
            
            .edition-card.center {
                width: 200px;
                height: 300px;
            }
            
            .edition-card.side-left,
            .edition-card.side-right {
                width: 100px;
                height: 150px;
                transform: rotateY(20deg);
            }
            
            .edition-card.side-left {
                transform: rotateY(-20deg);
            }
            
            .edition-card.far-left,
            .edition-card.far-right {
                display: none;
            }
            
            .edition-sport {
                font-size: 1.2rem;
            }
            
            .edition-number {
                font-size: 0.55rem;
            }
            
            .edition-badge {
                font-size: 0.55rem;
                padding: 0.25rem 0.5rem;
                top: 0.75rem;
                right: 0.75rem;
            }
            
            .edition-info {
                padding: 0.85rem 0.65rem;
            }
            
            .carousel-hint {
                font-size: 0.7rem;
            }
            
            .like-section {
                margin-top: 60px;
            }
            
            .carousel-nav {
                margin-top: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .global-reach {
                padding: 4rem 1.5rem;
            }
            
            .global-stats {
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            
            .global-stat {
                flex: 1 1 40%;
            }
            
            .global-stat-value {
                font-size: 2.5rem;
            }
            
            .global-stat-label {
                font-size: 0.8rem;
            }
            
            .world-map {
                max-width: 100%;
            }
            
            .continents-legend {
                gap: 0.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .continent-tag {
                font-size: 0.65rem;
                padding: 0.35rem 0.65rem;
            }
        }
        
        /* ===== MOBILE PADRÃO (380px - 479px) ===== */
        @media (max-width: 479px) and (min-width: 380px) {
            .hero {
                min-height: auto;
                padding: 2rem 0;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1.5rem 1rem;
                text-align: center;
            }
            
            .magazine-showcase {
                order: -1;
            }
            
            .magazine-cover {
                width: 260px;
            }
            
            .magazine-badge {
                padding: 0.6rem 0.9rem;
                font-size: 0.9rem;
                top: -10px;
                right: -10px;
            }
            
            .magazine-edition {
                font-size: 0.7rem;
                padding: 0.5rem 1rem;
            }
            
            .hero-text {
                align-items: center;
                gap: 1.25rem;
            }
            
            .brand-tag {
                font-size: 0.65rem;
                padding: 0.4rem 0.75rem;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-description {
                text-align: center;
                font-size: 0.95rem;
                line-height: 1.7;
            }
            
            .stats-row {
                justify-content: center;
                gap: 1.5rem;
            }
            
            .stat {
                text-align: center;
            }
            
            .stat-value {
                font-size: 2.2rem;
            }
            
            .stat-value span {
                font-size: 1.3rem;
            }
            
            .stat-label {
                font-size: 0.7rem;
            }
            
            .cta-group {
                flex-direction: column;
                width: 100%;
                gap: 0.75rem;
            }
            
            .btn-primary, .btn-secondary {
                justify-content: center;
                width: 100%;
                padding: 0.9rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .scroll-indicator {
                bottom: 1rem;
                padding: 0.75rem;
            }
            
            .scroll-indicator svg {
                width: 20px;
                height: 20px;
            }
            
            .tribute {
                padding: 3rem 1rem;
            }
            
            .tribute-icon {
                font-size: 2.5rem;
            }
            
            .tribute-quote {
                font-size: 1.3rem;
                padding: 0;
            }
            
            .tribute-name {
                font-size: 1.2rem;
            }
            
            .tribute-dates {
                font-size: 0.8rem;
            }
            
            .tribute-text {
                font-size: 0.9rem;
            }
            
            .coming-soon {
                padding: 3rem 1rem;
            }
            
            .coming-soon h2 {
                font-size: 2.2rem;
            }
            
            .coming-soon p {
                font-size: 1rem;
            }
            
            .social-link {
                width: 45px;
                height: 45px;
            }
            
            .social-link svg {
                width: 20px;
                height: 20px;
            }
            
            footer {
                padding: 1.5rem 1rem;
            }
            
            .footer-brand {
                font-size: 1.3rem;
            }
            
            .footer-text {
                font-size: 0.8rem;
            }
            
            /* 3D Showcase - Mobile Padrão */
            .editions {
                padding: 3.5rem 0;
            }
            
            .showcase-container {
                gap: 0.25rem;
                padding: 1rem 0;
            }
            
            .showcase-arrow {
                width: 36px;
                height: 36px;
            }
            
            .showcase-arrow svg {
                width: 18px;
                height: 18px;
            }
            
            .edition-card.center {
                width: 180px;
                height: 270px;
                border-radius: 10px;
            }
            
            .edition-card.side-left,
            .edition-card.side-right {
                width: 80px;
                height: 120px;
                transform: rotateY(15deg);
                opacity: 0.6;
            }
            
            .edition-card.side-left {
                transform: rotateY(-15deg);
            }
            
            .edition-card.far-left,
            .edition-card.far-right {
                display: none;
            }
            
            .edition-card-inner::before {
                width: 5px;
            }
            
            .edition-sport {
                font-size: 1rem;
            }
            
            .edition-number {
                display: none;
            }
            
            .edition-badge {
                font-size: 0.5rem;
                padding: 0.2rem 0.4rem;
                top: 0.5rem;
                right: 0.5rem;
            }
            
            .edition-info {
                padding: 0.65rem 0.5rem;
            }
            
            .carousel-nav {
                gap: 0.5rem;
                margin-top: 4rem;
            }
            
            .carousel-dot {
                width: 8px;
                height: 8px;
            }
            
            .carousel-hint {
                font-size: 0.65rem;
                margin-top: 0.75rem;
            }
            
            .like-section {
                margin-top: 70px;
            }
            
            .section-title {
                font-size: 2.25rem;
            }
            
            .section-subtitle {
                font-size: 0.9rem;
            }
            
            .global-reach {
                padding: 3.5rem 1rem;
            }
            
            .global-stats {
                flex-wrap: wrap;
                gap: 1rem;
            }
            
            .global-stat {
                flex: 1 1 45%;
            }
            
            .global-stat-value {
                font-size: 2.25rem;
            }
            
            .global-stat-label {
                font-size: 0.75rem;
            }
            
            .world-map {
                max-width: 100%;
            }
            
            .continents-legend {
                gap: 0.4rem;
            }
            
            .continent-tag {
                font-size: 0.6rem;
                padding: 0.3rem 0.5rem;
            }
        }
        
        /* ===== MOBILE PEQUENO (< 380px) ===== */
        @media (max-width: 379px) {
            .hero {
                min-height: auto;
                padding: 1.5rem 0;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                padding: 1rem 0.75rem;
                text-align: center;
            }
            
            .magazine-showcase {
                order: -1;
            }
            
            .magazine-cover {
                width: 220px;
            }
            
            .magazine-badge {
                padding: 0.5rem 0.75rem;
                font-size: 0.8rem;
                top: -8px;
                right: -8px;
            }
            
            .magazine-edition {
                font-size: 0.6rem;
                padding: 0.4rem 0.8rem;
                bottom: -12px;
            }
            
            .hero-text {
                align-items: center;
                gap: 1rem;
            }
            
            .brand-tag {
                font-size: 0.6rem;
                padding: 0.35rem 0.6rem;
                gap: 0.5rem;
            }
            
            .brand-tag::before {
                width: 6px;
                height: 6px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-description {
                text-align: center;
                font-size: 0.9rem;
                line-height: 1.6;
            }
            
            .stats-row {
                justify-content: space-around;
                gap: 1rem;
                width: 100%;
            }
            
            .stat {
                text-align: center;
                flex: 1;
            }
            
            .stat-value {
                font-size: 1.8rem;
            }
            
            .stat-value span {
                font-size: 1.1rem;
            }
            
            .stat-label {
                font-size: 0.6rem;
            }
            
            .cta-group {
                flex-direction: column;
                width: 100%;
                gap: 0.6rem;
            }
            
            .btn-primary, .btn-secondary {
                justify-content: center;
                width: 100%;
                padding: 0.8rem 1.25rem;
                font-size: 0.85rem;
                gap: 0.5rem;
            }
            
            .btn-primary svg, .btn-secondary svg {
                width: 18px;
                height: 18px;
            }
            
            .scroll-indicator {
                bottom: 0.75rem;
                padding: 0.6rem;
            }
            
            .scroll-indicator svg {
                width: 18px;
                height: 18px;
            }
            
            .tribute {
                padding: 2.5rem 0.75rem;
            }
            
            .tribute-icon {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .tribute-quote {
                font-size: 1.1rem;
                padding: 0;
                line-height: 1.6;
            }
            
            .tribute-name {
                font-size: 1.1rem;
            }
            
            .tribute-dates {
                font-size: 0.75rem;
            }
            
            .tribute-text {
                font-size: 0.85rem;
                margin-top: 1.5rem;
            }
            
            .coming-soon {
                padding: 2.5rem 0.75rem;
            }
            
            .section-label {
                font-size: 0.65rem;
                padding: 0.4rem 0.75rem;
            }
            
            .coming-soon h2 {
                font-size: 1.8rem;
            }
            
            .coming-soon p {
                font-size: 0.9rem;
            }
            
            .social-links {
                gap: 0.75rem;
            }
            
            .social-link {
                width: 42px;
                height: 42px;
                border-radius: 10px;
            }
            
            .social-link svg {
                width: 18px;
                height: 18px;
            }
            
            footer {
                padding: 1.25rem 0.75rem;
            }
            
            .footer-brand {
                font-size: 1.2rem;
            }
            
            .footer-text {
                font-size: 0.75rem;
            }
            
            /* 3D Showcase - Mobile Pequeno */
            .editions {
                padding: 3rem 0;
            }
            
            .showcase-container {
                gap: 0.15rem;
                padding: 0.75rem 0;
            }
            
            .showcase-arrow {
                width: 32px;
                height: 32px;
            }
            
            .showcase-arrow svg {
                width: 16px;
                height: 16px;
            }
            
            .edition-card.center {
                width: 150px;
                height: 225px;
                border-radius: 8px;
            }
            
            .edition-card.side-left,
            .edition-card.side-right {
                width: 60px;
                height: 90px;
                opacity: 0.5;
            }
            
            .edition-card.far-left,
            .edition-card.far-right {
                display: none;
            }
            
            .edition-card-inner::before {
                width: 4px;
            }
            
            .edition-sport {
                font-size: 0.85rem;
            }
            
            .edition-number {
                display: none;
            }
            
            .edition-badge {
                font-size: 0.45rem;
                padding: 0.15rem 0.35rem;
                top: 0.35rem;
                right: 0.35rem;
            }
            
            .edition-info {
                padding: 0.5rem 0.35rem;
            }
            
            .carousel-nav {
                gap: 0.4rem;
                margin-top: 4.5rem;
            }
            
            .carousel-dot {
                width: 7px;
                height: 7px;
            }
            
            .carousel-hint {
                font-size: 0.6rem;
                margin-top: 0.75rem;
            }
            
            .like-section {
                margin-top: 80px;
            }
            
            .section-title {
                font-size: 1.85rem;
            }
            
            .section-subtitle {
                font-size: 0.85rem;
            }
            
            .global-reach {
                padding: 3rem 0.75rem;
            }
            
            .global-stats {
                gap: 0.75rem;
            }
            
            .global-stat {
                flex: 1 1 45%;
            }
            
            .global-stat-value {
                font-size: 1.85rem;
            }
            
            .global-stat-label {
                font-size: 0.65rem;
            }
            
            .world-map {
                max-width: 100%;
            }
            
            .continents-legend {
                gap: 0.35rem;
            }
            
            .continent-tag {
                font-size: 0.55rem;
                padding: 0.25rem 0.4rem;
            }
        }
        
        /* ===== ORIENTAÇÃO LANDSCAPE EM MOBILE ===== */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                padding: 2rem 0;
            }
            
            .hero-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
                padding: 1rem 2rem;
            }
            
            .magazine-showcase {
                order: 0;
            }
            
            .magazine-cover {
                width: 200px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .stats-row {
                gap: 1.5rem;
            }
            
            .stat-value {
                font-size: 2rem;
            }
            
            .scroll-indicator {
                display: none;
            }
        }
        
        /* ===== PRINT STYLES ===== */
        @media print {
            .hero::before,
            .hero::after,
            .scroll-indicator {
                display: none;
            }
            
            body {
                background: white;
                color: black;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) translateY(50%);
            z-index: 10;
            animation: bounce 2s infinite;
            cursor: pointer;
            text-decoration: none;
            padding: 1rem;
            border-radius: 50%;
            background: rgba(10, 10, 10, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .scroll-indicator:hover {
            background: rgba(229, 57, 53, 0.2);
            border-color: rgba(229, 57, 53, 0.5);
            animation-play-state: paused;
        }
        
        .scroll-indicator:hover svg {
            color: var(--primary);
            opacity: 1;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(50%); }
            40% { transform: translateX(-50%) translateY(40%); }
            60% { transform: translateX(-50%) translateY(45%); }
        }
        
        .scroll-indicator svg {
            width: 24px;
            height: 24px;
            color: var(--gray);
            opacity: 0.6;
            transition: all 0.3s ease;
            display: block;
        }

/* ==================== LANGUAGE SELECTOR ==================== */
.language-selector {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.language-selector-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-bottom: 15px;
    opacity: 0.5;
}

.language-flags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.lang-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.flag-icon {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary);
    background: rgba(229, 57, 53, 0.1);
    transform: translateY(-2px);
}

.lang-btn:hover .flag-icon {
    transform: scale(1.1);
}

.lang-btn.active {
    border-color: var(--primary);
    background: rgba(229, 57, 53, 0.15);
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.3);
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .language-flags {
        gap: 10px;
    }
    
    .lang-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}
