@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');

:root {
    --bg-color: #000000;
    --text-color: #f0f0f0;
    --glow-color-1: #ff295a;
    --glow-color-2: #050517;
    --glow-color-3: #490011;
    --card-bg: rgba(16, 16, 16, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

/* --- SEÇÕES GERAIS --- */
.section-hero, .section-final {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* --- HERO --- */
.main-title {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}
.main-title span {
    display: block;
}
.scroll-prompt {
    margin-top: 30px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

/* --- JORNADA INTERATIVA --- */
.section-journey {
    height: 400vh; /* Altura que define a duração da animação de rolagem */
    position: relative;
}

.journey-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-center-glow {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 20px 5px white, 0 0 50px 15px var(--glow-color-1);
    opacity: 0.5;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform-origin: center;
}

.vinicius-orbit {
    width: 200px;
    height: 200px;
}

.natan-orbit {
    width: 400px;
    height: 400px;
}

.particle {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.particle-v {
    background-color: var(--glow-color-1);
    box-shadow: 0 0 20px 5px var(--glow-color-1);
}

.particle-n {
    background-color: var(--glow-color-2);
    box-shadow: 0 0 20px 5px var(--glow-color-2);
}

/* --- PERFIS --- */
.profile-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5%;
    width: 80%;
    max-width: 1200px;
    visibility: hidden; /* Controlado via JS */
    opacity: 0;         /* Controlado via JS */
    transform: scale(0.8); /* Controlado via JS */
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(15px);
}

.profile-image-wrapper {
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex-grow: 1;
}

.profile-role {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.profile-vinicius .profile-role { color: var(--glow-color-1); }
.profile-natan .profile-role { color: var(--glow-color-1); }


.profile-name {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin: 10px 0 20px;
}

.profile-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 30px;
}

.profile-tags span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    margin: 5px;
}

/* --- SEÇÃO FINAL --- */
.section-final h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(90deg, var(--glow-color-1), var(--glow-color-3));
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--glow-color-1), 0 0 30px var(--glow-color-2);
}