/* ============================================
   RESET E CONFIGURAÇÕES BÁSICAS
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Permitir seleção apenas em inputs e textareas */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

:root {
    /* Cores ROYAL ORG - Amarelo Dourado e Preto */
    --cor-dourado: #FFD700;
    --cor-dourado-escuro: #FFA500;
    --cor-dourado-claro: #FFE87C;
    --cor-preto: #000000;
    --cor-preto-suave: #1a1a1a;
    --cor-cinza-escuro: #2a2a2a;
    --cor-cinza: #3a3a3a;
    --cor-branco: #ffffff;
    --cor-texto: #ffffff;
    --cor-texto-escuro: #333333;
    
    /* Sombras e Efeitos */
    --sombra-dourada: 0 0 20px rgba(255, 215, 0, 0.3);
    --sombra-dourada-grande: 0 0 40px rgba(255, 215, 0, 0.5);
    --sombra-padrao: 0 4px 6px rgba(0, 0, 0, 0.3);
    --sombra-grande: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* Transições OTIMIZADAS - Mais rápidas para melhor performance */
    --transicao: all 0.2s ease;
    --transicao-rapida: all 0.15s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* OTIMIZADO - Máxima performance de scroll */
html {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Compositing layer para scroll suave */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* OTIMIZADO - Compositing layer fixo para scroll suave */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Melhorar renderização */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevenir flickering */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--cor-texto);
    background: var(--cor-preto);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* OTIMIZADO - Removido transform, usando will-change apenas onde necessário */
}

/* Garantir que o conteúdo seja sempre visível */
body > *:not(.device-choice-modal) {
    position: relative;
    z-index: 1;
}

/* OTIMIZADO - Aplicar apenas em elementos específicos para melhor performance */

.section {
    /* OTIMIZADO - Máxima performance durante scroll */
    padding: 100px 0;
    position: relative;
    overflow: visible;
    /* Compositing layer otimizado */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: scroll-position;
    /* Evitar repaints */
    contain: layout style paint;
    isolation: isolate;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* Ajustes baseados na escolha do dispositivo */
/* ============================================
   ESTILOS PARA MOBILE (device-mobile)
   ============================================ */

body.device-mobile {
    font-size: 14px;
}

body.device-mobile .hero-carousels-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
}

body.device-mobile .hero-carousel-section {
    max-width: 100%;
}

body.device-mobile .hero-carousel-img {
    max-height: 50vh;
}

body.device-mobile .catalogos-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    max-width: 100%;
    padding: 0 1rem;
}

body.device-mobile .catalogo-card {
    padding: 1.5rem 1rem;
}

body.device-mobile .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

body.device-mobile .download-header-wrapper {
    padding: 1.5rem 1rem;
    gap: 1rem;
}

body.device-mobile .download-header-wrapper .section-title {
    font-size: 1.5rem;
}

body.device-mobile .download-intro-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

body.device-mobile .catalogo-nav-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
}

body.device-mobile .catalogos-nav {
    gap: 0.5rem;
    flex-wrap: wrap;
}

body.device-mobile .container {
    padding: 0 1rem;
}

body.device-mobile .section {
    padding: 60px 0;
}

body.device-mobile .hero {
    padding: 80px 0 40px 0;
    min-height: auto;
}

body.device-mobile .hero-title {
    font-size: 2rem;
}

body.device-mobile .hero-subtitle {
    font-size: 1rem;
}

body.device-mobile .hero-description {
    font-size: 0.9rem;
}

body.device-mobile .hero-features {
    flex-wrap: wrap;
    gap: 1rem;
}

body.device-mobile .feature-item {
    font-size: 0.85rem;
}

body.device-mobile .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
}

body.device-mobile .nav-quick-menu {
    display: none;
}

body.device-mobile .video-avaliacoes-content {
    flex-direction: column;
    gap: 2rem;
}

body.device-mobile .video-section {
    width: 100%;
}

body.device-mobile .avaliacoes-section {
    width: 100%;
    max-height: none;
}

body.device-mobile .avaliacoes-list {
    max-height: 400px;
}

body.device-mobile .faq-container {
    flex-direction: column;
}

body.device-mobile .faq-columns {
    flex-direction: column;
    gap: 2rem;
}

body.device-mobile .about-content {
    flex-direction: column;
    gap: 2rem;
}

body.device-mobile .about-image {
    width: 100%;
}

body.device-mobile .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

/* ============================================
   ESTILOS PARA PC (device-pc)
   ============================================ */

body.device-pc .hero-carousels-wrapper {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 1200px) {
    body.device-pc .hero-carousels-wrapper {
        grid-template-columns: 1fr;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
    /* OTIMIZADO - Melhorar renderização */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* backdrop-filter: blur(10px); */
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* -webkit-backdrop-filter: blur(10px); */
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--cor-dourado);
    will-change: background, box-shadow;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Menu de Navegação Rápida no Header */
.nav-quick-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 2px solid rgba(255, 215, 0, 0.3);
}

.nav-quick-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--cor-texto);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transicao);
    white-space: nowrap;
}

.nav-quick-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--cor-dourado);
    color: var(--cor-dourado);
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

@media (max-width: 968px) {
    .nav-quick-menu {
        display: none;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transicao);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cor-dourado) 0%, var(--cor-dourado-escuro) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--cor-texto);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transicao);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cor-dourado), var(--cor-dourado-escuro));
    transition: var(--transicao);
    box-shadow: var(--sombra-dourada);
}

.nav-menu a:hover {
    color: var(--cor-dourado);
}

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

.nav-discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--cor-branco) !important;
    font-weight: 600;
    transition: var(--transicao);
}

.nav-discord:hover {
    background: linear-gradient(135deg, #4752C4 0%, #5865F2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.nav-discord::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cor-dourado);
    transition: var(--transicao);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px 0;
    background: linear-gradient(135deg, var(--cor-preto) 0%, var(--cor-preto-suave) 50%, var(--cor-preto) 100%);
    overflow: hidden;
    /* OTIMIZADO - Máxima performance */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    contain: layout style paint;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    /* OTIMIZADO - Compositing layer fixo */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: auto;
    pointer-events: none;
    z-index: 0;
    /* Evitar repaints */
    contain: strict;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: 2rem 0;
    /* OTIMIZADO - Melhorar renderização */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style;
}

@media (max-width: 968px) {
    .hero-content {
        gap: 2.5rem;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-carousels-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .hero-carousel-section {
        padding: 1.5rem;
    }
    
    .btn-painel-pc,
    .btn-painel-android {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.6rem 0.9rem;
    }
}

.hero-text {
    width: 100%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}


.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 3px;
}

.title-highlight {
    background: linear-gradient(135deg, var(--cor-dourado) 0%, var(--cor-dourado-escuro) 50%, var(--cor-dourado) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 215, 0, 1);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    animation: gradientText 3s ease infinite;
    display: inline-block;
    padding: 0 0.5rem;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cor-dourado), var(--cor-dourado-escuro), var(--cor-dourado));
    background-size: 200% 100%;
    animation: gradientText 3s ease infinite;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cor-dourado);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: 1.5px;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cor-dourado-claro);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1.5px solid rgba(255, 215, 0, 0.25);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--cor-dourado);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.feature-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.hero-download {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-baixar-basica {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--cor-dourado) 0%, var(--cor-dourado-escuro) 100%);
    color: var(--cor-preto);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--cor-dourado);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transicao);
    position: relative;
    overflow: hidden;
}

