<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Customização da seleção de texto */
::selection {
    background: #ff6b35;
    color: white;
    text-shadow: none;
}

::-moz-selection {
    background: #ff6b35;
    color: white;
    text-shadow: none;
}

html, body {
    height: 100%;
    font-family: 'Roboto', Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

/* Páginas principais (com vídeo) - com scroll para mostrar footer */
body.home-page {
    overflow-y: auto;
    overflow-x: hidden;
}

/* Páginas internas - com scroll */
body.internal-page {
    overflow-y: auto;
    overflow-x: hidden;
    background: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Container do vídeo de fundo */
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    background: #000; /* Fallback caso o vídeo não carregue */
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Garantir cobertura total sem bordas pretas */
    object-fit: cover;
    object-position: center;
    
    /* Fallback para navegadores mais antigos */
    min-width: 100%;
    min-height: 100%;
    
    border: none;
    outline: none;
    visibility: visible;
    opacity: 1;
    z-index: -2;
}

/* Forçar cobertura total em qualquer resolução */
@media (aspect-ratio &gt; 16/9) {
    #background-video {
        width: 100vw;
        height: 56.25vw;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (aspect-ratio &lt; 16/9) {
    #background-video {
        width: 177.77vh;
        height: 100vh;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Garantir que o iframe seja visível */
#background-video[src=""] {
    display: none;
}

#background-video[src]:not([src=""]) {
    display: block;
}

/* Debug: adicionar uma borda temporária para ver o iframe */
#background-video.debug {
    border: 3px solid red !important;
    z-index: 1000 !important;
}

/* Overlay escuro para melhor legibilidade */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    padding: 5px 10px;
}

.logo-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
    visibility: visible;
    opacity: 1;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.site-desc {
    font-size: 0.8rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    
    /* Fallback para navegadores que não suportam background-clip */
    color: rgba(255, 150, 97, 0.9);
    
    /* Efeito de gradient animado */
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(245, 167, 128, 0.9) 25%,
        rgba(255, 150, 97, 0.9) 50%,
        rgba(245, 167, 128, 0.9) 75%,
        rgba(245, 167, 128, 0.9) 100%
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    animation: gradientShift 2s linear infinite;
}

/* Fallback para navegadores sem suporte a background-clip: text */
@supports not (-webkit-background-clip: text) {
    .site-desc {
        background: none;
        color: rgba(255, 150, 97, 0.9);
        animation: colorPulse 3s ease-in-out infinite;
    }
}

