/* ---------------------------------------------------- */
/* 1. ESTILOS GERAIS E LAYOUT */
/* ---------------------------------------------------- */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Fundo totalmente preto */
    color: #fff; /* Texto principal branco */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.hero-section {
    background-color: #000;
    color: white;
    /* REDUÇÃO DE ESPAÇAMENTO */
    padding: 40px 0; 
    text-align: center;
}

.content-section {
    /* ADIÇÃO DA LINHA BRANCA FINA */
    border-top: 1px solid white;
    padding: 40px 0;
    background-color: #000;
}

h2, h3, h4 {
    color: #fff; /* Branco puro para os títulos */
    text-align: center;
    margin-bottom: 20px;
}

/* ---------------------------------------------------- */
/* 2. ESTILOS DO SLIDER DE IMAGENS (Artistas) */
/* ---------------------------------------------------- */

.gallery-slider-container {
    width: 100%;
    overflow: hidden; 
    margin-bottom: 40px;
    white-space: nowrap; 
    padding: 10px 0;
}

.gallery-wrapper {
    display: inline-flex;
    animation: slide-left 20s linear infinite; 
    transition: transform 0.1s linear; 
}

.gallery-item {
    width: 300px; 
    height: 200px;
    object-fit: cover; 
    flex-shrink: 0;
    margin: 0 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}


/* ---------------------------------------------------- */
/* 3. ESTILOS DA GALERIA DE VÍDEOS (Performance) */
/* ---------------------------------------------------- */

#videoFeed {
    display: grid;
    /* Força uma única coluna para todos os vídeos */
    grid-template-columns: 1fr; 
    gap: 20px;
    margin-top: 20px;
}

.video-container {
    position: relative;
    width: 100%; 
    /* PADRÃO: Proporção 16:9 para vídeos "deitados" */
    padding-bottom: 56.25%; /* (9 / 16) * 100% */
    height: 0;
    overflow: hidden;
    cursor: pointer;
    background-color: #1a1a1a; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* CLASSE PARA VÍDEOS VERTICAIS */
.video-vertical {
    /* Proporção 9:16 para vídeos "em pé" */
    padding-bottom: 177.77%; /* (16 / 9) * 100% */
}

/* A REGRA CRÍTICA PARA REMOÇÃO DE ESPAÇO VAZIO (Peter.mp4) */
.video-container:empty {
    display: none !important; 
}

.responsive-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 'cover' para preencher o contêiner sem bordas, cortando as pontas se necessário */
    object-fit: cover; 
}

/* ---------------------------------------------------- */
/* 4. CONTROLES E OVERLAYS DOS VÍDEOS */
/* ---------------------------------------------------- */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: opacity 0.3s;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none; 
}

.play-button {
    font-size: 60px;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.video-container:hover .play-button {
    opacity: 1;
    transform: scale(1.1);
}

.volume-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 16px;
    cursor: pointer;
    z-index: 15; 
}

/* ---------------------------------------------------- */
/* 5. FOOTER E LISTAS */
/* ---------------------------------------------------- */

.service-list ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 30px;
}

.service-list li {
    padding: 5px 0;
    font-size: 1.1em;
    color: #fff; 
}

.footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 15px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #0056b3;
}