.btn-baixar-basica::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-baixar-basica:hover::before {
    left: 100%;
}

.btn-baixar-basica:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.8),
        0 8px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--cor-dourado-claro) 0%, var(--cor-dourado) 100%);
}

.btn-baixar-basica:active {
    transform: translateY(-1px);
}

.hero-panels {
    width: 100%;
    max-width: 100%;
}

.hero-image {
    width: 100%;
}

.hero-carousels-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    /* OTIMIZADO - Melhorar renderização */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style;
}


@media (max-width: 768px) {
    .hero-carousels-wrapper {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-carousel-pc .hero-carousel-wrapper,
    .hero-carousel-android-hero .hero-carousel-wrapper {
        min-height: 60vh;
        max-height: 70vh;
        height: 70vh;
    }
    
    .hero-carousel-pc .hero-carousel-img,
    .hero-carousel-android-hero .hero-carousel-img {
        max-height: 65vh !important;
        min-height: 50vh !important;
    }
}

.hero-carousel-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    min-width: 0;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-carousel-section:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

/* Botões dentro dos painéis */
.btn-painel-pc,
.btn-painel-android {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-painel-pc {
    background: linear-gradient(135deg, var(--cor-dourado) 0%, var(--cor-dourado-escuro) 100%);
    color: var(--cor-preto);
    border: 2px solid var(--cor-dourado);
}

.btn-painel-pc:hover {
    background: linear-gradient(135deg, var(--cor-dourado-claro) 0%, var(--cor-dourado) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.btn-painel-android {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--cor-branco);
    border: 2px solid #4CAF50;
}

.btn-painel-android:hover {
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.5);
}

.hero-carousel-pc .hero-carousel,
.hero-carousel-android-hero .hero-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

.hero-carousel-section .hero-carousel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.hero-carousel-label {
    font-size: 1.4rem;
    color: var(--cor-dourado);
    text-align: center;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.hero-carousel-pc,
.hero-carousel-android-hero {
    max-width: 100%;
    width: 100%;
    position: relative;
    min-width: 0;
}

.hero-carousel-pc .hero-carousel,
.hero-carousel-android-hero .hero-carousel {
    width: 100%;
    max-width: 100%;
}

.hero-carousel-pc .hero-carousel-wrapper,
.hero-carousel-android-hero .hero-carousel-wrapper {
    min-height: auto;
    max-height: none;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    margin: 0;
}

.hero-carousel-pc .hero-carousel-img,
.hero-carousel-android-hero .hero-carousel-img {
    max-height: 80vh !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    min-width: 0;
    object-fit: contain !important;
    object-position: center center;
    display: block;
}

@media (max-width: 768px) {
    .hero-carousel-pc .hero-carousel-img,
    .hero-carousel-android-hero .hero-carousel-img {
        max-height: 400px;
    }
}

.btn-baixar-android {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--cor-branco);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #4CAF50;
    box-shadow: 
        0 0 30px rgba(76, 175, 80, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transicao);
    position: relative;
    overflow: hidden;
}

.btn-baixar-android::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-baixar-android:hover::before {
    left: 100%;
}

.btn-baixar-android:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 50px rgba(76, 175, 80, 0.8),
        0 8px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
}

.btn-baixar-android:active {
    transform: translateY(-1px);
}

/* Links de navegação rápida no menu */
.nav-catalogo-link {
    position: relative;
}

.nav-catalogo-link:hover {
    color: var(--cor-dourado);
}

@media (max-width: 768px) {
    .hero-download {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-baixar-basica,
    .btn-baixar-android {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   MODAL DE ESCOLHA DE DISPOSITIVO
   ============================================ */

.device-choice-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.98) !important;
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* backdrop-filter: blur(10px); */
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* -webkit-backdrop-filter: blur(10px); */
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: fadeIn 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.device-choice-modal.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.device-choice-modal.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.device-choice-content {
    background: var(--cor-cinza-escuro);
    border: 3px solid var(--cor-dourado);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.5),
        0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    position: relative;
    z-index: 100000;
    margin: auto;
}

.device-choice-title {
    font-size: 1.8rem;
    color: var(--cor-dourado);
    margin-bottom: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    font-weight: 700;
}

.device-choice-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.device-choice-btn {
    flex: 1;
    min-width: 150px;
    padding: 2rem 2.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 15px;
    color: var(--cor-texto);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transicao);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .device-choice-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .device-choice-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .device-choice-buttons {
        gap: 1rem;
        flex-direction: column;
    }
    
    .device-choice-btn {
        min-width: 100%;
        padding: 1.5rem 2rem;
        font-size: 1rem;
    }
}

.device-choice-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--cor-dourado);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.device-choice-btn:active {
    transform: translateY(-2px);
}

.device-choice-pc:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
}

.device-choice-mobile:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(69, 160, 73, 0.2) 100%);
    border-color: #4CAF50;
}

.device-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.device-choice-mobile .device-icon {
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.5));
}

.device-text {
    font-size: 1.5rem;
}

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

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

@media (max-width: 768px) {
    .device-choice-content {
        padding: 2rem 1.5rem;
    }
    
    .device-choice-title {
        font-size: 1.4rem;
    }
    
    .device-choice-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .device-choice-btn {
        width: 100%;
    }
    
    .device-icon {
        font-size: 3rem;
    }
}

/* Carrossel Hero */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: visible;
    background: transparent;
}

.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: transparent;
    padding: 20px 0;
    margin: 0;
    min-height: auto;
}

.hero-carousel-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    margin: 0;
    box-sizing: border-box;
    width: fit-content;
    height: fit-content;
    min-width: 0;
    min-height: 0;
    z-index: 1;
    background: transparent;
    max-width: 100%;
    /* OTIMIZADO - Melhorar renderização */
    contain: layout style paint;
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    max-height: 100%;
    pointer-events: none;
}

.hero-carousel-slide.active {
    opacity: 1;
    z-index: 3;
    position: relative;
    top: auto;
    left: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    pointer-events: auto;
    /* OTIMIZADO - Compositing layer para slide ativo */
    will-change: auto;
}

/* Bordas adaptáveis baseadas na orientação da imagem */
.hero-carousel-slide::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid var(--cor-dourado);
    border-radius: 16px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    pointer-events: none;
    z-index: -1;
    transition: all 0.3s ease;
    /* A borda se ajusta automaticamente ao tamanho da imagem */
    width: calc(100% + 6px);
    height: calc(100% + 6px);
}

