/* ==========================================================================
   0. FONTS & BASE SETUP
   ========================================================================== */
@font-face {
    font-family: 'Brunson';
    src: url('../assets/fonts/brunson.woff2') format('woff2'),
         url('../assets/fonts/brunson.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   1. FIXED NAVIGATION HEADER
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-back {
    color: #86868b;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.btn-back:hover {
    color: #ff3b30;
}

header .logo a {
    font-family: 'Brunson', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 6px;
    padding-left: 6px;
    transition: opacity 0.3s ease;
}

header .logo a:hover {
    opacity: 0.8;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

header nav ul li a {
    color: #86868b;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #ffffff;
}

header nav ul li a.lang-toggle {
    border: 1px solid #86868b;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}

header nav ul li a.lang-toggle:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #000000;
}

/* ==========================================================================
   2. HERO SECTION & PREMIUM CINEMATIC BUTTON
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000000;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: grayscale(100%);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text h1 {
    font-family: 'Brunson', sans-serif;
    font-size: 5.5rem;
    font-weight: normal;
    letter-spacing: 14px;
    padding-left: 14px;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-text .tagline {
    font-size: 1.1rem;
    color: #a1a1a6;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.btn-trailer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.play-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-trailer:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-trailer:hover .play-icon {
    transform: scale(1.1);
}

.btn-trailer:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   3. TRAILER AREA
   ========================================================================== */
.trailer-area {
    background-color: #000000;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.trailer-area h2 {
    font-family: 'Brunson', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 50px;
    letter-spacing: 10px;
    padding-left: 10px;
    text-transform: uppercase;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   4. SOBRE / CONCEPT PAGE STYLES (DUAS IMAGENS SOBREPOSTAS)
   ========================================================================== */
.sobre-main {
    padding-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000000;
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.sub-manifesto {
    color: #ff3b30;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.sobre-content h1 {
    font-family: 'Brunson', sans-serif;
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: 12px;
    padding-left: 12px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.sobre-content .synopsis {
    color: #e8e8ed;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.technical-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.tech-box {
    background-color: #1c1c1e;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-box h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.tech-box p {
    color: #86868b;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Grid vertical para as duas imagens no Concept Still */
.sobre-media-stack {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px; /* Espaço entre a foto de cima e a de baixo */
}

.sobre-img-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sobre-img {
    width: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.sobre-img-wrapper:hover .sobre-img {
    filter: grayscale(0%);
}

.frame-counter {
    position: absolute;
    bottom: -25px;
    right: 5px;
    font-size: 0.7rem;
    color: #424245;
    letter-spacing: 1px;
}

/* ==========================================================================
   5. EQUIPA / CREDITS PAGE STYLES & EASTER EGG
   ========================================================================== */
.equipa-main {
    padding-top: 100px;
    background-color: #000000;
    min-height: 100vh;
}

.equipa-wrapper-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 60px 40px;
}

.team-block {
    margin-bottom: 80px;
}

.team-block h2 {
    font-family: 'Brunson', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 10px;
    padding-left: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-intro {
    color: #86868b;
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.member-card {
    text-align: center;
}

.member-card .img-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #1c1c1e;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.member-card:hover .member-img {
    filter: grayscale(0%);
}

.member-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.member-card .role {
    color: #86868b;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Custom Styles para o Easter Egg Misterioso */
.easter-egg-section {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.easter-egg-container {
    display: flex;
    justify-content: flex-start;
}

.easter-card {
    background-color: #0c0c0e;
    border: 1px solid rgba(255, 38, 38, 0.15);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 450px;
    transition: all 0.4s ease;
}

.img-container-easter {
    width: 90px;
    height: 90px;
    border-radius: 50%; /* Foto redondinha de arquivo */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.easter-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.3s ease;
}

.easter-details h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.badge {
    color: #ff3b30;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.easter-card:hover {
    border-color: #ff3b30;
    box-shadow: 0 0 20px rgba(255, 59, 48, 0.15);
    background-color: #121214;
}

.easter-card:hover .easter-img {
    filter: grayscale(0%);
}

/* ==========================================================================
   6. GLOBAL FOOTER
   ========================================================================== */
footer {
    background-color: #000000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    color: #424245;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   7. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 968px) {
    .sobre-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sobre-content h1 { font-size: 2.8rem; letter-spacing: 8px; padding-left: 8px; }
}

@media (max-width: 768px) {
    header { padding: 0 20px; }
    .header-left { gap: 15px; }
    header nav ul { gap: 15px; }
    .hero-text h1 { font-size: 3.5rem; letter-spacing: 8px; padding-left: 8px; }
    .hero-text .tagline { font-size: 0.95rem; }
    .trailer-area h2 { font-size: 1.8rem; letter-spacing: 6px; padding-left: 6px; }
    .team-block h2 { font-size: 2rem; letter-spacing: 6px; padding-left: 6px; }
    .technical-grid { grid-template-columns: 1fr; gap: 20px; }
    .easter-card { flex-direction: column; text-align: center; }
}