/* Cores e Variáveis */
:root {
    --color-primary: #ff6300; 
    --color-secondary: #000000; 
    --color-text-light: #a6a6a6; /* Cor do texto cinza: #a6a6a6 */
    --max-content-width: 650px; 
    --nav-height: 50px; 
    --image-frame-max-width: 520px; /* Largura máxima da moldura de revista */
}

/* ---------------------------------------------------- */
/* RESET E ESTILO GLOBAL */
/* ---------------------------------------------------- */

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

body {
    font-family: 'Avenir Next', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-secondary); 
    color: var(--color-text-light); 
    line-height: 1.5; 
    font-size: 16px; 
}

/* Layout Principal - Centralizando e Limitando a Largura */
.container {
    width: 90%; 
    max-width: var(--max-content-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px; 
}

/* CLASSE GERAL DE SEÇÃO: SEM PADDING VERTICAL */
.section {
    padding: 0; 
    text-align: center; 
    background-color: var(--color-secondary); 
    position: relative; 
    overflow-x: hidden; /* CORREÇÃO MOBILE: Previne rolagem horizontal */
}

/* NOVA CLASSE PARA AS SEÇÕES DE CONTEÚDO (texto, vídeo, contato) */
.text-content-section {
    padding: 60px 0; /* Aplica o padding apenas onde há conteúdo de texto */
}

/* Fundo alternado para as seções de conteúdo */
.darker-bg {
    background-color: #111111; 
}

/* ---------------------------------------------------- */
/* MENU DE NAVEGAÇÃO SUPERIOR (Centralizado) */
/* ---------------------------------------------------- */

.main-nav-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999; 
    display: flex;
    justify-content: center; 
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px; 
    padding: 0;
    width: 100%; 
    justify-content: center; 
}

.nav-link {
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-text-light);
}


/* ---------------------------------------------------- */
/* ESTILO GERAL DE TÍTULOS E PARÁGRAFOS */
/* ---------------------------------------------------- */

.section h2 {
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
    font-size: 2rem;
    letter-spacing: 2px;
}

.section p {
    text-align: center; 
    margin-bottom: 20px; 
}

.highlight-text {
    color: var(--color-primary);
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Estilo para destacar texto inline em laranja (cor primária) - SEM NEGRITO */
.inline-highlight {
    color: var(--color-primary);
    font-weight: normal; 
}

/* Texto das seções de "revista": todo cinza e justificado */
.no-highlight-text {
    color: var(--color-text-light); 
    font-weight: normal; 
    margin-top: 20px;
    font-size: 15px; 
    text-transform: none; 
    text-align: justify !important; 
    line-height: 1.3; 
}

/* ---------------------------------------------------- */
/* ESTRUTURA VISUAL DE REVISTA (Hero, About, Music, Media, Gallery, Page6) */
/* ---------------------------------------------------- */
.hero-visual-frame,
.about-visual-frame,
.music-visual-frame,
.media-visual-frame,
.gallery-visual-frame,
.page6-visual-frame 
{
    width: 98%; 
    max-width: var(--image-frame-max-width); 
    aspect-ratio: 1 / 1.2; 
    margin: 0 auto; 
    position: relative;
    overflow: hidden;
    /* Hero não tem sombra; outras têm */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
    border: none;
}

.hero-visual-frame { box-shadow: none; }

.hero-image-bg { background-image: url('capa_site_scardua_semlogo.png'); }
.about-image-bg { background-image: url('pagina_02_PT.png'); }
.music-image-bg { background-image: url('pagina_03.png'); }
.media-image-bg { background-image: url('pagina_04.png'); }
.gallery-image-bg { 
    background-image: url('pagina_05.png'); 
}
.page6-image-bg { 
    background-image: url('pagina_06.png');
}

/* Estilos Comuns para Background de Revista */
.hero-image-bg,
.about-image-bg,
.music-image-bg,
.media-image-bg,
.gallery-image-bg,
.page6-image-bg 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; 
    background-position: center;
    z-index: 1; 
}