.hero-carousel-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel-img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    min-width: 0;
    object-fit: contain;
    object-position: center center;
    display: block;
    border-radius: 12px;
    background: transparent;
    position: relative;
    z-index: 2;
    border: none;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    /* OTIMIZADO - Melhorar renderização */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--cor-dourado);
    color: var(--cor-dourado);
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* backdrop-filter: blur(10px); */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
    pointer-events: auto;
    user-select: none;
}

.hero-zoom-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--cor-dourado-claro);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.hero-carousel-slide:not(.active) .hero-zoom-btn {
    opacity: 0;
    pointer-events: none;
}

.hero-carousel-slide.active .hero-zoom-btn {
    opacity: 1;
    pointer-events: auto;
}


/* Garantir que o container do carrossel seja grande */
.hero-carousel-pc .hero-carousel,
.hero-carousel-android-hero .hero-carousel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* Ajustes de bordas baseados na orientação da imagem */
.hero-carousel-slide.img-portrait::before {
    /* Borda se ajusta ao formato vertical */
    border-radius: 20px;
}

.hero-carousel-slide.img-landscape::before {
    /* Borda se ajusta ao formato horizontal */
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .hero-carousel-img {
        max-height: 70vh;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .hero-carousel-img {
        max-height: 60vh;
        width: 100%;
    }
}

.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--cor-dourado);
    color: var(--cor-dourado);
    font-size: 2.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100 !important;
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* backdrop-filter: blur(10px); */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
    font-weight: 300;
    line-height: 1;
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
}

.hero-carousel-btn:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: var(--cor-dourado-claro);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.15);
}

.hero-carousel-prev {
    left: -70px;
}

.hero-carousel-next {
    right: -70px;
}

/* Ajustes para carrosséis do hero lado a lado */
.hero-carousel-pc .hero-carousel-prev,
.hero-carousel-android-hero .hero-carousel-prev {
    left: 8px;
}

.hero-carousel-pc .hero-carousel-next,
.hero-carousel-android-hero .hero-carousel-next {
    right: 8px;
}

@media (max-width: 1200px) {
    .hero-carousel-pc .hero-carousel-prev,
    .hero-carousel-android-hero .hero-carousel-prev {
        left: 5px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .hero-carousel-pc .hero-carousel-next,
    .hero-carousel-android-hero .hero-carousel-next {
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

/* Ajustes para botões do carrossel Android */
.android-carousel .hero-carousel-prev {
    left: 10px;
}

.android-carousel .hero-carousel-next {
    right: 10px;
}

@media (max-width: 768px) {
    .android-carousel .hero-carousel-prev {
        left: 5px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .android-carousel .hero-carousel-next {
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

.hero-carousel-dots {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    margin-top: 1rem;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Ajustes para dots do carrossel Android */
.android-carousel .hero-carousel-dots {
    position: relative;
    bottom: auto;
    margin-top: 1rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--cor-dourado);
    border-color: var(--cor-dourado);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    transform: scale(1.3);
}

.hero-dot:hover {
    background: rgba(255, 215, 0, 0.6);
    border-color: var(--cor-dourado);
    transform: scale(1.15);
}

@keyframes imgGlow {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 0.6),
            0 0 80px rgba(255, 215, 0, 0.4),
            0 0 120px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(255, 215, 0, 0.8),
            0 0 120px rgba(255, 215, 0, 0.6),
            0 0 180px rgba(255, 215, 0, 0.4);
    }
}


/* ============================================
   SEÇÕES
   ============================================ */

.section {
    padding: 100px 0;
    background-color: transparent;
}

.section-dark {
    background: var(--cor-preto-suave);
    background-color: var(--cor-preto-suave);
}

.section-download {
    background: linear-gradient(135deg, var(--cor-preto) 0%, var(--cor-cinza-escuro) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-video-avaliacoes {
    background: var(--cor-preto-suave);
    padding: 100px 0;
}

.video-avaliacoes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.video-section {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    align-items: flex-start;
    padding-top: 0;
    margin-top: 0;
}

.video-wrapper-bordered {
    width: 100%;
    max-width: 100%;
}

.avaliacoes-section {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 100px;
    align-items: stretch;
    height: fit-content;
    min-height: 0;
    max-height: 70vh;
    overflow: visible;
    align-self: start;
    padding-top: 0;
    margin-top: 0;
}

.avaliacoes-list::-webkit-scrollbar {
    width: 8px;
}

.avaliacoes-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.avaliacoes-list::-webkit-scrollbar-thumb {
    background: var(--cor-dourado);
    border-radius: 10px;
}

.avaliacoes-list::-webkit-scrollbar-thumb:hover {
    background: var(--cor-dourado-claro);
}

/* Botão para abrir modal de avaliações */
.avaliacoes-trigger-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.btn-ver-avaliacoes {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--cor-dourado) 0%, var(--cor-dourado-escuro) 100%);
    border: 2px solid var(--cor-dourado);
    border-radius: 50px;
    color: var(--cor-preto);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-ver-avaliacoes:hover {
    background: linear-gradient(135deg, var(--cor-dourado-claro) 0%, var(--cor-dourado) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.btn-ver-avaliacoes .btn-icon {
    font-size: 1.5rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

/* Modal de Avaliações */
.avaliacoes-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    pointer-events: none;
}

.avaliacoes-modal.show {
    display: flex;
    pointer-events: auto;
}

.avaliacoes-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* backdrop-filter: blur(10px); */
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* -webkit-backdrop-filter: blur(10px); */
    animation: fadeIn 0.3s ease;
}

.avaliacoes-modal-content {
    position: relative;
    z-index: 10001;
    background: var(--cor-preto-suave);
    border: 3px solid var(--cor-dourado);
    border-radius: 20px;
    padding: 3rem;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.3);
    animation: slideUp 0.4s ease;
    box-sizing: border-box;
}

.avaliacoes-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--cor-dourado);
    color: var(--cor-dourado);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s ease;
    line-height: 1;
}

.avaliacoes-modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--cor-dourado-claro);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.avaliacoes-list-modal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.avaliacoes-list-modal::-webkit-scrollbar {
    width: 10px;
}

.avaliacoes-list-modal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.avaliacoes-list-modal::-webkit-scrollbar-thumb {
    background: var(--cor-dourado);
    border-radius: 10px;
}

.avaliacoes-list-modal::-webkit-scrollbar-thumb:hover {
    background: var(--cor-dourado-claro);
}

@media (max-width: 768px) {
    .avaliacoes-modal-content {
        padding: 2rem 1.5rem;
        max-height: 95vh;
    }
    
    .avaliacoes-list-modal {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .btn-ver-avaliacoes {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .avaliacoes-modal-video {
        margin-bottom: 2rem;
        padding: 0;
    }
    
    .avaliacoes-modal-video .video-player {
        max-height: 40vh;
    }
}

/* Vídeo no Modal de Avaliações */
.avaliacoes-modal-video {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.avaliacoes-modal-video .video-wrapper-bordered {
    max-width: 100%;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.avaliacoes-modal-video .video-player {
    width: 100%;
    height: auto;
    max-height: 50vh;
    border-radius: 10px;
}

.avaliacoes-section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--cor-texto);
    width: 100%;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    background: transparent;
    z-index: 10;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 1rem;
    flex-shrink: 0;
    line-height: 1.2;
}

.avaliacoes-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    align-items: stretch;
    flex: 1;
    min-height: 200px;
    max-height: calc(70vh - 80px);
    height: calc(70vh - 80px);
}

.avaliacoes-list::-webkit-scrollbar {
    width: 8px;
}

.avaliacoes-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.avaliacoes-list::-webkit-scrollbar-thumb {
    background: var(--cor-dourado);
    border-radius: 10px;
}

.avaliacoes-list::-webkit-scrollbar-thumb:hover {
    background: var(--cor-dourado-claro);
}

.section-video {
    background: var(--cor-preto-suave);
    padding: 100px 0;
}


/* Fundo com pontos dourados (estrelas) */
.section-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--cor-dourado), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--cor-dourado), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--cor-dourado), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--cor-dourado), transparent),
        radial-gradient(2px 2px at 90% 40%, var(--cor-dourado), transparent),
        radial-gradient(1px 1px at 33% 60%, var(--cor-dourado), transparent),
        radial-gradient(1px 1px at 15% 80%, var(--cor-dourado), transparent),
        radial-gradient(2px 2px at 70% 20%, var(--cor-dourado), transparent),
        radial-gradient(1px 1px at 40% 90%, var(--cor-dourado), transparent),
        radial-gradient(1px 1px at 25% 15%, var(--cor-dourado), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    opacity: 0.3;
    animation: estrelasAnimacao 20s linear infinite;
    pointer-events: none;
}

