/* Estilos gerais */
.ddas-parcerias-container {
    max-width: 600px; /* Largura máxima reduzida */
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #832fbb; /* Cor roxa para todos os textos */
}

.contact-info {
    background-color: Transparent;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.field-group {
    margin-bottom: 15px;
}

.label-parcerias {
    font-size: 1rem;
    font-weight: normal; /* Sem negrito */
    margin-bottom: 5px;
    text-align: left;
    color: #832fbb; /* Cor roxa para os títulos */
}

.value {
    display: block;
    font-size: 1rem;
    padding: 10px;
    border: 2px solid #832fbb; /* Borda com a cor roxa */
    border-radius: 8px;
    background-color: #fff;
    width: 100%; /* Todos os campos têm o mesmo tamanho */
    box-sizing: border-box;
    color: #832fbb; /* Cor roxa para os valores */
    text-decoration: none; /* Remove sublinhado do link */
    transition: background-color 0.3s ease, color 0.3s ease; /* Efeito suave ao passar o mouse */
}

.value:hover {
    background-color: #832fbb; /* Fundo roxo ao passar o mouse */
    color: #fff; /* Texto branco ao passar o mouse */
}

.description {
    margin-top: 20px;
}

.description .label {
    margin-bottom: 10px;
}

.description p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .ddas-parcerias-container {
        padding: 10px;
    }

    .value {
        font-size: 0.9rem;
    }
}