/* ========== PAGINA DE PARTICIPACAO ========== */

#participacao-overview,
#formatos-participacao,
#contatos-camara {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
}

#participacao-overview > span {
    display: none;
    margin-bottom: 1.5rem;
}

.overview-card,
.format-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.hero-card {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(186, 34, 34, 0.08);
}

.eyebrow {
    color: #a32121;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-copy h2,
.section-heading h2 {
    color: #1f2937;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.hero-copy p,
.section-heading p,
.step-card p,
.format-card p,
.social-card p,
.contact-list span {
    color: #4b5563;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 220px;
}

.hero-actions a,
.social-buttons a {
    text-decoration: none;
    text-align: center;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-link {
    background: linear-gradient(135deg, #b42323, #7f1d1d);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(127, 29, 29, 0.25);
}

.secondary-link {
    background: #ffffff;
    color: #7f1d1d;
    border: 1px solid rgba(127, 29, 29, 0.2);
}

.hero-actions a:hover,
.social-buttons a:hover {
    transform: translateY(-2px);
}

.info-grid,
.format-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.step-card {
    padding: 1.8rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #b42323, #7f1d1d);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3,
.format-card h3,
.contact-card h3,
.social-card h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.left-align {
    text-align: left;
}

.format-card {
    padding: 2rem;
    border-top: 4px solid #b42323;
}

.format-icon {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 1rem;
    background: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.format-icon img {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
}

.contact-card,
.social-card {
    padding: 2rem;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-list strong {
    color: #111827;
}

.contact-list a {
    color: #7f1d1d;
    text-decoration: none;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-buttons a {
    background: #111827;
    color: #ffffff;
    min-width: 140px;
}

.social-buttons a:last-child {
    background: linear-gradient(135deg, #d946ef, #f97316);
}

@media (max-width: 1024px) {
    .hero-card,
    .contact-layout,
    .info-grid,
    .format-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    #participacao-overview,
    #formatos-participacao,
    #contatos-camara {
        padding: 1.5rem;
    }

    .hero-copy h2,
    .section-heading h2 {
        font-size: 1.6rem;
    }

    .format-card,
    .contact-card,
    .social-card,
    .step-card,
    .hero-card {
        padding: 1.5rem;
    }
}

@media (max-width: 500px) {
    #descricaoPag {
        margin-bottom: 2rem;
    }

    #participacao-overview > span {
        display: block;
    }

    .social-buttons a,
    .hero-actions a {
        width: 100%;
    }
}