@keyframes estrelasAnimacao {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* ============================================
   SEÇÃO VÍDEO
   ============================================ */

.video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-title {
    font-size: 1.5rem;
    color: var(--cor-dourado);
    margin-bottom: 2rem;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.7),
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 45px rgba(255, 215, 0, 0.3);
    font-weight: 800;
    text-transform: none;
    letter-spacing: 1.5px;
    text-align: center;
    position: relative;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border-radius: 14px;
    border: 3px solid var(--cor-dourado);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    line-height: 1.4;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.video-title.animated-title {
    animation: titlePulse 3s ease-in-out infinite;
    overflow: hidden;
}

@keyframes titlePulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.5),
            inset 0 0 20px rgba(255, 215, 0, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.8),
            0 0 80px rgba(255, 215, 0, 0.4),
            inset 0 0 30px rgba(255, 215, 0, 0.2);
        transform: scale(1.02);
    }
}

.video-title.animated-title .title-line-1,
.video-title.animated-title .title-line-2 {
    display: block;
    animation: slideInText 1s ease-out;
    animation-fill-mode: both;
}

.video-title.animated-title .title-line-2 {
    animation-delay: 0.3s;
    opacity: 0;
}

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

.video-title-line {
    display: block;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.9),
        0 0 30px rgba(255, 215, 0, 0.7),
        0 0 45px rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.video-title.animated-title:hover .video-title-line {
    transform: scale(1.03);
    text-shadow: 
        0 0 25px rgba(255, 215, 0, 1),
        0 0 50px rgba(255, 215, 0, 0.9),
        0 0 75px rgba(255, 215, 0, 0.7);
}

.symbol-red {
    color: #ff0000;
    text-shadow: 
        0 0 10px rgba(255, 0, 0, 0.8),
        0 0 20px rgba(255, 0, 0, 0.6),
        0 0 30px rgba(255, 0, 0, 0.4);
    font-weight: 900;
}

@keyframes titlePulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.3),
            inset 0 0 20px rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.6),
            inset 0 0 30px rgba(255, 215, 0, 0.2);
    }
}

.video-wrapper-bordered {
    position: relative;
    padding: 4px;
    background: linear-gradient(45deg, 
        var(--cor-dourado), 
        var(--cor-dourado-escuro), 
        var(--cor-dourado-claro),
        var(--cor-dourado));
    background-size: 400% 400%;
    border-radius: 15px;
    box-shadow: var(--sombra-dourada-grande);
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
}

.video-wrapper-bordered::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: var(--cor-preto);
    border-radius: 12px;
    z-index: 1;
}

.video-player {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    display: block;
    background: var(--cor-preto);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--cor-texto);
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.download-header-wrapper .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--cor-dourado);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    text-transform: none;
}

@media (max-width: 768px) {
    .download-header-wrapper .section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .download-intro-text {
        font-size: 1.1rem;
        line-height: 1.9;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        padding: 0;
    }
}

.title-accent {
    color: var(--cor-dourado);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ============================================
   AVALIAÇÕES
   ============================================ */

.section-avaliacoes {
    background: var(--cor-preto-suave);
    padding: 100px 0;
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.avaliacoes-list .avaliacao-card {
    margin-bottom: 0;
}

.avaliacao-card {
    background: var(--cor-cinza-escuro);
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.2s ease;
    /* OTIMIZADO - Melhorar renderização */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style paint;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-shrink: 0;
}

.avaliacao-card:hover {
    border-color: var(--cor-dourado);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
}

.avaliacao-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.avaliacao-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--cor-dourado);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    flex-shrink: 0;
}

.avaliacao-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avaliacao-info h4 {
    color: var(--cor-dourado);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.avaliacao-stars {
    font-size: 1.1rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.avaliacao-texto {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
    font-style: italic;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-left: none;
    position: relative;
    flex: 1;
    margin: 0;
}

.avaliacao-texto::before {
    content: '"';
    font-size: 3rem;
    color: var(--cor-dourado);
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.3;
    font-family: serif;
}

/* ============================================
   SEÇÃO SEGURANÇA - NÃO DÁ BAN
   ============================================ */

.section-complementos {
    background: var(--cor-preto-suave);
    padding: 100px 0;
}

.complementos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.complemento-card {
    background: var(--cor-cinza-escuro);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.complemento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.complemento-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.complemento-titulo {
    font-size: 1.3rem;
    color: var(--cor-dourado);
    margin-bottom: 1rem;
    font-weight: 700;
}

.complemento-descricao {
    color: var(--cor-texto);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.btn-complemento {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-complemento-azul {
    background: #0066ff;
    color: var(--cor-branco);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.btn-complemento-azul:hover {
    background: #0052cc;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.7);
    transform: scale(1.05);
}

.selo-garantia {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 2px solid var(--cor-dourado);
}

.selo-texto {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cor-dourado);
}

.selo-subtexto {
    font-size: 0.9rem;
    color: var(--cor-texto);
    opacity: 0.8;
}

.depoimento-complemento {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
}

.depoimento-avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cor-dourado);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.depoimento-content {
    flex: 1;
}

.depoimento-texto {
    color: var(--cor-texto);
    font-style: italic;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.depoimento-autor {
    color: var(--cor-dourado);
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cor-dourado);
}

.turbo-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 10px;
    border: 2px solid rgba(255, 165, 0, 0.4);
    margin-top: 1rem;
}

.turbo-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.turbo-text {
    font-size: 1rem;
    font-weight: 700;
    color: #ffa500;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.progresso-wrapper {
    width: 100%;
}

.progresso-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--cor-texto);
}

.progresso-porcentagem {
    color: var(--cor-dourado);
    font-weight: 700;
}

.progresso-bar {
    width: 100%;
    height: 25px;
    background: var(--cor-preto);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.progresso-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cor-dourado) 0%, var(--cor-dourado-escuro) 100%);
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.grafico-mini {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 1rem;
    height: 120px;
    padding: 1rem 0;
}

