body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    
}

header {
    background-color: #F2B83B;
    text-align: center;
    padding: 20px;
}

header img {
    max-width: 100%;
    height: auto;
}



.video {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.video h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.video div {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom:2rem;
}

.video iframe {
    max-width: 100%;
    height: 14rem;
    border-radius: 8px;
}

.informacoes {
    padding-bottom: 20px;
    padding-inline: 10px;
    text-align: center;
    background-color: #E5E5E5;
}
.informacoes .content {
 
    justify-content: center;
    align-items: center;
    max-width: 100%;
}
.informacoes .content img{
    max-width: 100%;
    
}


.informacoes button {
    margin-top: 20px;
    padding: 15px 30px; /* Reduzido pela metade */
    font-size: 12px; /* Reduzido pela metade */
    color: white;
    background-color: rgb(0, 18, 121);
    border: none;
    border-radius: 8px; /* Mantido */
    cursor: pointer;
    font-family: "Kanit", serif;
}


footer {
    background-color: rgb(0, 18, 121); /* Cor igual ao botão */
    color: white;
    text-align: center;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaçamento entre os itens */
    align-items: center;
}

footer i{
   color: white !important;
   font-size: 20px;
}

footer .footer-icon img:hover {
    transform: scale(1.2); /* Efeito de zoom ao passar o mouse */
}

footer .footer-link {
    color: white;
    font-size: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer .footer-link:hover {
    color: lightgray; /* Cor ao passar o mouse */
}