@keyframes colorPulse {
    0% { 
        color: rgba(255, 255, 255, 0.9); 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% { 
        color: rgba(255, 107, 53, 1); 
        text-shadow: 2px 2px 8px rgba(255, 107, 53, 0.3);
    }
    100% { 
        color: rgba(255, 255, 255, 0.9); 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

/* Animação do gradient */
@keyframes gradientShift {
    0% {
        background-position: -100% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Menu toggle (hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    position: absolute;
    border-radius: 2px;
}

.menu-toggle span:nth-child(1) {
    top: 50%;
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-1.5px);
}

.menu-toggle span:nth-child(3) {
    top: 50%;
    transform: translateY(3px);
}

/* Estado ativo (X) */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(-1.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-1.5px) scale(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-1.5px) rotate(-45deg);
}

/* Menu mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 80px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 20px 30px;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Conteúdo principal */
.main-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-text {
    text-align: center;
    max-width: 90%;
    padding: 20px;
}

.welcome-text {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    letter-spacing: 2px;
}

.highlight {
    color: #ff6b35;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #e0e0e0;
}

.status-text {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #b0b0b0;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* Botões de Download */
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

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

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

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-icon {
    font-size: 1.3em;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Variações dos botões */
.pc-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
}

.android-btn {
    background: linear-gradient(135deg, #34a853 0%, #2d8e47 100%);
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.3);
}

.android-btn:hover {
    box-shadow: 0 12px 35px rgba(52, 168, 83, 0.4);
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }
    
    .logo {
        height: 28px;
    }
    
    .site-name {
        font-size: 1.3rem;
    }
    
    .menu-toggle {
        width: 38px;
        height: 38px;
    }
    
    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .mobile-menu {
        width: 280px;
        right: -280px;
    }
    
    /* Melhorar visual do menu no tablet */
    .mobile-menu a {
        padding: 22px 30px;
        font-size: 1.15rem;
        font-weight: 400;
    }
    
    /* Botões responsivos para tablet */
    .download-buttons {
        gap: 15px;
        margin-top: 25px;
    }
    
    .download-btn {
        padding: 12px 20px;
        min-width: 180px;
        font-size: 0.95rem;
    }
    
    .btn-icon {
        font-size: 1.2em;
    }
}

/* Responsividade para celulares */
@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }
    
    .logo {
        height: 25px;
    }
    
    .site-name {
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        width: 36px;
        height: 36px;
    }
    
    .menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    /* Centralizar opções do menu no mobile */
    .mobile-menu a {
        text-align: center;
        padding: 20px 15px;
        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: 0.5px;
    }
    
    .mobile-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    /* Adicionar um pouco mais de espaço no topo */
    .mobile-menu {
        padding-top: 100px;
    }
    
    .hero-text {
        padding: 15px;
    }
    
    /* Botões responsivos para mobile */
    .download-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .download-btn {
        padding: 14px 20px;
        min-width: 100%;
        font-size: 0.9rem;
        border-radius: 40px;
    }
    
    .btn-icon {
        font-size: 1.1em;
    }
    
    .btn-text {
        font-size: 0.85rem;
    }
}

/* Responsividade para celulares muito pequenos */
@media (max-width: 360px) {
    .mobile-menu a {
        padding: 18px 10px;
        font-size: 1.1rem;
    }
    
    .mobile-menu {
        padding-top: 90px;
    }
    
    /* Botões para telas muito pequenas */
    .download-buttons {
        max-width: 280px;
        gap: 12px;
    }
    
    .download-btn {
        padding: 12px 16px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .btn-icon {
        font-size: 1em;
    }
    
    .btn-text {
        font-size: 0.75rem;
    }
    
    /* Cards ultra compactos para telas muito pequenas */
    .version-card {
        min-height: 36px !important;
        padding: 3px !important;
    }
    
    .version-card h3 {
        font-size: 0.8rem !important;
        margin-bottom: 1px !important;
        gap: 3px !important;
    }
    
    .version-card h3 .title-content i {
        font-size: 0.75rem !important;
    }
    
    .version-card h3 .expand-arrow {
        font-size: 0.7rem !important;
    }
    
    /* Feature-items ultra compactos para telas muito pequenas */
    .feature-item {
        padding: 3px !important;
        min-height: 36px !important;
    }

    .feature-item h3 {
        font-size: 0.8rem !important;
        margin-bottom: 1px !important;
        gap: 3px !important;
    }

    .feature-item h3 .title-content i {
        font-size: 0.7rem !important;
    }

    .feature-item h3 .expand-arrow {
        font-size: 0.65rem !important;
    }

    .feature-item p {
        font-size: 0.65rem !important;
    }
    
    .feature-item::after {
        top: 8px !important;
        right: 8px !important;
        font-size: 0.9rem !important;
        display: none !important;
    }
}

/* Regras específicas para telas menores que 400px */
@media (max-width: 400px) {
    /* Cards ultra compactos para telas pequenas */
    .version-card {
        min-height: 38px !important;
        padding: 4px !important;
    }
    
    .version-card h3 {
        font-size: 0.83rem !important;
        margin-bottom: 1px !important;
        gap: 4px !important;
    }
    
    .version-card h3 .title-content i {
        font-size: 0.78rem !important;
    }
    
    .version-card h3 .expand-arrow {
        font-size: 0.73rem !important;
    }
    
    /* Feature-items compactos para telas pequenas */
    .feature-item {
        padding: 4px !important;
        min-height: 38px !important;
    }
    
    .feature-item h3 {
        font-size: 0.83rem !important;
        margin-bottom: 1px !important;
        gap: 4px !important;
    }
    
    .feature-item h3 .title-content i {
        font-size: 0.75rem !important;
    }
    
    .feature-item h3 .expand-arrow {
        font-size: 0.68rem !important;
    }
    
    .feature-item p {
        font-size: 0.7rem !important;
    }
    
    .feature-item::after {
        top: 10px !important;
        right: 10px !important;
        font-size: 0.95rem !important;
        display: none !important;
    }
}

/* Melhorar transições do menu em mobile */
@media (max-width: 480px) {
    .mobile-menu {
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .mobile-menu a {
        transition: all 0.3s ease;
        border-radius: 0;
    }
    
    .mobile-menu a:hover,
    .mobile-menu a:active {
        background: rgba(255, 107, 53, 0.2);
        transform: scale(1.02);
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: fadeIn 1s ease-out;
}

/* Estados de hover e foco */
.logo:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Garantir que o logo seja sempre visível quando carregado */
.logo {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Esconder apenas se houver erro de carregamento */
.logo.error {
    display: none;
}

@media (max-width: 768px) {
    .site-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .site-name {
        font-size: 1.1rem;
    }
}

/* ===== ESTILOS PARA PÁGINAS INTERNAS ===== */

/* Conteúdo principal para páginas internas */
.main-content-page {
    margin-top: 80px;
    padding: 40px 0;
    flex: 1;
    background: #f8f9fa;
    color: #333;
}

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

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 30px;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #666;
}

.breadcrumb .current {
    color: #666;
    font-size: 0.9rem;
}

/* Header da página */
.page-header {
    margin-bottom: 40px;
    text-align: left;
}

.page-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    max-width: 600px;
}

/* Conteúdo da página */
.page-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.page-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.page-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.page-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.page-content ul {
    color: #666;
    padding-left: 20px;
}

.page-content li {
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    padding: 5px;
}

.footer-logo-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
}

.footer-text {
    text-align: center;
    max-width: 800px;
}

.footer-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc;
}

.cstrike-inline {
    color: #ff6b35;
    font-weight: 700;
    font-size: inherit;
}

.footer-link {
    color: #ff6b35;
    text-decoration: none;
}

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

.footer-contact {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}

.footer-email {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.footer-email:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #999;
}

.historia-btn {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.historia-btn:hover {
    text-decoration: underline;
}

/* Responsividade para páginas internas */
@media (max-width: 768px) {
    .main-content-page {
        padding: 20px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .page-content {
        padding: 20px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-text {
        max-width: 100%;
    }
    
    .footer-brand {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-brand {
        font-size: 1.4rem;
    }
    
    .footer-text p {
        font-size: 0.85rem;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .page-content {
        padding: 15px;
    }
    
    .download-hero {
        padding: 30px 15px;
    }
    
    .game-info-card {
        padding: 20px;
    }
    
    /* Cards ultra compactos em mobile */
    .version-card {
        min-height: 40px !important;
        padding: 5px !important;
    }
    
    .version-card h3 {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
        gap: 5px !important;
    }
    
    .version-card h3 .title-content i {
        font-size: 0.8rem !important;
    }
    
    .version-card h3 .expand-arrow {
        font-size: 0.75rem !important;
    }
}

/* Header para páginas internas */
body.internal-page .header {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid #ff6b35;
}

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA DE HISTÓRIA ===== */

.historia-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.historia-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.historia-content p:first-child {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    border-left: 4px solid #ff6b35;
    padding-left: 20px;
    margin-bottom: 30px;
}

/* Seções temáticas da história */
.timeline-section,
.memorias-section,
.nostalgia-section,
.comunidade-section,
.saudade-section,
.chamada-final {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.timeline-section h3,
.memorias-section h3,
.nostalgia-section h3,
.comunidade-section h3,
.saudade-section h3,
.chamada-final h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Lista de memórias especial */
.memorias-list {
    list-style: none;
    padding: 0;
}

.memorias-list li {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid #ff6b35;
    transition: all 0.3s ease;
}

.memorias-list li:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.memorias-list li strong {
    color: #ff6b35;
    font-size: 1.05rem;
}

/* Código inline */
code {
    background: #2d3748;
    color: #63b3ed;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* Seção de saudade com estilo especial */
.saudade-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #ffffff;
    border-left: 4px solid #4a5568;
}

.saudade-section h3 {
    color: #90cdf4;
}

.saudade-section p {
    color: #ffffff;
}

/* Slogan especial */
.slogan-especial {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white !important;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.slogan-especial * {
    color: white !important;
}

.destaque-texto {
    margin: 30px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.destaque-texto h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white !important;
    position: relative;
    display: inline-block;
}

.destaque-texto h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.destaque-texto p {
    margin-bottom: 0;
    font-size: 1.05rem;
    text-align: center;
    font-style: italic;
    color: white !important;
}

.destaque-texto * {
    color: white !important;
}

.final-content {
    margin: 40px auto 0;
    padding: 40px 30px;
    text-align: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: none;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Botões dentro da seção final */
.final-content .historia-download-btn,
.final-content .discord-historia-btn {
    margin: 5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.final-content .historia-download-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.final-content .discord-historia-btn {
    background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.3);
}

/* Efeitos hover para botões da final-content */
.final-content .historia-download-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.final-content .discord-historia-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 30px rgba(114, 137, 218, 0.4);
}

.discord-info strong {
    color: rgba(255, 255, 255, 1);
}

.discord-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    font-family: 'Courier New', monospace;
    font-weight: 500;
    transition: all 0.3s ease;
}

.discord-link:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Texto da comunidade */
.community-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: center;
    color: #333;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    padding-left: 0 !important;
}

/* Responsividade para página do Discord */
@media (max-width: 768px) {
    .discord-features {
        padding: 20px;
        margin: 20px 0;
    }
    
    .discord-features li {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .discord-features li strong {
        display: block;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .discord-invite-section {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .discord-btn {
        padding: 15px 25px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .discord-features {
        padding: 15px;
    }
    
    .discord-features li {
        margin-bottom: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        text-align: left;
        line-height: 1.5;
    }
    
    .discord-features li strong {
        display: block;
        margin-bottom: 3px;
        line-height: 1.2;
    }
    
    .discord-invite-section {
        padding: 25px 15px;
    }
    
    .discord-btn {
        padding: 12px 20px;
        gap: 8px;
    }
}

.nostalgia-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 15px;
    text-align: center;
}

.slogan-final {
    color: #ff6b35;
    font-style: italic;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Botões de ação múltiplos */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.historia-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

/* Novo botão do Discord para a história */
.discord-historia-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.3);
    border: 2px solid transparent;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.historia-download-btn::before,
.discord-historia-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.historia-download-btn:hover::before,
.discord-historia-btn:hover::before {
    left: 100%;
}

.historia-download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.discord-historia-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(114, 137, 218, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.historia-download-btn .btn-icon,
.discord-historia-btn .btn-icon {
    font-size: 1.2em;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.historia-download-btn .btn-text,
.discord-historia-btn .btn-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Responsividade para página de história */
@media (max-width: 768px) {
    .historia-content {
        font-size: 0.95rem;
    }
    
    .historia-content p:first-child {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .timeline-section,
    .memorias-section,
    .nostalgia-section,
    .comunidade-section,
    .saudade-section,
    .chamada-final {
        padding: 20px;
        margin: 20px 0;
    }
    
    .destaque-texto {
        padding: 25px 20px;
    }
    
    .destaque-texto h3 {
        font-size: 1.2rem;
    }
    
    .final-content {
        padding: 30px 20px;
        margin: 30px auto 0;
        width: 100%;
        max-width: none;
    }
    
    .final-content .historia-download-btn,
    .final-content .discord-historia-btn {
        margin: 5px auto;
        width: calc(100% - 10px);
        max-width: 280px;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .historia-download-btn,
    .discord-historia-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .historia-content p {
        text-align: left;
    }
    
    .timeline-section,
    .memorias-section,
    .nostalgia-section,
    .comunidade-section,
    .saudade-section,
    .chamada-final {
        padding: 15px;
        margin: 15px 0;
    }
    
    .memorias-list li {
        padding: 12px;
    }
    
    .destaque-texto {
        padding: 20px 15px;
    }
    
    .destaque-texto h3 {
        font-size: 1.1rem;
    }
    
    .final-content {
        padding: 25px 15px;
        margin: 25px auto 0;
        width: 100%;
        max-width: none;
    }
    
    .final-content .historia-download-btn,
    .final-content .discord-historia-btn {
        margin: 4px auto;
        width: calc(100% - 8px);
        max-width: 260px;
        padding: 10px 20px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .nostalgia-text {
        font-size: 1.1rem;
    }
    
    .historia-download-btn,
    .discord-historia-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .slogan-especial {
        padding: 15px;
        font-size: 1rem;
    }
    
    .version-details {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 5px;
        width: 100%;
    }
    
    .version-download-btn {
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }
    
    .version-info-btn {
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }
}

/* ========== ESTILOS PARA PÁGINA DO DISCORD ========== */

/* Conteúdo específico do Discord */
.discord-content {
    padding: 20px 0;
}

.discord-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

/* Lista de características do Discord */
.discord-features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border-left: 5px solid #7289da;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding-left: 30px;
}

.discord-features li {
    margin-bottom: 15px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.discord-features li strong {
    color: #7289da;
    font-weight: 600;
}

/* Seção de convite do Discord */
.discord-invite-section {
    background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.3);
}

.invite-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Botão principal do Discord */
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

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

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

.discord-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.discord-btn .btn-icon {
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.discord-btn .btn-text {
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    letter-spacing: 0.3px;
}

/* Informações do link do Discord */
.discord-info {
    margin-top: 25px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.9) !important;
}

.discord-community-btn {
    background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.3);
}

.discord-community-btn:hover {
    box-shadow: 0 12px 35px rgba(114, 137, 218, 0.4);
}

/* Garantir que o ícone do Discord tenha o tamanho correto */
.discord-community-btn .btn-icon i {
    font-size: 1.3em;
}

/* ========== ESTILOS PARA PÁGINA DE DOWNLOADS MODERNA ========== */

/* Hero Section da página de downloads */
.download-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin: -40px -20px 40px -20px;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container do vídeo de fundo para downloads */
.download-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.download-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 120%;
    min-height: 120%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -2;
}

/* Overlay escuro para melhor legibilidade */
.download-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.download-hero-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
}

.download-hero-content h1.download-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.download-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Seção de informações do jogo */
.game-info-section {
    margin: 60px 0;
}

.game-info-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff6b35;
}

.game-info-card h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.game-info-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Grid de características */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    position: relative;
}

.feature-item h3 .title-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.feature-item h3 i {
    font-size: 1rem;
    opacity: 0.8;
    color: #ff6b35;
}

.feature-item h3 .expand-arrow {
    font-size: 0.8rem;
    color: #ff6b35;
    transition: transform 0.3s ease;
    margin-left: auto;
    display: none; /* Ocultar por padrão em desktop */
}

.feature-item.expanded .expand-arrow {
    transform: rotate(180deg);
}

.feature-item p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Seção de versões */
.versions-section {
    margin: 60px 0;
}

.versions-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.version-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    min-height: 100px;
}

.version-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.version-card.pc-version {
    border-top: 4px solid #ff6b35;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.version-card.pc-version:hover {
    border-color: #ff6b35;
}

.version-card.lin-version {
    border-top: 4px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.version-card.lin-version:hover {
    border-color: #333;
}

.version-card.android-version {
    border-top: 4px solid #3ddc84;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.version-card.android-version:hover {
    border-color: #3ddc84;
}

.version-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}

.version-card h3 .title-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.version-card h3 i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.version-card h3 .expand-arrow {
    font-size: 0.85rem;
    color: #ff6b35;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.version-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.version-icon {
    margin-bottom: 20px;
}

.version-icon i {
    font-size: 3rem;
    color: #ff6b35;
}

.android-version .version-icon i {
    color: #27ae60;
}

.version-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 10px;
    width: 100%;
}

.version-size,
.version-compatibility {
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
}

.version-size {
    text-align: left;
}

.version-compatibility {
    text-align: right;
}

.version-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.version-download-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.version-download-btn.disabled {
    background: linear-gradient(135deg, #949494 0%, #949494 100%);
}
    
.version-download-btn.lin-version {
    background: linear-gradient(135deg, #252525 0%, #252525 100%);
}

.version-download-btn.android {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.version-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.version-download-btn.android:hover {
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.version-info-btn {
    background: transparent;
    color: #666;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.version-info-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

/* Responsividade para seção final */
@media (max-width: 768px) {
    .final-cta {
        margin: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-download-btn,
    .cta-discord-btn {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
    
    /* Responsividade para seções de comunidade */
    .destaque-texto {
        margin: 40px 0;
        padding: 25px;
    }
    
    .destaque-texto h2 {
        font-size: 1.3rem;
    }
    
    .destaque-texto p,
    .destaque-texto .invite-text {
        font-size: 1rem;
    }
    
    .discord-btn {
        font-size: 0.9rem;
    }
    
    .discord-btn .btn-icon {
        font-size: 1.1rem;
    }
    
    .final-content {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    /* Ajustes para versions-grid em tablets */
    .versions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .final-cta {
        margin: 30px 0;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-download-btn,
    .cta-discord-btn {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    /* Responsividade mobile para seções de comunidade */
    .destaque-texto {
        margin: 30px 0;
        padding: 20px;
    }
    
    .destaque-texto h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .destaque-texto p,
    .destaque-texto .invite-text {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .discord-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .discord-btn .btn-icon {
        font-size: 1rem;
    }
    
    .discord-btn .btn-text {
        font-size: 0.85rem;
    }
    
    .final-content {
        padding: 25px 15px;
        margin: 25px 0;
    }
    
    /* Ajustes para versions-grid em dispositivos móveis */
    .versions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    
    .versions-section {
        margin: 40px 0;
    }
    
    .version-card {
        margin: 0 !important;
        min-height: auto !important;
        padding: 20px !important;
    }
    
    .version-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    
    .version-details {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        text-align: center;
    }
    
    .version-download-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .version-info-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .version-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
}

@media (max-width: 360px) {
    .version-card {
        padding: 15px !important;
        margin: 0 !important;
    }

    .version-card h3 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
        gap: 5px !important;
    }

    .version-card h3 .title-content i {
        font-size: 0.9rem !important;
    }

    .version-card h3 .expand-arrow {
        font-size: 0.7rem !important;
    }

    .destaque-texto {
        margin: 25px 0;
        padding: 15px;
    }

    .destaque-texto h2 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .destaque-texto p,
    .invite-text {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    .discord-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .discord-btn .btn-icon {
        font-size: 0.9rem;
    }

    .discord-btn .btn-text {
        font-size: 0.8rem;
    }

    .final-content {
        padding: 20px 10px;
        margin: 20px 0;
    }
    
    .versions-grid {
        gap: 12px;
    }
    
    .version-details {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        text-align: center;
    }
    
    .version-download-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 100%;
    }
    
    .version-info-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        width: 100%;
    }
    
    .version-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
}</pre></body></html>