.grafico-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.grafico-label {
    font-size: 0.85rem;
    color: var(--cor-texto);
    font-weight: 600;
}

.grafico-bar {
    width: 100%;
    height: 100px;
    background: var(--cor-preto);
    border-radius: 8px 8px 0 0;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.grafico-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 6px 6px 0 0;
    transition: height 1s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.cpu-fill {
    background: linear-gradient(180deg, #00ff00 0%, #00cc00 100%);
}

.ram-fill {
    background: linear-gradient(180deg, #0066ff 0%, #0052cc 100%);
}

.fps-fill {
    background: linear-gradient(180deg, var(--cor-dourado) 0%, var(--cor-dourado-escuro) 100%);
}

@media (max-width: 968px) {
    .complementos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .complementos-grid {
        grid-template-columns: 1fr;
    }
    
    .grafico-mini {
        height: 100px;
    }
}

.section-seguranca {
    background: linear-gradient(135deg, var(--cor-preto) 0%, var(--cor-preto-suave) 100%);
    padding: 120px 0;
}

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

.seguranca-texto {
    text-align: center;
    margin-bottom: 4rem;
}

.seguranca-titulo {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cor-texto);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.seguranca-subtitulo {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seguranca-destaque {
    color: var(--cor-dourado);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.seguranca-box {
    background: var(--cor-cinza-escuro);
    border-radius: 20px;
    padding: 3rem;
    border: 3px solid var(--cor-dourado);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.5);
}

.seguranca-box-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    align-items: center;
}

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

.seguranca-icone {
    font-size: 8rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.seguranca-box-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.seguranca-box-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cor-dourado);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    margin: 0;
}

.seguranca-box-texto {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .seguranca-titulo {
        font-size: 2rem;
    }
    
    .seguranca-subtitulo {
        font-size: 1.2rem;
    }
    
    .seguranca-box-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .seguranca-icone {
        font-size: 5rem;
    }
    
    .seguranca-box-titulo {
        font-size: 2rem;
    }
}

/* ============================================
   FAQ - PERGUNTAS FREQUENTES
   ============================================ */

.section-faq {
    background: var(--cor-preto-suave);
    padding: 100px 0;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-column-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: var(--cor-dourado);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.faq-column-android .faq-column-title {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.faq-item {
    background: var(--cor-cinza-escuro);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    transition: var(--transicao);
}

.faq-item:hover {
    border-color: var(--cor-dourado);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: var(--transicao);
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
    color: var(--cor-texto);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--cor-dourado);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.faq-toggle {
    font-size: 2rem;
    color: var(--cor-dourado);
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transicao);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

@media (max-width: 1200px) {
    .faq-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .faq-column-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .faq-columns {
        gap: 2rem;
    }
    
    .faq-column-title {
        font-size: 1.2rem;
        padding: 0.8rem;
    }
    
    .faq-item {
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

/* ============================================
   RECURSOS / FEATURES
   ============================================ */

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

.feature-card {
    background: var(--cor-cinza-escuro);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transicao);
    box-shadow: var(--sombra-padrao);
}

.feature-card:hover {
    border-color: var(--cor-dourado);
    box-shadow: var(--sombra-dourada-grande);
    transform: translateY(-10px);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.feature-card h3 {
    color: var(--cor-dourado);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ============================================
   SEÇÃO DOWNLOAD - CARD COM IMAGEM E BOTÃO
   ============================================ */

.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.download-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

@media (max-width: 768px) {
    .download-header-wrapper {
        gap: 1.2rem;
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .download-header-wrapper .section-title {
        font-size: 1.6rem;
    }
    
    .download-intro-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.download-intro {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.download-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.download-intro-text strong {
    color: var(--cor-dourado);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.highlight-pc {
    color: var(--cor-dourado);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.highlight-android {
    color: #4CAF50;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}

.section-title-inline {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
    text-align: center;
    width: 100%;
}

.discord-text {
    color: #5865F2;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

.btn-discord-section {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: #5865F2;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #5865F2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transicao);
}

.btn-discord-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: #7289DA;
}

.btn-discord-section:active {
    transform: translateY(-1px);
}

.discord-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* ============================================
   NAVEGAÇÃO ENTRE CATÁLOGOS
   ============================================ */

.catalogos-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0 1.5rem;
    flex-wrap: wrap;
    padding: 0;
    background: transparent;
    border: none;
}

.catalogo-nav-btn {
    background: var(--cor-cinza-escuro);
    border: 2px solid rgba(255, 215, 0, 0.4);
    color: var(--cor-texto);
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.catalogo-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: -1;
}

.catalogo-nav-btn:hover::before {
    left: 100%;
}

.catalogo-nav-btn:hover {
    border-color: var(--cor-dourado);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.1);
}

.catalogo-nav-btn.active {
    background: var(--cor-dourado);
    border-color: var(--cor-dourado);
    color: var(--cor-preto);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.catalogo-nav-btn.active::before {
    display: none;
}

.catalogo-content {
    display: none;
    animation: fadeIn 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.catalogo-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

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

.catalogo-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 2.5rem;
    color: var(--cor-dourado);
    width: 100%;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .catalogo-section-title {
        font-size: 1.8rem;
        margin: 2rem 0 2.5rem;
        padding: 1.2rem 1.5rem;
        letter-spacing: 1px;
    }
    
    .catalogos-nav {
        gap: 1rem;
        padding: 1.5rem;
        margin: 2rem 0 2rem;
    }
    
    .catalogo-nav-btn {
        padding: 1rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .download-header-wrapper {
        padding: 2rem 1.5rem;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .download-intro {
        padding: 1.5rem;
    }
}

/* ============================================
   LAYOUT ANDROID - CARD + CARROSSEL LADO A LADO
   ============================================ */

.android-layout-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    align-items: start;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
}

@media (max-width: 1200px) {
    .android-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .android-carousel-wrapper {
        order: 2;
    }
    
    .android-layout-wrapper .catalogo-card {
        order: 1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .android-layout-wrapper {
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.android-carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.android-carousel-title {
    font-size: 1.5rem;
    color: var(--cor-dourado);
    text-align: center;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.android-carousel-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

.android-carousel {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Ajustes para imagens verticais no carrossel Android */
.android-carousel .hero-carousel-wrapper {
    min-height: 600px;
    max-height: 800px;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.android-carousel .hero-carousel-slide {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.android-carousel .hero-carousel-img {
    max-width: 100%;
    max-height: 750px;
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
    display: block;
    border-radius: 16px;
    background: transparent;
    margin: 0 auto;
}

/* Melhor tratamento para imagens verticais (portrait) */
.android-carousel .hero-carousel-img[src*="foto"] {
    max-height: 750px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .android-carousel .hero-carousel-wrapper {
        min-height: 500px;
        max-height: 700px;
        height: 700px;
    }
    
    .android-carousel .hero-carousel-img {
        max-height: 650px;
    }
    
    .hero-carousel-pc .hero-carousel-wrapper,
    .hero-carousel-android-hero .hero-carousel-wrapper {
        min-height: 70vh;
        max-height: 80vh;
        height: 80vh;
    }
    
    .hero-carousel-pc .hero-carousel-img,
    .hero-carousel-android-hero .hero-carousel-img {
        max-height: 75vh !important;
        min-height: 60vh !important;
    }
    
    .hero-carousels-wrapper {
        gap: 2rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    .android-carousel .hero-carousel-wrapper {
        min-height: 400px;
        max-height: 600px;
        height: 600px;
    }
    
    .android-carousel .hero-carousel-img {
        max-height: 550px;
    }
    
    .hero-carousel-pc .hero-carousel-wrapper,
    .hero-carousel-android-hero .hero-carousel-wrapper {
        min-height: 600px;
        max-height: 800px;
        height: 800px;
    }
    
    .hero-carousel-pc .hero-carousel-img,
    .hero-carousel-android-hero .hero-carousel-img {
        max-height: 750px;
    }
    
    .hero-carousels-wrapper {
        gap: 2rem;
        padding: 0;
    }
}

/* Responsividade para layout Android */
@media (max-width: 1200px) {
    .android-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .android-carousel-wrapper {
        order: 2;
    }
    
    .android-layout-wrapper .catalogo-card {
        order: 1;
    }
    
    .android-carousel .hero-carousel-img {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .android-layout-wrapper {
        padding: 0 1rem;
    }
    
    .android-carousel .hero-carousel-img {
        max-height: 400px;
        min-width: 250px;
    }
    
    .android-carousel .hero-carousel-wrapper {
        min-height: 400px;
        max-height: 500px;
    }
}

/* ============================================
   CATÁLOGOS - 3 CARDS LADO A LADO
   ============================================ */

.catalogos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
    align-items: start;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    justify-items: start;
}

/* Quando há exatamente 3 cards (PAINEL PC), centraliza */
.catalogos-grid:has(.catalogo-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    justify-items: center;
    justify-content: center;
}

/* Quando há 4 cards (3 PC + 1 Android), ajusta o grid */
.catalogos-grid:has(.catalogo-card:nth-child(4)) {
    grid-template-columns: repeat(4, 1fr);
    justify-items: start;
}

@media (max-width: 1600px) {
    .catalogos-grid {
        gap: 1.25rem;
    }
    
    .catalogos-grid:has(.catalogo-card:nth-child(3):last-child) {
        max-width: 1100px;
    }
    
    .catalogos-grid:has(.catalogo-card:nth-child(4)) {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1400px) {
    .catalogos-grid {
        gap: 2rem;
    }
    
    .catalogos-grid:has(.catalogo-card:nth-child(3):last-child) {
        max-width: 1000px;
    }
}

@media (max-width: 1400px) {
    .catalogos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0;
    }
    
    .catalogos-grid:has(.catalogo-card:nth-child(3):last-child) {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        justify-items: center;
    }
    
    .catalogos-grid:has(.catalogo-card:nth-child(4)) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .catalogos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .catalogos-grid:has(.catalogo-card:nth-child(4)) {
        grid-template-columns: 1fr;
    }
}

/* Quando há apenas 1 card, centraliza */
.catalogos-grid:has(.catalogo-card:only-child) {
    grid-template-columns: 1fr;
    max-width: 500px;
}

/* Quando há 2 cards */
.catalogos-grid:has(.catalogo-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
}

@media (max-width: 1200px) {
    .catalogos-grid {
        gap: 2rem;
        padding: 0 1.5rem;
        max-width: 1200px;
    }
}

@media (max-width: 968px) {
    .catalogos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 700px;
        padding: 0 1rem;
    }
    
    .catalogos-grid:has(.catalogo-card:only-child) {
        max-width: 500px;
    }
    
    .catalogos-grid:has(.catalogo-card:nth-child(2):last-child) {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.catalogo-card {
    position: relative;
    background: var(--cor-cinza-escuro);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    /* OTIMIZADO - Melhorar renderização e eliminar piscadas */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style paint;
    will-change: transform;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: visible;
    width: 100%;
    min-height: auto;
    box-sizing: border-box;
    height: 100%;
    max-height: fit-content;
}

@media (max-width: 768px) {
    .catalogo-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
}


.catalogo-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--cor-dourado);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
    background: rgba(30, 30, 30, 0.95);
}

.catalogo-vip {
    border-color: var(--cor-dourado);
    box-shadow: var(--sombra-dourada);
}

.catalogo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--cor-dourado) 0%, var(--cor-dourado-escuro) 100%);
    color: var(--cor-preto);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.catalogo-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
}

.catalogo-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cor-dourado);
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.catalogo-titulo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cor-texto);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.2rem;
}

.catalogo-basico-titulo {
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.catalogo-vip-titulo {
    color: var(--cor-dourado);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.catalogo-gratis-titulo {
    color: #2196F3;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
}

.catalogo-badge-basico,
.catalogo-badge-vip,
.catalogo-badge-gratis {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalogo-badge-basico {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.catalogo-badge-vip {
    background: rgba(255, 215, 0, 0.2);
    color: var(--cor-dourado);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.catalogo-badge-gratis {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
    border: 1px solid rgba(33, 150, 243, 0.4);
}

.catalogo-image {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-height: 150px;
    object-fit: cover;
}

.catalogo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalogo-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transicao);
}

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

.catalogo-descricao {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid var(--cor-dourado);
    line-height: 1.5;
}

.catalogo-descricao p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.catalogo-basico .catalogo-descricao {
    border-left-color: #4CAF50;
}

.catalogo-vip .catalogo-descricao {
    border-left-color: var(--cor-dourado);
}

.catalogo-gratis .catalogo-descricao {
    border-left-color: #2196F3;
}

.catalogo-descricao p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.catalogo-descricao strong {
    color: var(--cor-dourado);
    font-size: 1.05rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.catalogo-basico .catalogo-descricao strong {
    color: #4CAF50;
}

.catalogo-gratis .catalogo-descricao strong {
    color: #2196F3;
}

.catalogo-features-title {
    margin-bottom: 0.75rem;
    padding: 0.6rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.catalogo-features-title h5 {
    color: var(--cor-dourado);
    margin: 0;
}

.catalogo-basico .catalogo-features-title {
    background: rgba(76, 175, 80, 0.1);
}

.catalogo-gratis .catalogo-features-title {
    background: rgba(33, 150, 243, 0.1);
}

.catalogo-features-title h5 {
    color: var(--cor-dourado);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.catalogo-basico .catalogo-features-title h5 {
    color: #4CAF50;
}

.catalogo-gratis .catalogo-features-title h5 {
    color: #2196F3;
}

.catalogo-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 8px;
    padding-left: 0;
    gap: 0.4rem;
    min-height: 200px;
}

.catalogo-features.expanded {
    max-height: 600px;
    overflow-y: auto;
}

/* Cards sem botão ver mais também ficam com altura consistente */
.catalogo-basico .catalogo-features,
.catalogo-gratis .catalogo-features {
    max-height: 350px;
    overflow-y: auto;
}

.catalogo-features::-webkit-scrollbar {
    width: 6px;
}

.catalogo-features::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.catalogo-features::-webkit-scrollbar-thumb {
    background: var(--cor-dourado);
    border-radius: 10px;
}

.catalogo-features::-webkit-scrollbar-thumb:hover {
    background: var(--cor-dourado-escuro);
}

.feature-extra {
    display: none;
}

.catalogo-features.expanded .feature-extra {
    display: flex;
}

.btn-ver-mais {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: var(--cor-dourado);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transicao);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-ver-mais:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--cor-dourado);
    transform: translateY(-2px);
}

.ver-mais-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.btn-ver-mais.active .ver-mais-icon {
    transform: rotate(180deg);
}

.catalogo-basico .btn-ver-mais {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.catalogo-basico .btn-ver-mais:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.catalogo-gratis .btn-ver-mais {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.3);
    color: #2196F3;
}

.catalogo-gratis .btn-ver-mais:hover {
    background: rgba(33, 150, 243, 0.2);
    border-color: #2196F3;
}

.catalogo-features li {
    padding: 0.5rem 0.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.3;
    flex-shrink: 0;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.catalogo-features li:hover {
    background: rgba(255, 255, 255, 0.03);
}

.catalogo-features li:last-child {
    border-bottom: none;
}

.feature-vip {
    background: rgba(255, 215, 0, 0.05);
    border-left: 2px solid var(--cor-dourado);
    padding-left: 0.5rem !important;
    font-weight: 500;
}

.catalogo-resultado {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-left: 3px solid var(--cor-dourado);
}

.catalogo-resultado p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.catalogo-resultado strong {
    color: var(--cor-dourado);
}

.catalogo-basico .catalogo-resultado {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.catalogo-gratis .catalogo-resultado {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.3);
}

.catalogo-resultado p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.catalogo-resultado strong {
    color: var(--cor-dourado);
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    margin-right: 0.3rem;
}

.catalogo-basico .catalogo-resultado strong {
    color: #4CAF50;
}

.catalogo-gratis .catalogo-resultado strong {
    color: #2196F3;
}

/* Estilos para Painel Android */
.catalogo-android {
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
    position: relative;
}

/* Card Android no catálogo mobile - centralizado */
#catalogo-mobile .catalogo-android {
    max-width: 500px;
    margin: 0 auto;
}

/* Card Android no grid principal - destaque visual */
#catalogo-principal .catalogo-android {
    border-width: 3px;
    border-color: #4CAF50;
    box-shadow: 0 0 25px rgba(76, 175, 80, 0.4);
    max-width: 100%;
    width: 100%;
}

#catalogo-principal .catalogo-android:hover {
    border-color: #4CAF50;
    box-shadow: 0 0 35px rgba(76, 175, 80, 0.6);
    transform: translateY(-5px);
}

.catalogo-badge-android {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--cor-branco);
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 5;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

/* Garantir que o header não seja sobreposto pelo badge */
.catalogo-android .catalogo-header {
    position: relative;
    z-index: 2;
    padding-top: 10px;
    margin-top: 0;
}

/* Ajustar badge para não sobrepor o título */
#catalogo-mobile .catalogo-badge-android,
#catalogo-principal .catalogo-android .catalogo-badge-android {
    top: 8px;
    right: 8px;
    z-index: 1;
}

.catalogo-android:hover {
    border-color: #4CAF50;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.catalogo-android-titulo {
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    font-size: 1.4rem;
}

.catalogo-android .catalogo-descricao {
    border-left-color: #4CAF50;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

.catalogo-android .catalogo-descricao strong {
    color: #4CAF50;
    font-size: 0.95rem;
}

.catalogo-android .catalogo-descricao p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.catalogo-android .catalogo-features-title {
    background: rgba(76, 175, 80, 0.1);
    padding: 0.6rem;
    margin-bottom: 0.8rem;
}

.catalogo-android .catalogo-features-title h5 {
    color: #4CAF50;
    font-size: 0.95rem;
}

.catalogo-android .catalogo-features {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
}

.catalogo-android .catalogo-features li {
    padding: 0.5rem 0.4rem;
    font-size: 0.85rem;
}

.catalogo-android .catalogo-resultado {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    padding: 0.8rem;
    margin: 1rem 0;
}

.catalogo-android .catalogo-resultado p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.catalogo-android .catalogo-resultado strong {
    color: #4CAF50;
}

.catalogo-android .aviso-key {
    margin: 1rem 0;
    padding: 0.8rem;
}

.catalogo-android .aviso-key-text {
    font-size: 0.85rem;
    line-height: 1.4;
}

.catalogo-android .btn-comprar {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Scrollbar customizada para o card Android */
.catalogo-android .catalogo-features::-webkit-scrollbar {
    width: 6px;
}

.catalogo-android .catalogo-features::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.catalogo-android .catalogo-features::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 10px;
}

.catalogo-android .catalogo-features::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}

.btn-comprar-android {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-color: #4CAF50;
    color: var(--cor-branco);
}

.btn-comprar-android:hover {
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.6);
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.catalogo-preco {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.preco-antigo {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.preco-novo {
    display: block;
    color: var(--cor-dourado);
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.preco-gratis {
    display: block;
    color: #4CAF50;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.aviso-key {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: var(--transicao);
}

.aviso-key:hover {
    border-color: var(--cor-dourado);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.aviso-key-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.aviso-key-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    line-height: 1.4;
    flex: 1;
}

.aviso-key-text strong {
    color: var(--cor-dourado);
    font-weight: 600;
}

.btn-comprar {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cor-branco);
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: var(--transicao);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    font-family: inherit;
    margin-top: auto;
    flex-shrink: 0;
    align-self: flex-end;
}

.btn-comprar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
}

.btn-comprar-vip {
    background: linear-gradient(135deg, var(--cor-dourado) 0%, var(--cor-dourado-escuro) 100%);
    color: var(--cor-preto);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-comprar-vip:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, var(--cor-dourado-escuro) 0%, var(--cor-dourado) 100%);
}

.btn-comprar-gratis {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
}

.btn-comprar-gratis:hover {
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.6);
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
}

/* Botão VIP com estilo especial */
.btn-download-vip {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5),
                0 0 0 0 rgba(255, 215, 0, 0.7);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Botão Grátis com estilo especial */
.btn-download-gratis {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4),
                0 0 0 0 rgba(76, 175, 80, 0.7);
}

.btn-download-gratis:hover {
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6),
                0 0 0 0 rgba(76, 175, 80, 0.7);
    animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6),
                    0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6),
                    0 0 0 15px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6),
                    0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.download-card {
    position: relative;
    max-width: 600px;
    width: 100%;
    padding: 30px;
    background: var(--cor-cinza-escuro);
    border-radius: 20px;
    box-shadow: var(--sombra-grande);
    animation: cardEntrada 0.8s ease-out;
}

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

/* Borda animada dourada */
.download-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--cor-dourado), 
        var(--cor-dourado-escuro), 
        var(--cor-dourado-claro),
        var(--cor-dourado));
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    filter: blur(4px);
    opacity: 0.6;
}


.download-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.6), 
        rgba(255, 165, 0, 0.6), 
        rgba(255, 215, 0, 0.6));
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.4;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-dourada-grande);
}

/* Container da imagem */
.download-image-wrapper {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--sombra-dourada);
    position: relative;
    background: var(--cor-preto);
}

.download-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transicao);
}

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

