:root {
    --bg-primary: #050508;
    --bg-secondary: #0a0a12;
    --bg-card: #12121c;
    --bg-card-hover: #1a1a28;
    --accent: #2d5a87;
    --accent-light: #4a7ab8;
    --purple: #6b4ee6;
    --purple-light: #9d7bff;
    --purple-dark: #4a3aa0;
    --text-primary: #ffffff;
    --text-secondary: #8a8aa0;
    --border: #1e1e2e;
    --gradient: linear-gradient(135deg, #2d5a87 0%, #6b4ee6 100%);
    --gradient-purple: linear-gradient(135deg, #6b4ee6 0%, #9d7bff 100%);
    --glow-blue: 0 0 30px rgba(45, 90, 135, 0.5);
    --glow-purple: 0 0 30px rgba(107, 78, 230, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Fundo Animado Futurista */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-floor {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 100%;
    background-image:
        linear-gradient(rgba(107, 78, 230, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 90, 135, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--purple-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--purple-light);
    animation: float 15s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 40%;
    top: 60%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 30%;
    animation-delay: 8s;
}

.particle:nth-child(6) {
    left: 60%;
    top: 70%;
    animation-delay: 10s;
}

.particle:nth-child(7) {
    left: 70%;
    top: 50%;
    animation-delay: 12s;
}

.particle:nth-child(8) {
    left: 80%;
    top: 25%;
    animation-delay: 14s;
}

.particle:nth-child(9) {
    left: 90%;
    top: 75%;
    animation-delay: 1s;
}

.particle:nth-child(10) {
    left: 15%;
    top: 55%;
    animation-delay: 3s;
}

.particle:nth-child(11) {
    left: 25%;
    top: 15%;
    animation-delay: 5s;
}

.particle:nth-child(12) {
    left: 35%;
    top: 85%;
    animation-delay: 7s;
}

.particle:nth-child(13) {
    left: 45%;
    top: 45%;
    animation-delay: 9s;
}

.particle:nth-child(14) {
    left: 55%;
    top: 65%;
    animation-delay: 11s;
}

.particle:nth-child(15) {
    left: 65%;
    top: 35%;
    animation-delay: 13s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 60%;
    right: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--purple-dark);
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }

    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
    animation: lineMove 8s linear infinite;
    opacity: 0.3;
}

.line:nth-child(1) {
    top: 20%;
    width: 100%;
    animation-delay: 0s;
}

.line:nth-child(2) {
    top: 40%;
    width: 80%;
    left: 10%;
    animation-delay: 2s;
}

.line:nth-child(3) {
    top: 60%;
    width: 60%;
    left: 20%;
    animation-delay: 4s;
}

.line:nth-child(4) {
    top: 80%;
    width: 90%;
    left: 5%;
    animation-delay: 6s;
}

@keyframes lineMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

/* Navegação */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo {
    cursor: pointer;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 700;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px var(--purple));
    }

    to {
        filter: drop-shadow(0 0 20px var(--purple-light));
    }
}

.nav-links {
    display: flex;
    gap: clamp(1rem, 3vw, 2.5rem);
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.85rem, 2vw, 1rem);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--purple-light);
    text-shadow: 0 0 10px var(--purple);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--purple-light);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--purple);
}

/* Seções */
section {
    min-height: 100vh;
    padding: 6rem 5% 4rem;
    display: none;
    position: relative;
}

section.active {
    display: block;
}

/* Hero - Melhorado para PC */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(3rem, 8vw, 8rem);
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 8rem);
    padding: 0 2rem;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: clamp(1rem, 1.5vw, 1.2rem) clamp(2rem, 3vw, 3rem);
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.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 ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-purple);
}

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
}

.ar-device {
    width: clamp(300px, 35vw, 500px);
    height: clamp(300px, 35vw, 500px);
    background: var(--bg-card);
    border-radius: 30px;
    border: 2px solid var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(107, 78, 230, 0.4),
        inset 0 0 60px rgba(107, 78, 230, 0.1);
}

