/* Estilização geral */
.ddas-audiencia-section {
    padding: 50px;
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Espaçamento responsivo */
}

/* Títulos */
.main-title {
    font-size: 36px;
    color: #ff2d55; /* Cor rosa vibrante */
    margin-bottom: 20px;
}

.subtitle-cities,
.subtitle-generos {
    font-size: 24px;
    color: #8e44ad; /* Cor roxa */
    margin-bottom: 30px;
}

.subtitle-generos span {
    color: #ff2d55; /* Cor rosa vibrante */
}

/* Blocos das cidades */
.cities-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Responsividade */
    margin-bottom: 40px;
}

.city-card {
    background-color: #8e44ad; /* Cor roxa */
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: calc(25% - 20px); /* Para 4 blocos igualmente espaçados */
    box-sizing: border-box;
    transition: transform 0.3s ease; /* Efeito suave ao passar o mouse */
}

.city-card:hover {
    transform: scale(1.05); /* Amplia o bloco ao passar o mouse */
}

.city-name {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.city-divider {
    width: 100%;
    height: 1px;
    background-color: white!important;
    margin: 15px 0;
}

.city-percentage {
    font-size: 55px;
    font-weight: bold;
}

@media (max-width: 992px) {
    .city-card {
        width: calc(50% - 20px); /* 2 blocos por linha em telas médias */
    }
}

@media (max-width: 768px) {
    .city-card {
        width: 100%; /* 1 bloco por linha em telas pequenas */
    }
}

/* Blocos dos gêneros */
.generos-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Responsividade */
}

.genero-card {
    position: relative;
    display: inline-block;
    width: calc(50% - 20px); /* Espaço entre os blocos */
    background-color: transparent; /* Cor roxa */
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: right;
    box-sizing: border-box;
    overflow: hidden;
}

.genero-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.genero-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
    margin: 80px 20px;
}

.genero-titulo {
    font-size: 20px;
    font-weight: bold;
    margin: 10px; /* Espaçamento entre título e porcentagem */
    display: block; /* Garante que o título fique em cima */
}

.genero-porcentagem {
    font-size: 24px;
    font-weight: bold;
    display: block; /* Garante que a porcentagem fique embaixo */
}

@media (max-width: 768px) {
    .genero-card {
        width: 100%; /* 1 bloco por linha em telas pequenas */
    }
}