html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-black: #000;
    --secondary-black: #111;
    --gold: #d4af37;
    --light-gold: #f8e9a1;
    --red: #cc0000;
    --light-red: #ff3333;
    --white: #fff;
    --dark-gray: #222;
    --light-gray: #f4f4f4;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

body {
    background-color: var(--primary-black);
    color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

main {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--gold);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--red);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header e navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-black);
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    width: 100%;
    margin: 0;
    border-bottom: 2px solid var(--gold);
    position: relative;
    box-sizing: border-box;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.logo img {
    height: 85px;
    width: auto;
    transition: all 0.3s ease;
    filter: none;
    object-fit: contain;
    max-width: 100%;
}

.logo img:hover {
    transform: scale(1.05);
    filter: none;
}

.logo-text {
    display: none; /* Ocultando o texto do logo */
}

.nav-container {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: var(--gold);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.whatsapp-container {
    display: flex;
    justify-content: flex-end;
}

.whatsapp-link {
    background-color:  rgb(55, 212, 81); /* Verde WhatsApp */
    color: var(--white) !important;
    padding: 8px 15px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.whatsapp-link i {
    margin-right: 8px;
}

.whatsapp-link:hover {
    background-color: #25D366;
    color: var(--primary-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--gold);
}

/* Animação do hamburger */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--red);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    background-color: var(--gold);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--gold);
}

/* Ajustes responsivos para a navbar */
@media screen and (max-width: 992px) {
    .nav-container {
        position: fixed;
        right: -100%;
        top: 0;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #0f1420 0%, #1a1f35 100%);
        transition: 0.5s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 120px;
        border-left: 1px solid var(--gold);
        visibility: visible;
    }

    .nav-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 20%, rgba(88, 177, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 23, 68, 0.05) 0%, transparent 50%);
        opacity: 0.5;
        z-index: -1;
    }

    .nav-container.active {
        right: 0;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 30px;
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s ease;
        width: 100%;
        text-align: left;
        visibility: visible;
    }

    .nav-container.active .nav-links li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.1s * var(--i));
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.4rem;
        display: block;
        padding: 15px 40px;
        color: var(--gold);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 20px;
        width: 0;
        height: 2px;
        background: var(--gold);
        transform: translateY(-50%);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::before,
    .nav-links a.active::before {
        width: 30px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--gold);
        padding-left: 70px;
        background: rgba(212, 175, 55, 0.05);
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--gold), transparent);
        opacity: 0.1;
    }

    /* Hamburger */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1002;
        padding: 10px;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background-color: var(--gold);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Ajustes responsivos */
    @media screen and (max-width: 768px) {
        .nav-container {
            width: 280px;
        }
    }

    @media screen and (max-width: 480px) {
        .nav-container {
            width: 260px;
        }
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding-top: 130px;
    }
    
    .navbar {
        padding: 15px 5%;
    }
    
    .logo img {
        height: 50px;
    }
    
    .nav-container {
        width: 280px;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: row !important;
        gap: 10px;
        padding: 10px;
    }
    
    .stat-item {
        width: auto;
        flex: 1;
        padding: 5px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-number {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .nav-container {
        width: 260px;
    }
}

/* Seção Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 0 40px;
    min-height: 90vh;
    background-color: var(--primary-black);
    width: 100vw;
    margin: 0;
    position: relative;
    overflow: hidden;
    background-image: url('../images/backgrond.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 5%;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--gold);
    line-height: 1.2;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--light-gray);
    opacity: 0.8;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

#text-red {
    color: var(--red);
}

.stats {
    display: flex;
    justify-content: space-around;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold);
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stats:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    background-color: rgba(212, 175, 55, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background-color: transparent;
    border: none;
    transition: all 0.3s ease;
    flex: 1;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: var(--gold);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-gray);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 450px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.5s ease;
    transform: scale(1.15);
}

.hero-image img:hover {
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

/* Categorias - Estilo faixa de contenção */
.categories {
    padding: 0;
    background-color: var(--primary-black);
    overflow: hidden;
    position: relative;
    margin: 0;
    width: 100vw;
    margin-top: -20px;
}

.crime-tape {
    width: 100%;
    height: 70px;
    background: repeating-linear-gradient(
        45deg,
        var(--gold),
        var(--gold) 10px,
        var(--primary-black) 10px,
        var(--gold) 20px
    );
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

.crime-tape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.crime-tape::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.5);
    opacity: 0.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    pointer-events: none;
}

