* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #c661e3 10%, #150838 90%);
    color: white;
    text-align: center;
    letter-spacing: 2px;
}

.transparencia-titulo-rodape {
    background-color: rgba(21, 8, 56, 0.5);
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* Alinha os itens em coluna */
    justify-content: center;
    /* Centraliza verticalmente */
    align-items: center;
    /* Centraliza horizontalmente */
    text-align: center;
    /* Alinha o texto */
}

.tamanho-imagem-titulo{    
   width: 100px;
   height: 100px;
   margin-right: auto;
}

.pix{
    margin: 10px;
    width: 150px;
    height: 180px;
}


.grid-colunas{
    display: flex;
    flex-direction: column;    
}

header > img {
    width: 50px;
    height: 50px;
}

.texto-titulo {
    font-family: 'Gagalin', sans-serif;
    color: white;
    font-size: 80px;
}

.texto-subtitulo {
    font-family: 'Gagalin', sans-serif;
    color: white;
    font-size: 50px;
}

.contato {
    padding: 20px;
}

.dev-por{
    color: white;
    font-size: 12px;
}

footer > div > a {
    color: inherit;  /* Mantém a cor do texto padrão */
    text-decoration: none;  /* Remove o sublinhado */
}

footer>div>p {
    padding: 5px;
}

body>header>h1 {
    padding: 50px;
}

body>div>a>h2 {
    padding: 10px;
}

.agenda {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 50px;
    /* Adiciona 50px de espaço abaixo das 3 caixas */
}

.evento {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(198, 97, 227, 0.8);
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.evento:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(198, 97, 227, 1);
    /* Aumenta o efeito de sombra ao passar o mouse */
}

.evento img {
    width: 100%;
    border-radius: 10px;
}

.evento h2,
.evento p {
    color: white;
}

.evento a {
    text-decoration: none;
    color: white;
    display: block;
}

.imagem-destaque {
    width: 63%;
    min-height: 600px;
    /* Mantém a altura desejada */
    margin: 40px auto 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(198, 97, 227, 0.8);
    padding: 20px;
    /* Mantém espaço interno ao redor do vídeo */
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Ajuste no iframe para respeitar os espaçamentos e preencher proporcionalmente */
.imagem-destaque iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    /* Mantém a proporção correta do vídeo */
    border-radius: 10px;
    padding: 10px;
    /* Espaçamento interno */
    background: black;
    /* Fundo preto para evitar bordas brancas */
}

.imagem-destaque:hover {
    transform: scale(1.05);
    /* Aumenta o tamanho da caixa ao passar o mouse */
    box-shadow: 0 0 20px rgba(198, 97, 227, 1);
    /* Aumenta a sombra ao passar o mouse */
}

.imagem-destaque img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    /* Imagem com bordas arredondadas na parte superior */
}

.social-container {
    display: flex;
    gap: 20px;
}

.social-container a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-container a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.social-container img {
    width: 30px;
    height: 30px;
}

@font-face {
    font-family: 'Gagalin';
    src: url('../fonts/Gagalin-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Responsividade: ajusta a grid conforme o tamanho da tela */
@media (max-width: 768px) {
    .agenda {
        grid-template-columns: 1fr;
        /* Coloca as caixas em uma única coluna em telas menores */
    }

    .imagem-destaque {
        width: 90%;
        /* Aumenta a largura da caixa no mobile */
        margin-top: 20px;
    }
}