/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #da0a0a;
    --dark-red: #c20000;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #333333;
    --light-gray: #666666;
    --white: #ffffff;
    --off-white: #f5f5f5; 
   
}

html, body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;

    /* IMAGEM DE FUNDO */
    background-image: url("../images/fundo.png"); 
    background-repeat: no-repeat;
    background-size: cover;      
    background-position: center; 
    background-attachment: fixed;

    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

/* overlay escuro global */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.952);
    z-index: 0;
    pointer-events: none;
}

/* garante que todo conteúdo fique acima do fundo */
body > * {
    position: relative;
    z-index: 1;
}

/* remove fundo sólido das sections */
section {
    background-color: transparent;
}



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

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.055);

}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

.nav-logo img {
    height: 60px;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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











/* HAMBURGUER - VERSÃO CORRIGIDA */
.hamburger {
    display: none; /* Escondido por padrão */
}

/* ESTILOS PARA MOBILE */
@media (max-width: 768px) {
    /* Hamburguer - SEMPRE visível em mobile */
    .hamburger {
        display: flex !important;
        position: fixed;
        right: 20px;
        top: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 38px;
        height: 38px;
        background: #da0a0a;
        border-radius: 8px;
        z-index: 10000;
        cursor: pointer;
        border: none;
        padding: 0;
        margin: 0;
    }
    
    .hamburger .bar {
        display: block;
        width: 24px;
        height: 3px;
        background: white;
        margin: 2.5px 0;
        border-radius: 3px;
    }
    
    .hamburger:hover {
        background: #c20000;
    }
    
    /* Menu Mobile */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        z-index: 9999;
        overflow-y: auto;
        padding: 20px;
    }
    
    .nav-menu.active {
        display: block;
    }
}

/* DESKTOP - Hamburguer NUNCA aparece */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}

/* ⚡ FORÇAR HAMBURGUER VISÍVEL - PRIORIDADE MÁXIMA */
body .hamburger {
    display: none !important;
}

@media (max-width: 768px) {
    body .hamburger {
        display: flex !important;
        position: fixed !important;
        right: 20px !important;
        top: 20px !important;
        width: 38px !important;
        height: 38px !important;
        background: #da0a0a !important;
        border-radius: 8px !important;
        z-index: 10000 !important;
        cursor: pointer !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    body .hamburger .bar {
        display: block !important;
        width: 24px !important;
        height: 3px !important;
        background: white !important;
        margin: 2.5px 0 !important;
        border-radius: 3px !important;
    }
}








.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    padding: 120px 0 80px;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 80% 60%,
        rgba(253, 0, 0, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 0;
}

.hero {
    position: relative;
    background: transparent;
}

.hero > * {
    position: relative;
    z-index: 1;
}





.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 900;
}

/* AJUSTE MOBILE */
@media (max-width: 768px) {
    .hero-content h1 {
        transform: translateY(15px);
    }
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--off-white);
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.hero-image {
    text-align: right;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
}
/* AJUSTE MOBILE */
@media (max-width: 768px) {
    .hero-image img {
        transform: translateY(-0px);
    }
}


/* Seções Gerais */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

/* Feedbacks */

.reviews {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(253, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #da0a0a;
    margin: 15px auto;
    border-radius: 2px;
}

.reviews-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem 0;
}

.review-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 230, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dacc0a, #dacc0a);
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 255, 61, 0.4);
    box-shadow: 0 12px 40px rgba(255, 252, 61, 0.15);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 61, 61, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #ff3d3d;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-btn:disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 252, 61, 0.9);
}

/* Resto do CSS dos cards permanece igual */
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fcff3d;
    padding: 2px;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-source {
    color: #3d67a7;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-source i {
    font-size: 0.8rem;
}

.review-stars {
    color: #ffd700;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.review-text {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2.5rem;
    color: #fff23d;
    font-family: serif;
    opacity: 0.7;
}

.review-date {
    color: #888;
    font-size: 0.8rem;
    margin-top: 1rem;
    text-align: right;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    padding: 1rem;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f2ff3d;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .reviews-container {
        padding: 0 40px;
    }
    
    .review-card {
        flex: 0 0 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .trust-indicators {
        gap: 1.5rem;
    }
    
    .trust-item {
        flex: 1;
        min-width: 120px;
    }
}

/* Products */
/* =========================
   PRODUCTS SECTION
========================= */
.products {
    padding: 80px 0;
    position: relative;
    background: transparent;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 70% 30%,
        rgba(255, 61, 61, 0.12) 0%,
        transparent 55%
    );
    pointer-events: none;
}

/* =========================
   HEADER
========================= */
.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-inline: auto;
}

/* =========================
   GRID
========================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

/* =========================
   CARD
========================= */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: all 0.3s ease;
    width: 100%; 
    max-width: 420px;
     margin: 0 auto; 
}