.crime-tape-content {
    display: flex;
    white-space: nowrap;
    animation: scrollTape 20s linear infinite;
    padding: 0 20px;
    cursor: pointer;
}

.crime-tape-item {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-black);
    text-transform: uppercase;
    margin: 0 20px;
    padding: 5px 15px;
    transform: skew(-15deg);
    background: var(--gold);
    border: 2px solid var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.crime-tape-item:hover {
    transform: skew(-15deg) translateY(-5px);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.crime-tape-item:nth-child(odd) {
    background: var(--red);
    color: var(--white);
}

.crime-tape-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
}

@keyframes scrollTape {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Efeito de parada quando o usuário passa o mouse */
.crime-tape-content:hover {
    animation-play-state: paused;
}

/* Ajustes responsivos para a faixa de contenção */
@media screen and (max-width: 768px) {
    .categories {
        margin-top: 40px;
    }

    .crime-tape {
        height: 60px;
    }
    
    .crime-tape-item {
        font-size: 1.2rem;
        padding: 4px 12px;
        margin: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    .categories {
        margin-top: 20px;
    }

    .crime-tape {
        height: 50px;
    }
    
    .crime-tape-item {
        font-size: 1rem;
        padding: 3px 10px;
        margin: 0 10px;
    }
}

/* Carrossel de Skins */
.skins-carousel {
    padding: 80px 2%;
    position: relative;
    max-width: 100%;
    margin: 60px auto 0;
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
    padding: 50px 0 60px;
    margin: 0 auto;
    width: 100%;
    perspective: 1000px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 40px;
    position: relative;
    width: max-content;
    margin: 0 auto;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Garantir visibilidade apenas dos 3 cards principais */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 4;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-black) 0%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-black) 0%, transparent 100%);
}

.skin-card {
    flex: 0 0 auto;
    width: 320px;
    background: linear-gradient(145deg, var(--secondary-black), var(--dark-gray));
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gold);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 20px;
    transform-origin: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.7); }
    100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
}

.skin-card.active {
    transform: scale(1.15);
    z-index: 5;
    border-width: 2px;
    animation: pulseGlow 3s infinite;
}

.skin-card.prev, .skin-card.next {
    transform: scale(0.88);
    opacity: 0.7;
    filter: brightness(0.8);
    z-index: 2;
}

.skin-card.far {
    transform: scale(0.7);
    opacity: 0.4;
    filter: brightness(0.6);
    z-index: 0;
}

.skin-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.skin-card.active:hover {
    transform: translateY(-5px) scale(1.17);
}

.skin-image {
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.skin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.skin-card:hover .skin-image img {
    transform: scale(1.05);
}

.skin-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.skin-tag {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    line-height: 1.1;
}

.trades {
    background-color: var(--dark-gray);
    color: var(--gold);
    border: 1px solid var(--gold);
    flex: 1;
    min-width: 110px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
}

/* Estilos específicos para cada tipo de card */
.skin-tag.trades.trade-type,
.skin-tag.trades.premios-type,
.skin-tag.trades.resenha-type {
    background-color: var(--dark-gray);
    color: #f1c40f; /* Amarelo/Dourado */
    border: 1px solid #f1c40f;
    width: 100%;
    overflow: visible;
}

.participate {
    background-color: var(--red);
    color: var(--white);
    flex: 0 0 auto;
    min-width: 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.participate:hover {
    background-color: var(--light-red);
    transform: translateY(-2px);
}

/* Remover animações específicas por tipo */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.7); }
    100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-button:hover {
    background-color: var(--red);
    color: var(--white);
}

.carousel-button.prev {
    left: 2%;
}

.carousel-button.next {
    right: 2%;
}

