/* ============================================================
   EVENTO REALIZADO - PÁGINA DEDICADA
   Estilos específicos para a página do evento
   ============================================================ */

/* Header do evento */
.evento-header {
    padding: 2rem 0 2rem;
    text-align: center;
    background: #fff5f0;
}

.evento-header h1 {
    font-size: 2.5rem;
    color: #7D0909;
    margin-bottom: 0.5rem;
}

.evento-header .evento-meta {
    font-size: 1.1rem;
    color: #666;
}

.evento-header .evento-meta strong {
    color: #7D0909;
}

.evento-header .evento-meta.destaque {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FF3702;
}

/* Corpo do evento */
.evento-body {
    padding: 3rem 0;
}

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

.evento-body .descricao {
    font-size: 1rem;
    line-height: 1.3;
    color: #333;
    margin-bottom: 2rem;

}

.evento-body .descricao p {
    margin-bottom: 1rem;
}

.evento-body .descricao ul {
    text-align: left;
    padding-left: 1.5rem;
    color: #333;
    line-height: 1.8;
}

.evento-body h2 {
    font-size: 1.8rem;
    color: #7D0909;
    text-align: center;
    margin: 2rem 0 1.5rem;
}

.evento-body h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FF3702;
    margin: 8px auto 0;
}

/* ============================================================
   GALERIA DE FOTOS
   ============================================================ */
.galeria {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
    cursor: pointer;
    display: flex;              /* ← ADICIONE */
    align-items: center;        /* ← ADICIONE (centraliza vertical) */
    justify-content: center;    /* ← ADICIONE (centraliza horizontal) */
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* Mantém a proporção e cobre o espaço */
    object-position: top;    /* ← ADICIONE (centraliza o foco) */
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

/*Capivari*/
.galeria1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.galeria-item1 {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    cursor: pointer;
    display: flex;              /* ← ADICIONE */
    align-items: center;        /* ← ADICIONE (centraliza vertical) */
    justify-content: center;    /* ← ADICIONE (centraliza horizontal) */
}

.galeria-item1 img {
    width:120%;
    height: 100%;
    object-fit: contain;          /* Mantém a proporção e cobre o espaço */
    object-position: top;    /* ← ADICIONE (centraliza o foco) */
    transition: transform 0.3s ease;
}

.galeria-item1:hover img {
    transform: scale(1.05);
}

/* ============================================================
   VÍDEO
   ============================================================ */
/* ============================================================
   VÍDEO 9:16 - VERSÃO ALTERNATIVA
   ============================================================ */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 1.5rem auto;
    background: #000;
    overflow: hidden;
}

.video-wrapper iframe {
    display: block;
    width: 100%;
    height: 890px;  /* Altura fixa para 9:16 em 340px de largura */
    border: none;
}

/* Responsivo */
@media (max-width: 480px) {
    .video-wrapper iframe {
        height: 650px;  /* Altura menor em mobile */
    }
}

/* ============================================================
   BOTÃO VOLTAR
   ============================================================ */
.btn-voltar {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.75rem 1.5rem;
    background: #7D0909;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-voltar:hover {
    background: #5a0606;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 9, 9, 0.3);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 768px) {
    .evento-header h1 {
        font-size: 2rem;
    }

    .galeria {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .evento-header h1 {
        font-size: 1.5rem;
    }

    .galeria {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.5rem;
    }

    .evento-body .descricao {
        font-size: 1rem;
    }

    .evento-body h2 {
        font-size: 1.4rem;
    }
}
/* Remove o comportamento fixo da navbar nas páginas de evento */
#navbar {
    position: relative !important;
    background: #ffffff !important;
        width: 50% !important;
        padding: 0.1rem 2rem !important;

}

.logo1 {
    width:80%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
    aspect-ratio: 1200 / 0.5 rem;
}