.product-card:hover {
    transform: translateY(-10px);
}

/* =========================
   BADGE
========================= */
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    background: linear-gradient(45deg, #da0a0a, #ff6161);
    color: #000000;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
}

/* =========================
   IMAGE AS CARD
========================= */
.product-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden; /* 🔥 borda na própria imagem */
}

.product-image img {
    width: 100%;
    height: auto; /* 🔥 expande naturalmente na vertical */
    display: block;
    object-fit: contain; /* sem corte */
}

/* =========================
   BUTTONS
========================= */
.btn-buy,
.btn-store {
    margin-top: 10px;
    width: 100%;
    padding: 1.2rem 2rem;
    border-radius: 16px;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Botão comprar */
.btn-buy {
    background: linear-gradient(45deg, #ff3d3d, #ff6b6b);
    color: #fff;
}

.btn-buy:hover {
    box-shadow: 0 10px 25px rgba(255, 61, 61, 0.35);
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }

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

    .product-image {
        border-radius: 20px;
    }
}




/* FAQ */

.faq {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 61, 61, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 16px;
    border: 1px solid rgba(255, 61, 61, 0.2);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    /* REMOVIDO: opacity: 0; e animation */
}

.faq-item:hover {
    border-color: rgba(255, 61, 61, 0.4);
    box-shadow: 0 12px 40px rgba(255, 61, 61, 0.15);
}

.faq-item.active {
    border-color: rgba(255, 61, 61, 0.6);
    box-shadow: 0 15px 45px rgba(255, 61, 61, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #ff3d3d, #ff6b6b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #ff3d3d;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ff3d3d;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #ff6b6b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
}



/* Efeito de pulso no hover */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 61, 61, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(61, 255, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(61, 255, 109, 0);
    }
}

.faq-item:hover:not(.active) {
    animation: pulse-glow 2s infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1rem;
        font-size: 0.95rem;
    }
}

/* Community */
.community {
    padding: 60px 20px;
    background: transparent !important;
    position: relative;
    overflow: hidden;
}
.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 80% 60%,
        rgba(253, 0, 0, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 0;
}

.community > * {
    position: relative;
    z-index: 1;
}



.community-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.community-text {
    text-align: center;
    padding: 0 10px;
}