/* Membros - Estilo faixa de contenção igual à crime-tape */
.members {
    padding: 10px 0;
    background-color: var(--primary-black);
    overflow: hidden;
    position: relative;
    margin: 40px 0;
    width: 100vw;
}

.members-carousel-container {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.members-track {
    display: flex;
    white-space: nowrap;
    animation: scrollTape 20s linear infinite;
    padding: 10px 0;
    cursor: pointer;
}

.members-track.reverse {
    animation: scrollTape 20s linear infinite reverse;
    margin-top: 0px;
}

.member {
    flex: 0 0 auto;
    width: 190px;
    background-color: #3a40af;
    border-radius: 8px;
    padding: 8px;
    margin: 0 10px;
    transform: skew(-15deg);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
    border-radius: 8px;
}

.member:hover {
    transform: skew(-15deg) translateY(-5px);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.member-avatar {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #fff;
    transform: skew(15deg); /* Contrabalancear o skew do container */
    flex-shrink: 0;
    margin-right: 8px;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    text-align: left;
    transform: skew(15deg); /* Contrabalancear o skew do container */
    flex-grow: 1;
    overflow: hidden;
}

.member-name {
    display: block;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-role {
    font-size: 0.65rem;
    color: #fff;
    opacity: 0.9;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Alternar cores para cards pares e ímpares */
.member:nth-child(odd) {
    background-color:var(--gold);
}

.member:nth-child(even) {
    background-color: var(--red);
}

/* Efeito de parada quando o usuário passa o mouse */
.members-track:hover {
    animation-play-state: paused;
}

@media screen and (max-width: 768px) {
    .member {
        width: 150px;
        padding: 6px;
    }
    
    .member-avatar {
        width: 39px;
        height: 39px;
        margin-right: 6px;
    }
    
    .member-name {
        font-size: 0.7rem;
    }
    
    .member-role {
        font-size: 0.6rem;
    }
}

/* Personagens */
.characters {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.character-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.character {
    flex: 1;
    text-align: center;
    background-color: var(--secondary-black);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.character:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.character-image {
    height: 300px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-image img {
    max-height: 100%;
    object-fit: contain;
}

.character-info p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--secondary-black);
    scroll-snap-align: start;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid var(--gold);
}

/* Animações adicionais */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-button:hover {
    animation: pulse 1.5s infinite;
}

.skin-tag.participate:hover {
    transform: scale(1.1);
}

/* Responsividade */
@media screen and (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .stats {
        margin: 0 auto;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 85%;
        margin: 0 auto;
    }

    .hero-image img {
        transform: scale(1.1);
    }

    .character-container {
        flex-direction: column;
        align-items: center;
    }

    .character {
        width: 80%;
        margin-bottom: 20px;
    }

    .trades {
        margin-bottom: 3px;
    }

    .hero-image {
        max-width: 90%;
    }
    
    .hero-image img {
        transform: scale(1);
    }

    .trades {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    /* Remover regras conflitantes */
    .nav-links {
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stats {
        flex-direction: row;
        padding: 15px;
        gap: 10px;
    }
    
    .stat-item {
        flex: 1;
        padding: 5px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .skin-tag {
        font-size: 0.7rem;
        padding: 6px 8px;
    }
    
    .skin-info {
        padding: 12px;
        gap: 8px;
        flex-direction: column;
    }
    
    .trades {
        margin-bottom: 3px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .skin-card {
        width: 280px;
        height: auto;
    }
    
    .skin-image img {
        width: 100%;
        height: auto;
    }

    .skins-carousel {
        position: relative;
    }

    .carousel-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .carousel-button.prev {
        left: 5px;
    }

    .carousel-button.next {
        right: 5px;
    }
    
    .skin-info {
        padding: 10px;
        flex-direction: column;
        gap: 8px;
    }
    
    .skin-tag {
        font-size: 0.65rem;
        padding: 5px 7px;
        width: 100%;
    }
    
    .skin-tag.trades.trade-type,
    .skin-tag.trades.premios-type,
    .skin-tag.trades.resenha-type {
        max-width: 100%;
    }
    
    .stats {
        flex-direction: row !important;
        gap: 10px;
        padding: 10px;
    }
    
    .stat-item {
        width: auto;
        flex: 1;
        padding: 5px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .skins-carousel, .members, .characters {
    animation: fadeIn 1s ease;
}

/* Estilos para elementos com reveal on scroll */
.hero.active, 
.skins-carousel.active, 
.members.active, 
.characters.active, 
.footer-content.active {
    animation: fadeIn 1s ease forwards;
}

/* Animação do carrossel */
@keyframes infiniteCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 4)); /* Move um conjunto completo */
    }
}

/* Ajustes para diferentes tamanhos de tela */
@media screen and (min-width: 1600px) {
    .skin-card {
        width: 360px;
    }
    
    .skin-image {
        height: 380px;
    }
    
    .skin-tag {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .carousel-button {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 1200px) {
    .skin-card {
        width: 300px;
    }
    
    .skin-image {
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .skin-card {
        width: 280px;
    }
    
    .skin-image {
        height: 300px;
    }
    
    .skin-tag {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .carousel-button {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Ajustes para scroll-snap e posicionamento das seções */
html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

body {
    background-color: var(--primary-black);
    color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

main {
    width: 100%;
    overflow-x: hidden;
}

/* Ajuste para todas as seções principais */
section#hero,
section#skins-carousel,
section#characters {
    scroll-snap-align: start;
    scroll-margin-top: 120px; /* Ajuste para compensar a altura do header */
    min-height: calc(100vh - 120px); /* Altura mínima para ocupar a tela inteira menos o header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px; /* Espaço para o header fixo */
    padding-bottom: 40px;
    box-sizing: border-box;
}

/* Ajustes específicos para cada seção */
section#hero {
    min-height: 100vh; /* A hero pode ocupar a tela inteira */
    padding-top: 120px;
    padding-bottom: 0;
}

section#skins-carousel {
    padding: 140px 2% 80px;
}

section#characters {
    padding: 120px 5% 80px;
}

/* Ajuste para o footer */
footer {
    scroll-snap-align: start;
}

/* Ajustes para o header fixo */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-black);
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

/* Responsividade */
@media screen and (max-width: 768px) {
    section#hero,
    section#skins-carousel,
    section#characters {
        scroll-margin-top: 85px; /* Header menor em telas pequenas */
        padding-top: 85px;
    }
    
    section#skins-carousel {
        padding: 100px 2% 60px;
    }
}

/* Timeline Section */
.timeline {
    --accent-red: #ff1744;
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #0f1420 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
}

.timeline h2{
    color: white !important;
}

/* Animated background pattern */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(88, 177, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 23, 68, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(88, 177, 255, 0.02) 49%, rgba(88, 177, 255, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 23, 68, 0.02) 49%, rgba(255, 23, 68, 0.02) 51%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
    animation: backgroundShimmer 60s linear infinite;
    opacity: 0.5;
}

/* Floating particles effect */
.timeline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 23, 68, 0.1) 0%, transparent 1%),
        radial-gradient(circle at 30% 70%, rgba(88, 177, 255, 0.1) 0%, transparent 1%),
        radial-gradient(circle at 70% 30%, rgba(255, 23, 68, 0.1) 0%, transparent 1%),
        radial-gradient(circle at 20% 20%, rgba(149, 97, 226, 0.1) 0%, transparent 1%),
        radial-gradient(circle at 80% 80%, rgba(255, 23, 68, 0.1) 0%, transparent 1%);
    background-size: 100px 100px, 120px 120px, 80px 80px, 90px 90px, 110px 110px;
    animation: particleFloat 30s linear infinite;
    opacity: 0.3;
}

/* Light beam effect */
.timeline-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(88, 177, 255, 0.02) 45%,
        rgba(149, 97, 226, 0.02) 55%, 
        transparent 100%);
    transform: translateX(-50%);
    filter: blur(10px);
    pointer-events: none;
}

@keyframes backgroundShimmer {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 0 0, 60px 60px, 60px 60px;
    }
}

@keyframes particleFloat {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 200px 200px, -200px 200px, 200px -200px, -200px -200px, 200px 200px;
    }
}