/* Estilos Comuns para Overlays de Revista */
.hero-text-overlay,
.about-text-overlay,
.music-text-overlay,
.media-content-overlay,
.gallery-content-overlay,
.page6-content-overlay 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: 2;
    padding: 2.0cm 30px 40px 30px; /* Padding padrão de revista (bottom 40px) */
    display: flex; /* Adicionado display: flex para controle total do conteúdo interno */
    flex-direction: column; 
}
.page6-content-overlay {
    padding: 0; /* Nenhum padding, já que não há conteúdo de texto */
}

/* ---------------------------------------------------- */
/* ÍCONES SOCIAIS FLUTUANTES (NOVOS ESTILOS GLOBAIS) */
/* ---------------------------------------------------- */
.social-icons-global {
    position: fixed;
    top: 50%;
    left: 20px; /* Distância da borda esquerda */
    transform: translateY(-50%);
    z-index: 1000; /* Garante que fique acima de tudo */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    color: var(--color-primary);
    font-size: 24px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: white;
}
/* ---------------------------------------------------- */


/* ---------------------------------------------------- */
/* 1. HERO/CAPA - (CORREÇÕES: Logo e Botões) */
/* ---------------------------------------------------- */

.hero {
    height: 100vh;
    padding-top: var(--nav-height); 
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-overlay {
    align-items: center;
    justify-content: flex-end; /* Alinha o conteúdo para baixo */
    padding-bottom: 40px; 
}

/* CORREÇÃO: Posicionamento Flutuante da Logo */
.main-logo-on-capa {
    width: 60%; 
    max-width: 300px; 
    height: auto;
    /* POSICIONAMENTO FLUTUANTE */
    position: absolute;
    bottom: 35%; /* Ajustado para flutuar acima dos botões */
    left: 50%;
    transform: translateX(-50%);
    margin: 0; 
    z-index: 3;
}

/* Container de Botões */
.main-nav-buttons-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 400px; 
    margin-top: auto; 
    z-index: 3;
}

.nav-item {
    text-align: center;
    flex: 1; 
}

/* CORREÇÃO: Botão Quadrado agora usa a imagem 'botao_inicial.png' */
.nav-btn {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 5px auto;
    background-color: transparent; /* Remove a cor sólida */
    background-image: url('botao_inicial.png'); /* Define a imagem de fundo */
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    transition: filter 0.3s; /* Transição para o efeito de hover */
    text-decoration: none; 
}

.nav-btn:hover {
    background-color: transparent; /* Mantém transparente */
    filter: brightness(1.2); /* Efeito de brilho na imagem ao passar o mouse */
}

/* ---------------------------------------------------- */
/* 2. ABOUT/SOBRE */
/* ---------------------------------------------------- */
.about-text-overlay { 
    /* Manter estilos existentes */ 
}


/* ---------------------------------------------------- */
/* 3. MÚSICA - Alinhamento ao Rodapé */
/* ---------------------------------------------------- */
.music-text-overlay {
    /* Garante que o conteúdo seja empurrado para o final (bottom) do container */
    justify-content: flex-end; 
}
.music-player-container {
    width: 100%;
    max-width: 400px; /* Limita o tamanho do player */
    margin: 40px auto 0 auto; /* Empurra para baixo com margem superior e centraliza */
}


/* ---------------------------------------------------- */
/* 4. MÍDIA E VÍDEOS (Diminuição do tamanho e Centralização) */
/* ---------------------------------------------------- */

.media-content-overlay {
    /* Centralização Vertical e Horizontal */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: 2;
    padding: 40px 30px;
    overflow-y: auto; 
}

.video-grid {
    width: 100%;
    max-width: 350px; /* AJUSTADO: Limita a largura do grid para 350px */
    margin: 0 auto; /* Garante a centralização horizontal */
    display: flex;
    flex-direction: column; 
    gap: 20px;
}

.video-item {
    width: 100%;
}

/* Wrapper para manter a proporção 16:9 do vídeo e garantir clique */
.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9 / 16 * 100) */
    height: 0;
    overflow: hidden;
    border: 2px solid var(--color-primary); 
    border-radius: 5px;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Garante que o iframe seja clicável e funcional */
    pointer-events: auto; 
}