.community-text p {
    margin-bottom: 1.2rem;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.community-text p:first-of-type {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

.community-features {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.feature:hover {
    background: rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 61, 61, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #000000, #610909);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-content p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.community-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-discord {
    background: linear-gradient(45deg, #000000, #610909);
    color: white;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 300px;
    text-decoration: none;
}

.btn-discord:hover {
    background: linear-gradient(45deg, #000000, #610909);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.2rem 0.8rem;
    background: linear-gradient(145deg, #ffffff5b, #000000fd);
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 0, 0.363);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #381313, #000000);
}

.stat:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 61, 61, 0.4);
    box-shadow: 0 8px 20px rgba(255, 61, 61, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    border: 2px solid rgba(255, 61, 61, 0.3);
}

.stat-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.stat h3 {
    font-size: 1.5rem;
    color: #ff3d3d;
    margin-bottom: 0.4rem;
    font-weight: 700;
    line-height: 1;
}

.stat p {
    color: #ffffff;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
    max-width: 100px;
    word-wrap: break-word;
}

/* Animações suaves */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.stat:hover .stat-icon {
    animation: float 2s ease-in-out infinite;
}

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

/* Tablet (768px - 1024px) */
@media (min-width: 768px) {
    .community {
        padding: 80px 40px;
    }
    
    .community-content {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .community-text {
        text-align: left;
        padding: 0;
    }
    
    .community-text h2 {
        font-size: 2.5rem;
    }
    
    .community-text p {
        font-size: 1.1rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .community-features {
        margin: 2.5rem 0;
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .feature {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 1.2rem 1.5rem;
    }
    
    .feature-content {
        flex: 1;
    }
    
    .feature:hover {
        transform: translateX(5px);
    }
    
    .community-actions {
        justify-content: flex-start;
        margin-top: 1.5rem;
    }
    
    .btn-discord {
        width: auto;
        padding: 1rem 2.2rem;
        font-size: 1.1rem;
    }
    
    .community-stats {
        margin-top: 0;
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .stat {
        padding: 1.5rem;
        min-height: 160px;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .stat p {
        font-size: 0.9rem;
        max-width: none;
    }
}

/* Desktop Pequeno (1024px - 1200px) */
@media (min-width: 1024px) {
    .community {
        padding: 80px 60px;
    }
    
    .community-content {
        gap: 4rem;
    }
    
    .community-text h2 {
        font-size: 2.8rem;
    }
    
    .community-stats {
        gap: 1.5rem;
    }
    
    .stat {
        padding: 1.8rem;
        min-height: 180px;
    }
    
    .stat h3 {
        font-size: 2.2rem;
    }
}

/* Desktop Grande (acima de 1200px) */
@media (min-width: 1200px) {
    .community {
        padding: 100px 0;
    }
    
    .community-content {
        gap: 5rem;
    }
    
    .community-text h2 {
        font-size: 3rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature:hover {
        transform: translateX(10px);
    }
    
    .btn-discord {
        padding: 1.2rem 3rem;
    }
    
    .community-stats {
        gap: 2rem;
    }
    
    .stat {
        padding: 2.5rem 2rem;
        min-height: 200px;
    }
    
    .stat:hover {
        transform: translateY(-5px);
    }
}

/* Mobile Muito Pequeno (menor que 375px) */
@media (max-width: 374px) {
    .community {
        padding: 40px 15px;
    }
    
    .community-text h2 {
        font-size: 1.6rem;
    }
    
    .community-text p {
        font-size: 0.9rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
    
    .btn-discord {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .stat {
        padding: 1rem;
        min-height: 120px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.6rem;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .stat h3 {
        font-size: 1.3rem;
    }
    
    .stat p {
        font-size: 0.75rem;
    }
}

/* Mobile Landscape (568px - 767px) */
@media (min-width: 568px) and (max-width: 767px) and (orientation: landscape) {
    .community-content {
        grid-template-columns: 1fr;
    }
    
    .community-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .community-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature {
        padding: 1rem;
        min-height: 140px;
    }
    
    .feature:hover {
        transform: translateY(-3px);
    }
}

/* Tablet Landscape (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .community-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .feature {
        min-height: 120px;
        padding: 1rem;
    }
}

/* Ajustes para telas muito largas */
@media (min-width: 1600px) {
    .community-content {
        max-width: 1400px;
    }
    
    .community-text h2 {
        font-size: 3.5rem;
    }
    
    .community-text p {
        font-size: 1.2rem;
        max-width: 700px;
    }
}

/* Suporte para modo escuro do sistema */
@media (prefers-color-scheme: dark) {
    .community {
        background: linear-gradient(135deg, #0a0a0a 0%, #ff313130 100%);
    }
    
    .stat {
        background: linear-gradient(145deg, #750d0d3b, #000000fd);
    }
}

/* Acessibilidade - Melhor contraste */
@media (prefers-contrast: high) {
    .community-text h2 {
        background: linear-gradient(45deg, #fff, #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .btn-discord {
        background: linear-gradient(45deg, #4752c4, #5865F2);
    }
}

/* Animações de entrada suave */
.community-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading otimizado para mobile */
.community {
    will-change: transform;
    transform: translateZ(0);
}

/* Touch-friendly para mobile */
@media (hover: none) and (pointer: coarse) {
    .feature:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.02);
    }
    
    .stat:hover {
        transform: none;
    }
    
    .btn-discord:hover {
        transform: none;
    }
    
    /* Adiciona feedback de toque */
    .feature:active,
    .stat:active,
    .btn-discord:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Impede quebra de layout em zoom */
.community {
    min-height: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}


/* Footer */
.footer {
    background: transparent;
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 20%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.2) 80%, 
        transparent 100%
    );
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}




/* Modais */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    border: 2px solid var(--primary-red);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--white);
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px;
    background-color: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: var(--dark-red);
}

.form-switch {
    text-align: center;
    margin-top: 1rem;
}

.form-switch a {
    color: var(--primary-red);
    text-decoration: none;
}

.form-switch a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid var(--gray);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .community-stats {
        flex-direction: row;
        justify-content: space-around;
    }
}

/* Login */
/* Menu do Usuário */
.user-menu {
    position: relative;
    cursor: pointer;
}

.user-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-name::after {
    font-family: "Font Awesome 6 Free"; /* garante que seja o FA */
    font-weight: 900; /* necessário para ícones sólidos */
    content: "\f078"; /* código do ícone fa-chevron-down */
    font-size: 0.7em;
    margin-left: 6px;
    display: inline-block;
}


.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 61, 61, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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



.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 61, 61, 0.1);
    color: #ff6b6b;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.admin-link {
    color: #ffd700 !important;
    font-weight: 600;
}

.admin-link:hover {
    background: rgba(255, 215, 0, 0.1) !important;
}
/* Adicione ao final do seu style.css existente */

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Notification Styles */
.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    color: #da0a0a;
    font-size: 1.2rem;
}

.notification-content span {
    font-weight: 600;
}

/* Estilos para avaliações do Site */
.user-review-badge {
    background: linear-gradient(135deg, #da0a0a, #cc0000);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.review-card .review-source i {
    margin-right: 5px;
}

.review-card .review-source i.fa-globe {
    color: #da0a0a;
}

.review-card .review-source i.fa-discord {
    color: #5865F2;
}