/* Enhance existing glow effects */
.timeline-dot {
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.2),
        0 0 45px rgba(255, 215, 0, 0.1);
}

.timeline-card {
    background: rgba(255, 215, 0, 0.03);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.05);
}

.timeline-card:hover {
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.1),
        0 0 50px rgba(255, 215, 0, 0.05);
}

/* Rest of the existing timeline styles remain unchanged */
.timeline h2 {
    text-align: center;
    color: var(--accent-red);
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 23, 68, 0.3);
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-red), #58B1FF);
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: -100px;  
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--accent-red);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #1a1f35;
    z-index: 2;
    top: 20px;  /* Ajustando um pouco mais para cima também */
    box-shadow: 
        0 0 15px rgba(88, 177, 255, 0.5),
        0 0 30px rgba(255, 23, 68, 0.3);
}

.timeline-content {
    width: 40%;
    padding: 20px;
    position: relative;
    margin-bottom: 0;  /* Removendo margem bottom */
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 2px;
    background: #FFD700;
}

.timeline-content.left {
    margin-left: 5%;
}

.timeline-content.right {
    margin-left: 55%;
}

.timeline-date {
    font-size: 1.2rem;
    color: var(--accent-red);
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
}

.timeline-card {
    background: rgba(88, 177, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 23, 68, 0.1);
    transition: all 0.3s ease;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(45deg, transparent, rgba(88, 177, 255, 0.03));
    z-index: -1;
}

