/* Estilo para o dropdown de canais em colunas */
.dropdown-large {
    width: 50%; /* Largura mínima como 50% */
    max-width: 90%; /* Largura máxima como 90% */
    min-width: 800px; /* Defina uma largura mínima em pixels, caso o 50% seja muito pequeno */
}

.dropdown-menu .container-fluid {
    padding: 0;
}

.dropdown-menu .row {
    display: flex;
    flex-wrap: wrap;
}

.dropdown-menu .col-md-3 {
    padding: 0.25rem 0.75rem;
    box-sizing: border-box;
}

.dropdown-item {
    white-space: nowrap;
    overflow: hidden;
    width: 100%; /* Usar toda a largura da coluna */
}

/* Ajuste para garantir que o dropdown se expanda corretamente */
.dropdown-menu {
    padding: 0;
}

/* Estilo para os links do dropdown */
.dropdown-item:hover {
    background-color: #b22222; /* Cor de fundo ao passar o mouse */
    color: white;
}


.hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Ajuste a altura conforme necessário */
    background-image: url('/static/images/topbanner.png'); /* Substitua pelo link da sua imagem */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fundo preto com transparência */
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.hero-text {
    position: absolute;
    color: #ffffff; /* Cor do texto */
    font-size: 2.5rem; /* Tamanho da fonte */
    font-family: 'Cinzel', serif; /* Fonte estilizada, substitua por outra se preferir */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra no texto para destaque */
    margin: 0;
    bottom: 50px;
    left: 50px;
    
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-img {
    object-fit: cover;
    height: 100%;
}

.card-title {
    font-size: 1.25rem;
}

.card-text {
    font-size: 1rem;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

#cookieConsent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #232323;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
}
#cookieConsent p {
    margin: 0;
    padding: 0;
}
#cookieConsent a {
    color: #ffdd57;
    text-decoration: underline;
}
#cookieConsent button {
    background-color: #ffdd57;
    border: none;
    color: #232323;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
}



