/* Página "Itens do Mandato" — Robert Paiva */
.mandato {
    max-width: 920px;
    margin: 0 auto;
    padding: 28px 16px 56px;
}

/* ---- Hero ---- */
.mandato-hero {
    text-align: center;
    margin-bottom: 34px;
}

.mandato-foto {
    width: 150px;
    height: 150px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    background: #eef2f8;
    border: 4px solid #fff;
    box-shadow: 0 6px 22px rgba(11, 42, 91, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mandato-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* nunca estica/distorce a foto */
    object-position: center top;
}

.mandato-foto-ph {
    font-size: 78px;
    color: #9fb0c9;
}

.mandato-cargo {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #2e9e4f;
    margin: 0 0 2px;
}

.mandato-nome {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0b2a5b;
    margin: 0 0 10px;
}

.mandato-tagline {
    max-width: 480px;
    margin: 0 auto 16px;
    color: #5b6675;
    font-size: 1rem;
    line-height: 1.5;
}

.mandato-divider {
    display: block;
    width: 90px;
    height: 4px;
    margin: 0 auto;
    border-radius: 4px;
    background: linear-gradient(90deg, #2e9e4f, #20c997);
}

/* ---- Grid de áreas ---- */
.mandato-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mandato-card {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(11, 42, 91, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mandato-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(11, 42, 91, 0.12);
}

.mandato-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b2a5b, #163a7a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mandato-icon .material-icons {
    color: #fff;
    font-size: 1.6rem;
}

.mandato-card-title {
    margin: 4px 0 6px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b2a5b;
    border-bottom: 2px solid #eef2f8;
    padding-bottom: 6px;
}

.mandato-card-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5b6675;
}

.mandato-empty {
    text-align: center;
    color: #6b7280;
    padding: 30px 0;
}

/* ---- Frase ---- */
.mandato-quote {
    position: relative;
    margin: 34px 0 0;
    padding: 26px 28px;
    background: #eaf1fb;
    border-radius: 14px;
    text-align: center;
}

.mandato-quote-mark {
    color: #0b2a5b;
    font-size: 2.2rem;
    opacity: 0.5;
}

.mandato-quote p {
    margin: 6px auto 12px;
    max-width: 620px;
    font-size: 1.08rem;
    font-style: italic;
    color: #243b5e;
    line-height: 1.5;
}

.mandato-quote cite {
    font-style: normal;
    font-weight: 700;
    color: #2e9e4f;
    font-size: 1.05rem;
}

/* ---- CTA ---- */
.mandato-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(11, 42, 91, 0.05);
}

.mandato-cta-text {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mandato-cta-text > .material-icons {
    font-size: 2rem;
    color: #0b2a5b;
    background: #eaf1fb;
    padding: 12px;
    border-radius: 50%;
}

.mandato-cta-text h3 {
    margin: 0 0 3px;
    color: #0b2a5b;
    font-size: 1.05rem;
}

.mandato-cta-text p {
    margin: 0;
    color: #5b6675;
    font-size: 0.9rem;
}

.mandato-cta-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, #2e9e4f, #20c997);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(46, 158, 79, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mandato-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 158, 79, 0.4);
}

/* ---- Responsivo ---- */
@media (max-width: 680px) {
    .mandato-grid { grid-template-columns: 1fr; }
    .mandato-nome { font-size: 1.7rem; }
    .mandato-foto { width: 120px; height: 120px; }
    .mandato-cta { flex-direction: column; align-items: stretch; text-align: center; }
    .mandato-cta-text { flex-direction: column; text-align: center; }
    .mandato-cta-btn { text-align: center; }
}