/* Efeito de brilho na imagem */
.download-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.3), 
        transparent);
    animation: brilho 3s infinite;
}

@keyframes brilho {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Botão de Download Chamativo */
.btn-download {
    width: 100%;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cor-preto);
    background: linear-gradient(135deg, var(--cor-dourado) 0%, var(--cor-dourado-escuro) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4),
                0 0 0 0 rgba(255, 215, 0, 0.7);
    transition: var(--transicao);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: inherit;
}

/* Efeito de brilho no botão */
.btn-download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-download:hover::before {
    width: 300px;
    height: 300px;
}

.btn-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6),
                0 0 0 0 rgba(255, 215, 0, 0.7);
    animation: pulse 1.5s infinite;
}

.btn-download:active {
    transform: translateY(-1px) scale(0.98);
}

/* Animação de pulso no botão */
@keyframes pulse {
    0% {
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6),
                    0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6),
                    0 0 0 15px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6),
                    0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.btn-content {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.download-icon {
    transition: var(--transicao);
}

.btn-download:hover .download-icon {
    transform: translateY(3px);
    animation: downloadBounce 1s infinite;
}

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

.btn-text {
    font-weight: 700;
}

/* Informações do Download */
.download-info {
    max-width: 600px;
    text-align: center;
}

.download-info h3 {
    color: var(--cor-dourado);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.info-list li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* ============================================
   SEÇÃO SOBRE
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-paragraph strong {
    color: var(--cor-dourado);
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cor-dourado);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.about-image {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.about-image {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--sombra-dourada-grande);
    border: 2px solid var(--cor-dourado);
}

/* Estilos para nova seção Sobre com destaque */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid var(--cor-dourado);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.about-title-highlight {
    font-size: 2rem;
    color: var(--cor-dourado);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.about-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
    transform: translateY(-2px);
}

.about-section-title {
    font-size: 1.5rem;
    color: var(--cor-dourado);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.about-features-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-features-list li:last-child {
    border-bottom: none;
}

.about-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cor-dourado);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.about-features-list li strong {
    color: var(--cor-dourado);
    font-weight: 600;
}

/* Responsividade para seção Sobre */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-title-highlight {
        font-size: 1.5rem;
    }
    
    .about-section-title {
        font-size: 1.2rem;
    }
    
    .about-section {
        padding: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

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

.footer {
    background: var(--cor-preto);
    border-top: 2px solid var(--cor-dourado);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--cor-dourado);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-domain {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.domain-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.domain-link {
    color: #0066ff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transicao);
}

.domain-link:hover {
    color: #0052cc;
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transicao);
}

.footer-section ul li a:hover {
    color: var(--cor-dourado);
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: var(--cor-branco);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transicao);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #4752C4 0%, #5865F2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.btn-discord span {
    font-size: 1.2rem;
}

.footer-discord-text {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        padding: 2rem;
        transition: var(--transicao);
        box-shadow: var(--sombra-grande);
        border-top: 2px solid var(--cor-dourado);
    }

    .nav-menu.active {
        left: 0;
    }

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


    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-carousel {
        max-width: 100%;
    }
    
    .hero-carousel-wrapper {
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .video-avaliacoes-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .video-section {
        position: static;
    }
    
    .avaliacoes-section {
        position: static;
        max-height: none;
    }
    
    .avaliacoes-list {
        gap: 1.25rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        padding: 20px;
    }

    .btn-download {
        padding: 16px 30px;
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .catalogos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
}

/* ============================================
   MODAL DE VISUALIZAÇÃO AMPLIADA DE IMAGENS
   ============================================ */

.image-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 10001 !important;
    display: none;
    align-items: center !important;
    justify-content: center !important;
    animation: fadeIn 0.3s ease;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
}

.image-modal.show {
    display: flex !important;
    pointer-events: auto !important;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* backdrop-filter: blur(10px); */
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* -webkit-backdrop-filter: blur(10px); */
    z-index: 10001;
}

.image-modal-content {
    position: absolute !important;
    z-index: 10002 !important;
    max-width: 90vw;
    max-height: 90vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem;
    box-sizing: border-box;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.image-modal-img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.3);
    display: block;
    margin: 0 auto;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--cor-dourado);
    color: var(--cor-dourado);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    transition: all 0.3s ease;
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* backdrop-filter: blur(10px); */
    line-height: 1;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
    pointer-events: auto !important;
    user-select: none;
}