/* ---------------------------------------------------- */
/* 5. GALERIA DE IMAGENS (GRID) */
/* ---------------------------------------------------- */

.gallery-content-overlay {
    padding: 10px; 
    background-color: rgba(0, 0, 0, 0.5); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-gallery-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
    gap: 8px; 
    padding: 10px; 
    max-width: 500px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(255, 99, 0, 0.5); 
    aspect-ratio: 1 / 1; 
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--color-primary); 
}

.responsive-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* ---------------------------------------------------- */
/* LIGHTBOX / CARROSSEL MODAL */
/* ---------------------------------------------------- */

.lightbox {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); 
    overflow: hidden;
    touch-action: none; 
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 900px; 
    max-height: 90vh; 
    object-fit: contain; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}

.lightbox-close {
    position: fixed;
    top: 15px;
    right: 35px;
    color: var(--color-primary);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #fff;
    text-decoration: none;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

/* ---------------------------------------------------- */
/* 6. CONTATO */
/* ---------------------------------------------------- */
.mt-5 {
    margin-top: 50px;
}
.full-width-text {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 0;
}
.contact-link {
    color: var(--color-primary);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}
.download-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background-color: var(--color-primary);
    color: var(--color-secondary); 
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.download-button:hover {
    background-color: #ff8800;
}
footer {
    padding: 30px 0;
    font-size: 0.8rem;
    text-align: center;
    color: #666;
    border-top: 1px solid rgba(255, 99, 0, 0.2); 
}


/* ---------------------------------------------------- */
/* RESPONSIVIDADE (MOBILE) - OTIMIZAÇÕES DE LAYOUT */
/* ---------------------------------------------------- */

@media (max-width: 768px) {
    /* AJUSTE GERAL: Fonte base ligeiramente menor */
    body {
        font-size: 15px; 
    }
    
    /* AJUSTE DE MENU: Mais compacto */
    .nav-links {
        gap: 10px; /* Reduz o espaçamento entre os links */
    }
    .nav-link {
        font-size: 0.7rem; /* Fonte menor para caber */
    }
    
    /* AJUSTE DE TÍTULOS */
    .section h2 {
        font-size: 1.3rem;
        margin-bottom: 20px; 
    }
    
    /* AJUSTE CRÍTICO: Ícones Sociais (Menos invasivo) */
    .social-icons-global {
        left: 10px; /* Distância da borda */
        gap: 8px; /* Espaço entre os ícones */
        top: 50%; 
    }
    .social-icon {
        font-size: 20px; /* Ícones menores */
    }

    /* AJUSTE CRÍTICO: HERO/CAPA */
    .hero-text-overlay {
        padding: 80px 10px 40px 10px; /* Padding interno da "revista" */
    }
    .main-logo-on-capa {
        width: 70%; /* Levemente maior no mobile para dar mais impacto */
        max-width: 250px;
        bottom: 40%; /* Posicionamento ajustado */
    }
    .main-nav-buttons-container {
        max-width: 90%; /* Garante que caiba na tela */
        margin-top: auto; 
    }
    .nav-btn {
        width: 35px; /* Botões menores */
        height: 35px;
    }
    .nav-btn-text {
        font-size: 0.6rem; /* Texto dos botões menores */
    }

    /* AJUSTE DE VÍDEO E MÍDIA */
    .media-content-overlay {
        padding: 20px 10px; /* Reduz o padding interno do overlay */
    }
    .video-grid {
        max-width: 90%; /* Usa mais da largura da tela */
    }
    
    /* AJUSTE DE GALERIA */
    .image-gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* Mantém 3 colunas para boa visualização */
        gap: 5px; /* Reduz o espaço entre as fotos */
    }

    /* AJUSTE DO LIGHTBOX/CARROSSEL */
    .lightbox-content {
        width: 95%;
        max-width: 100%;
    }
    .lightbox-prev, .lightbox-next {
        font-size: 20px;
        padding: 10px;
        margin-top: -15px;
    }
    .lightbox-close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
}

/* Fim da Regra de Responsividade */
