* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
      background-color: #000;

    overflow-x: hidden;
}



/* ======================== PARALLAX ======================== */
#parallax-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: url("assets/bg/parallax.jpg") center / cover no-repeat;
    z-index: -3;
    filter: brightness(35%) saturate(140%);
    transform: translateY(0px);
    transition: transform 0.2s linear;
}

/* ======================== PARTÍCULAS ======================== */
#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

/* ======================== NAVBAR ======================== */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    background: rgba(0, 0, 0, 0);
    transition: 0.4s ease;
    z-index: 20;
    opacity: 0;          /* oculto por padrão */
    pointer-events: none;
}

#navbar.show {
    opacity: 1;          /* aparece */
    background: rgba(0, 0, 0, 0.6);
    pointer-events: auto;
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    padding: 12px 40px;
}

/* ======================== HERO ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
}

/* Logo */
.logo {
    width: 420px;
    max-width: 90%;
    opacity: 0;
    transform: scale(0.6) translateY(40px);
    animation: logoEntrance 1.8s ease forwards;
}

@keyframes logoEntrance {
    0% { opacity: 0; transform: scale(0.6) translateY(40px); }
    50% { opacity: 1; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

/* Tagline */
.tagline {
    font-size: 1.8rem;
    font-weight: 600;
    max-width: 800px;
    margin-top: 35px;
    opacity: 0;
    transform: translateY(20px);
    color: #fff;
    animation: taglineFade 1.5s ease forwards;
    animation-delay: 1.3s;
}

.tagline-description {
    font-size: 1.0rem;
    font-weight: 600;
    max-width: 800px;
    margin-top: 35px;
    opacity: 0;
    transform: translateY(20px);
    color: #fff;
    animation: taglineFade 1.5s ease forwards;
    animation-delay: 1.3s;
}

@keyframes taglineFade {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Botão Saiba Mais */
.saiba-mais {
    margin-top: 45px;
    padding: 12px 26px;
    font-size: 1.1rem;
    background: #d45500;
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.saiba-mais:hover {
    transform: scale(1.06);
    box-shadow: 0 0 22px #d45500;
}

/* ======================== INFO SECTIONS ======================== */
.info-section {
    padding: 120px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}
.info-section p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #dcdcdc;
}

/* Fade moderno */
.fade-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.fade-element.visible {
    opacity: 1;
    transform: translateY(0);
}

#cityLights {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

.glass-box {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    padding: 40px;
    margin: 100px auto;
    width: min(800px, 90%);
}

.hero-description {
    max-width: 800px;
    margin: 40px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.9;
}

.city-gallery {
    margin: 40px auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.city-gallery img {
    width: 300px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Botão fixo */
.instagram-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ff7828;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.25s ease;
    z-index: 999;
}

/* Ícone branco */
.instagram-floating img {
    width: 24px;
    height: 24px;
}

/* Hover no desktop */
.instagram-floating:hover {
    transform: scale(1.07);
    background: #ff8e4f;
}

/* MOBILE — só aparece o ícone */
@media (max-width: 600px) {
    .instagram-floating {
        padding: 12px;
        border-radius: 50%;
    }

    .instagram-floating span {
        display: none;
    }
}

.carreira-subtopics {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}


.subtopic-title {
  font-size: 1.6rem;
  color: #ffffff; 
  padding: 30px;
}

.subtopic p {
    color: #ffffff;
    line-height: 1.6;
}

/* ======= FAIXA ======= */
.steam-banner {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    background: #000;
    margin-top: 80px;
    border-top: 2px solid #ff6a00;
    border-bottom: 2px solid #ff6a00;
    backdrop-filter: blur(5px);
}

/* ======= TÍTULO DA FAIXA ======= */
.steam-title {
    font-size: 2rem;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 35px;

    /* Borda externa roxa para destacar sem confundir com o fundo */
    text-shadow:
        -2px -2px 0 #6f1aff,
         2px -2px 0 #6f1aff,
        -2px  2px 0 #6f1aff,
         2px  2px 0 #6f1aff;
}

/* ======= BOTÃO STEAM ======= */
.steam-wishlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 16px 34px;
    background: #ff6a00;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;

    box-shadow: 0 0 12px rgba(255, 106, 0, 0.5);
    transition: 0.25s ease;
}

.steam-wishlist-btn:hover {
    background: #ff7f2e;
    box-shadow: 0 0 20px rgba(255, 120, 40, 0.7);
    transform: scale(1.06);
}

/* Ícone + bonito e proporcional */
.plus-icon {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 900;
    margin-right: 4px;
}

/* Botão fixo */
.lista-desejo {
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ff7828;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.25s ease;
    z-index: 999;
}