.image-modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--cor-dourado-claro);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.image-modal-prev,
.image-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--cor-dourado);
    color: var(--cor-dourado);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    transition: all 0.3s ease;
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* backdrop-filter: blur(10px); */
    line-height: 1;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
    font-weight: 300;
    pointer-events: auto !important;
    user-select: none;
}

.image-modal-prev {
    left: 20px;
}

.image-modal-next {
    right: 20px;
}

.image-modal-prev:hover,
.image-modal-next:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: var(--cor-dourado-claro);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.15);
}

.image-modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--cor-dourado);
    color: var(--cor-dourado);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    z-index: 10003;
    /* OTIMIZADO - backdrop-filter removido para performance */
    /* backdrop-filter: blur(10px); */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
    text-align: center;
    min-width: 80px;
}

@media (max-width: 768px) {
    .image-modal-content {
        padding: 1rem;
    }
    
    .image-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .hero-zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        top: 5px;
        right: 5px;
    }

    .catalogo-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .preco-novo {
        font-size: 2rem;
    }

    .video-title {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
        padding: 1rem 1.2rem;
        gap: 0.3rem;
    }
    
    .video-title-line {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-download {
        padding: 80px 0;
    }

    .btn-download {
        padding: 14px 20px;
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

/* ============================================
   BOTÃO VOLTAR AO TOPO
   ============================================ */

.scroll-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--cor-dourado) 0%, var(--cor-dourado-escuro) 100%);
    border: 2px solid var(--cor-dourado);
    border-radius: 50%;
    color: var(--cor-preto);
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 99999 !important;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    opacity: 0.7 !important;
    padding: 0;
    line-height: 1;
    pointer-events: auto !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.scroll-to-top.show {
    display: flex !important;
    opacity: 0.7 !important;
    visibility: visible !important;
}

.scroll-to-top:hover {
    opacity: 1 !important;
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--cor-dourado-claro) 0%, var(--cor-dourado) 100%);
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05) !important;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.5);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.scroll-to-top span {
    line-height: 1;
    display: block;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}
