/* =========================================
   ESTILOS GERAIS - ESTÉTICA ORIGINAL MTHSFILMS
   ========================================= */

/* Reset básico e fundo escuro */
* { margin: 0; padding: 0; box-sizing: border-box; }
body.inner-page { 
    background-color: #000; 
    color: #fff; 
    font-family: 'Inter', sans-serif; 
}

/* 1. CABEÇALHO (NAVBAR) */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 52px; height: 68px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.3rem; color: #fff; text-decoration: none; letter-spacing: 0.12em; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { 
    color: #aaa; text-decoration: none; font-size: 0.72rem; font-weight: 500; 
    letter-spacing: 0.18em; text-transform: uppercase; position: relative; 
    padding-bottom: 3px; transition: color 0.3s ease; 
}
.nav-links a::after { 
    content: ''; position: absolute; bottom: 0; left: 0; 
    width: 0; height: 1px; background: #e5b63a; transition: width 0.3s ease; 
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle { display: none; background: transparent; border: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 1px; background: #fff; }

/* 2. BOTÕES DE FILTRO E CABEÇALHO DA COLEÇÃO (Estética Original Restaurada) */
.collections-section { padding: 0 52px 80px; max-width: 1100px; margin: 0 auto; }
.col-header { text-align: center; padding: 4px 0 20px; }
.col-label { color: #e5b63a; font-size: 0.72rem; letter-spacing: 0.45em; font-weight: 600; text-transform: uppercase; }

.filter-tabs { 
    display: flex; justify-content: center; gap: 0; 
    margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); 
}
.ftab { 
    background: transparent; border: none; border-bottom: 2px solid transparent; 
    color: #666; font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 500; 
    letter-spacing: 0.16em; cursor: pointer; transition: all 0.3s ease; 
    padding: 13px 22px; display: flex; align-items: center; gap: 9px; 
    margin-bottom: -1px; text-transform: uppercase;
}
.ftab .ftab-count { 
    background: rgba(229, 182, 58, 0.15); color: #e5b63a; font-size: 0.6rem; 
    padding: 2px 7px; border-radius: 10px; font-weight: 700; 
}
.ftab:hover { color: #fff; }
.ftab.active { color: #e5b63a; border-bottom-color: #e5b63a; }
.ftab.active .ftab-count { background: #e5b63a; color: #000; }

/* 3. GRADE DE VÍDEOS / FOTOS (CARDS) */
.video-grid, .collection-grid { 
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; 
}
.vcard, .collection-card { 
    text-align: left; cursor: pointer; text-decoration: none; 
    display: block; transition: transform 0.3s ease; background: transparent; border: none;
}
.vcard:hover, .collection-card:hover { transform: translateY(-6px); }

/* Formato da imagem travado com proporção de cinema */
.vcard-thumb, .collection-cover { 
    position: relative; width: 100%; aspect-ratio: 16/9; 
    border-radius: 10px; overflow: hidden; margin-bottom: 14px; 
    background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06); 
    transition: border 0.3s ease, box-shadow 0.3s ease;
}
.vcard-thumb img, .collection-cover img { 
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; 
}
.vcard:hover .vcard-thumb img, .collection-card:hover .collection-cover img { 
    transform: scale(1.05); 
}

/* Efeito dourado brilhante no card ativo */
.vcard--active .vcard-thumb, .collection-card:focus .collection-cover { 
    border-color: #e5b63a; 
    box-shadow: 0 0 20px rgba(229, 182, 58, 0.4); 
}

/* Playzinho sobre o vídeo */
.vcard-overlay { 
    position: absolute; inset: 0; background: rgba(0,0,0,0.45); 
    display: flex; align-items: center; justify-content: center; 
    opacity: 0; transition: opacity 0.3s ease; 
}
.vcard:hover .vcard-overlay { opacity: 1; }
.play-mini { 
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.35); 
    color: #fff; width: 44px; height: 44px; border-radius: 50%; backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.play-mini svg { width: 14px; height: 14px; fill: currentColor; margin-left: 2px; }
.play-mini:hover { transform: scale(1.12); background: rgba(229, 182, 58, 0.35); }

/* Emblemas e Textos Originais do Card */
.vcard-badge, .collection-badge { 
    position: absolute; bottom: 10px; left: 10px; 
    background: #e5b63a; color: #000; font-size: 0.58rem; letter-spacing: 0.1em;
    font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; z-index: 2; 
}
.vcard-info, .collection-info { padding: 0 2px; }
.vcard-cat, .collection-counter { 
    color: #e5b63a; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; 
    text-transform: uppercase; margin-bottom: 5px; display: block; 
}
.vcard h3, .collection-title { 
    color: #fff; font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 600; 
    line-height: 1.3; margin: 0; transition: color 0.3s ease; 
}
.vcard:hover h3, .collection-card:hover .collection-title { color: #e5b63a; }

/* 4. ANIMAÇÕES ORIGINAIS DE ENTRADA RESTAURADAS */
.reveal { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.65s ease, transform 0.65s ease; 
}
/* A animação acontece quando o JS do site adiciona a classe 'visible' ou 'active' */
.reveal.visible, .reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

/* 5. RESPONSIVIDADE BÁSICA */
@media (max-width: 1024px) { 
    .video-grid, .collection-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 768px) { 
    .navbar { padding: 0 24px; }
    .nav-links { display: none; } 
    .nav-toggle { display: flex; }
    .video-grid, .collection-grid { grid-template-columns: 1fr; } 
    .collections-section { padding: 0 24px 60px; }
    .filter-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; }
} /* =========================================
   5. HERO INTERNO (O Topo da Página e o Fade)
   ========================================= */

.inner-hero {
    position: relative;
    width: 100%;
    height: 60vh; /* Altura da imagem no topo */
    min-height: 450px;
    display: flex;
    align-items: flex-end; /* Joga o texto para a parte de baixo */
    padding-bottom: 50px;
    margin-top: 0;
}

.inner-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.inner-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Foca na parte superior/centro da imagem */
}

/* AQUI ESTÁ A MÁGICA DO FADE (DEGRADÊ) */
.inner-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0.6) 60%, 
        rgba(0,0,0,1) 100%
    );
}

.inner-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 8%; /* Alinhado com o restante do site */
}

.inner-tag {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e5b63a;
    font-weight: 700;
    margin-bottom: 12px;
}

.inner-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1;
}

.inner-title em {
    font-style: italic;
    font-weight: 300;
    color: #ccc;
}

.inner-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    color: #aaa;
    text-transform: uppercase;
}

/* Ajuste do Hero para Celulares */
@media (max-width: 768px) {
    .inner-hero { height: 50vh; min-height: 350px; }
    .inner-title { font-size: 32px; }
}