.ar-device::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--purple), var(--accent), transparent 30%);
    animation: rotate 4s linear infinite;
}

.ar-device::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--bg-card);
    border-radius: 28px;
}

.ar-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.ar-icon {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.ar-content p {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: var(--text-secondary);
    margin: 0;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px var(--purple));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px var(--purple-light));
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Produtos */
.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    padding-top: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-purple);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

.game-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: var(--glow-purple);
    background: var(--bg-card-hover);
}

.game-card:hover::before {
    transform: scaleX(1);
}

.game-preview {
    height: clamp(160px, 15vw, 200px);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.game-preview::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(107, 78, 230, 0.2) 0%, transparent 70%);
}

.game-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(107, 78, 230, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.game-info {
    padding: clamp(1.2rem, 2vw, 1.8rem);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-info h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    margin-bottom: 0.8rem;
    color: var(--purple-light);
    text-shadow: 0 0 10px rgba(157, 123, 255, 0.3);
}

.game-info p {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.tag {
    padding: 0.4rem 0.9rem;
    background: rgba(107, 78, 230, 0.1);
    border-radius: 20px;
    font-size: clamp(0.75rem, 0.9vw, 0.85rem);
    color: var(--purple-light);
    border: 1px solid var(--purple-dark);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(107, 78, 230, 0.3);
    box-shadow: 0 0 10px rgba(107, 78, 230, 0.3);
}

/* NOVO DESIGN - Empresa */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.about-hero h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-hero h2 span {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .tagline {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-text-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-purple);
}

.about-text-card:hover {
    border-color: var(--purple);
    transform: translateX(5px);
}

.about-text-card p {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    margin: 0;
}

/* Stats redesenhados */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(107, 78, 230, 0.1) 0%, rgba(45, 90, 135, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    border-color: var(--purple);
    box-shadow: var(--glow-purple);
    transform: translateY(-5px);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item h3 {
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    color: var(--purple-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(157, 123, 255, 0.3);
}

.stat-item p {
    color: var(--text-secondary);
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    margin: 0;
    line-height: 1.5;
}

/* Team Section */
.about-visual {
    position: sticky;
    top: 100px;
}

.team-section-title {
    font-size: 1.2rem;
    color: var(--purple-light);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.team-member {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: var(--glow-purple);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member .avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(107, 78, 230, 0.5);
    transition: all 0.3s ease;
}

.team-member:hover .avatar {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(107, 78, 230, 0.7);
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.team-roles {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.team-roles p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(107, 78, 230, 0.1);
}

.team-roles p:last-child {
    border-bottom: none;
}

/* Contacto */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-card);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-purple);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 15px rgba(107, 78, 230, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.contact-item {
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    border-color: var(--purple);
    box-shadow: var(--glow-purple);
    transform: translateY(-5px);
}

.contact-item .icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--purple-light);
    text-shadow: 0 0 10px rgba(157, 123, 255, 0.5);
}

.contact-item h4 {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--purple-light);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(5, 5, 8, 0.8);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--gradient-purple);
}

/* Responsivo - Tablet */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
        gap: 3rem;
    }

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

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        margin: 0 auto;
    }

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

    .about-visual {
        position: relative;
        top: 0;
        order: -1;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .team-member {
        flex: 1;
        min-width: 280px;
        max-width: 400px;
    }
}

/* Responsivo - Mobile */
@media (max-width: 640px) {
    nav {
        padding: 1rem 4%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 18, 0.98);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border);
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    section {
        padding: 5rem 4% 3rem;
    }

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

    .team-grid {
        flex-direction: column;
    }

    .team-member {
        min-width: 100%;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsivo - Pequenos dispositivos */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .ar-device {
        width: 260px;
        height: 260px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

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

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

.game-card,
.team-member,
.contact-item,
.stat-item,
.about-text-card {
    animation: fadeIn 0.6s ease forwards;
}

.game-card:nth-child(2) {
    animation-delay: 0.1s;
}

.game-card:nth-child(3) {
    animation-delay: 0.2s;
}