/* Seção Demandantes */

.demandantes-intro {
    color: var(--charcoal);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.demandantes-wrapper {
    display: flex;
    justify-content: center;
}

.demandante-card {
    display: block;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    max-width: 720px;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.demandante-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
}

.demandante-thumb {
    position: relative;
    width: 100%;
    background: var(--charcoal);
}

.demandante-thumb img {
    width: 100%;
    display: block;
    max-height: 360px;
    object-fit: cover;
}

.demandante-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(252, 252, 252, 0.92);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s;
}

.demandante-card:hover .demandante-play {
    transform: translate(-50%, -50%) scale(1.08);
}

.demandante-info {
    padding: 1.4rem;
    text-align: center;
}

.demandante-nome {
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.demandante-texto {
    color: var(--charcoal);
    margin: 0 0 1rem;
}

.demandante-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green-dark);
    font-weight: 600;
}

.demandante-card:hover .demandante-link {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .demandante-thumb img {
        max-height: 220px;
    }
}
