/* ============================================================
   COMITÊS — Estilos da página
   ============================================================ */

/* ---- BARRA DE TÍTULO ---- */
.ct-title-bar {
    background: #66589e;
    border-radius: 0 0 30px 30px;
    padding-top: 20px;
}

.ct-title-card {
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 7px rgba(0,0,0,0.15);
    min-height: 93px;
    gap: 16px;
}

.ct-title-page {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.ct-title-dot {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #66589e;
    flex-shrink: 0;
}

.ct-title-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #66589e;
    letter-spacing: -0.32px;
    margin: 0;
    line-height: 1.2;
}

.ct-breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #66589e;
    text-align: right;
    white-space: nowrap;
    text-decoration: none;
}

.ct-breadcrumb a {
    color: #66589e;
    text-decoration: none;
}

/* ---- PAINEL HERO ---- */
.ct-hero {
    padding: 50px 0 40px;
}

.ct-hero-panel {
    background: #66589e;
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
}

.ct-hero-row {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.ct-hero-text-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #b2c3dd;
    letter-spacing: 0.52px;
    margin: 0;
}

.ct-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.ct-hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}

.ct-hero-desc p {
    margin-bottom: 20px;
}

.ct-hero-desc p:last-child {
    margin-bottom: 0;
}

.ct-hero-img-col {
    width: 50%;
    flex-shrink: 0;
}

.ct-hero-img,
.ct-hero-placeholder {
    width: 100%;
    height: 100%;
    min-height: 511px;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0,0,0,0.13);
}

.ct-hero-img {
    object-fit: cover;
    display: block;
}

.ct-hero-placeholder {
    background: #d4cce8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-hero-placeholder-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #66589e;
    text-align: center;
    padding: 20px;
}

/* ---- BLOCO IMAGEM + TÍTULO DE SEÇÃO ---- */
.ct-intro-comites {
    padding: 40px 0;
}

.ct-intro-row {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ct-intro-img-col {
    width: 49%;
    flex-shrink: 0;
}

.ct-intro-img,
.ct-intro-placeholder {
    width: 100%;
    height: 360px;
    border-radius: 24px;
    object-fit: cover;
    display: block;
}

.ct-intro-placeholder {
    background: #d4cce8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-intro-placeholder-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #66589e;
    text-align: center;
    padding: 20px;
}

.ct-intro-text-col {
    flex: 1;
    min-width: 0;
}

/* ---- TÍTULO DE SEÇÃO ---- */
.ct-section-title-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.ct-section-dot {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #66589e;
    flex-shrink: 0;
}

.ct-section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #58536f;
    letter-spacing: -0.32px;
    margin: 0;
    line-height: 1.2;
}

.ct-section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #58536f;
    margin: 0;
}

/* ---- GRADE DE COMITÊS ---- */
#ct-comites {
    padding: 40px 0 90px;
}

.ct-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 20px;
}

.ct-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 7px rgba(0,0,0,0.15);
    padding: 28px 24px;
    width: calc(25% - 15px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-card-badge {
    width: 56px;
    height: 56px;
    background: #66589e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.ct-card-badge img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ct-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: #58536f;
    margin: 0;
}

.ct-card-cta {
    background: #66589e;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    min-height: 170px;
    transition: filter 0.25s ease;
}

.ct-card-cta:hover {
    filter: brightness(1.1);
}

.ct-card-cta .ct-card-title {
    color: #fff;
}

/* ---- RESPONSIVO ---- */
@media (max-width: 1200px) {
    .ct-card { width: calc(50% - 10px); }
}

@media (max-width: 991px) {
    .ct-hero-row       { flex-direction: column; }
    .ct-hero-img-col   { width: 100%; }
    .ct-hero-title     { font-size: 24px; }
    .ct-intro-row      { flex-direction: column; }
    .ct-intro-img-col  { width: 100%; }
    .ct-section-title  { font-size: 22px; }
    .ct-section-subtitle { font-size: 16px; }
}

@media (max-width: 768px) {
    .ct-title-text  { font-size: 20px; }
    .ct-title-card  { padding: 20px 20px; flex-wrap: wrap; gap: 8px; }
    .ct-hero-panel  { padding: 24px 20px; }
    .ct-hero-title  { font-size: 22px; }
    .ct-hero-desc   { font-size: 15px; }
    .ct-card        { width: 100%; }
    .ct-hero        { padding: 30px 0 24px; }
    #ct-comites     { padding: 24px 0 40px; }
}