.timeline-card:hover {
    transform: translateY(-5px);
    background: rgba(88, 177, 255, 0.05);
    border: 1px solid var(--accent-red);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(88, 177, 255, 0.1),
        0 0 50px rgba(255, 23, 68, 0.1);
}

.timeline-icon {
    text-align: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(255, 23, 68, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 23, 68, 0.2);
    cursor: pointer;
}

.timeline-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--accent-red), #58B1FF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    transition: transform 0.5s ease;
}

.timeline-icon:hover i {
    transform: rotate(-360deg);
    transition: transform 0.5s ease;
}

/* Removendo animações antigas */
.timeline-card:hover {
    transform: translateY(-5px);
    background: rgba(88, 177, 255, 0.05);
    border: 1px solid var(--accent-red);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(88, 177, 255, 0.1),
        0 0 50px rgba(255, 23, 68, 0.1);
}

.timeline-card h3 {
    color: #58B1FF;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 10px rgba(88, 177, 255, 0.2);
}

.timeline-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-red);
    margin: 10px auto 0;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
}

.timeline-card p {
    color: #a8b8d0;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-content::before {
        display: none;
    }

    .timeline-content.left::before,
    .timeline-content.right::before {
        display: none;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .timeline-dot {
        left: 20px;
        top: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 40px);
        margin-left: 40px !important;
        padding: 15px;
    }

    .timeline-content.left,
    .timeline-content.right {
        margin-left: 40px !important;
    }

    .timeline-card {
        padding: 15px;
    }

    .timeline-date {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .timeline-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .timeline-container::before {
        left: 15px;
    }
    
    .timeline-dot {
        left: 15px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-content {
        width: calc(100% - 30px);
        margin-left: 30px !important;
        padding: 12px;
    }

    .timeline-content.left,
    .timeline-content.right {
        margin-left: 30px !important;
    }
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Botão flutuante do WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Ajuste para mobile */
@media screen and (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }
} 

.skins-grid {
    padding: 4rem 2rem;
    background: #1a1a1a;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.skin-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skin-card:hover {
    transform: translateY(-5px);
}

.skin-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.skin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skin-info {
    padding: 1.5rem;
    text-align: center;
}

.group-name {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.skin-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.skin-tag.participate {
    background: #25D366;
    color: white;
}

.skin-tag.participate:hover {
    background: #128C7E;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }

    .skin-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .skin-image {
        height: 180px;
    }

    .skin-info {
        padding: 1rem;
    }

    .group-name {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .skin-tag {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }

    .skin-image {
        height: 190px;
    }
}

@media (min-width: 1025px) and (max-width: 1400px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
} 