/* ============================================================
   BREADCRUMB HERO
   ============================================================ */
.breadcrumb-hero {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
@media (max-width: 576px) { .breadcrumb-hero { height: 160px; } }

.bc-bg {
    position: absolute;
    inset: 0;
}
.bc-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.7);
}
.bc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,22,40,.90) 0%,
        rgba(10,22,40,.75) 50%,
        rgba(30,50,96,.80) 100%
    );
}
/* Padrão geométrico decorativo sobre a imagem */
.bc-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(240,90,26,.06) 0px,
            rgba(240,90,26,.06) 1px,
            transparent 1px,
            transparent 24px
        );
}

.bc-content {
    position: relative;
    z-index: 1;
}
.bc-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -.3px;
}
.bc-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.bc-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.55);
}
.bc-item a {
    color: rgba(255,255,255,.7);
    transition: color .2s;
}
.bc-item a:hover { color: var(--accent-light); }
.bc-item.active { color: var(--accent-light); font-weight: 600; }
.bc-sep { font-size: .55rem; color: rgba(255,255,255,.3); }

/* ============================================================
   PÁGINAS INTERNAS - LAYOUT BASE
   ============================================================ */
.page-content {
    padding: 60px 0;
}
.page-content.bg-alt {
    background: var(--off-white);
}

/* Títulos de seção interna */
.inner-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.inner-section-title i {
    color: var(--accent);
    margin-right: 8px;
}

/* Prose content (textos institucionais) */
.prose {
    color: var(--text-body);
    line-height: 1.9;
    font-size: .97rem;
}
.prose p { margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin: 28px 0 10px;
}
.prose ul, .prose ol {
    margin: 0 0 18px 20px;
}
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--primary); }

/* ============================================================
   INSTITUCIONAL
   ============================================================ */
.inst-highlight-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.inst-highlight-card::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(240,90,26,.12);
    border-radius: 50%;
}
.inst-highlight-card .year-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.inst-highlight-card h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}
.inst-highlight-card p {
    font-size: .97rem;
    opacity: .85;
    line-height: 1.8;
    margin: 0;
}

/* MVV Cards (Missão Visão Valores) */
.mvv-card {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.mvv-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.mvv-card:hover::before { transform: scaleX(1); }

.mvv-icon {
    width: 58px; height: 58px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
}
.mvv-card:hover .mvv-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: scale(1.08);
}
.mvv-card h3 {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.mvv-card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* Valores chips */
.valores-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.valor-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    color: var(--primary);
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    transition: var(--transition-fast);
}
.valor-chip i { color: var(--accent); font-size: .7rem; }
.valor-chip:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}
.valor-chip:hover i { color: var(--white); }

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 576px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1.5px solid var(--border);
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

/* ============================================================
   POLÍTICAS / TEXTOS LEGAIS
   ============================================================ */
.policy-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border);
    overflow: hidden;
}
.policy-sidebar {
    background: var(--off-white);
    border-right: 1.5px solid var(--border);
    padding: 32px 24px;
}
@media (max-width: 991px) {
    .policy-sidebar { border-right: none; border-bottom: 1.5px solid var(--border); }
}
.policy-sidebar-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.policy-nav { list-style: none; padding: 0; }
.policy-nav li { margin-bottom: 4px; }
.policy-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .86rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.policy-nav a i { font-size: .65rem; color: var(--accent); }
.policy-nav a:hover,
.policy-nav a.active { background: var(--white); color: var(--primary); box-shadow: var(--shadow-sm); }
.policy-nav a.active { font-weight: 700; color: var(--accent); }

.policy-body {
    padding: 40px;
}
@media (max-width: 576px) { .policy-body { padding: 24px 20px; } }
.policy-updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(240,90,26,.08);
    color: var(--accent);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 220px; height: 220px;
    background: rgba(240,90,26,.10);
    border-radius: 50%;
}
.contact-info-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.contact-info-card > p {
    font-size: .9rem;
    opacity: .75;
    margin-bottom: 32px;
    line-height: 1.7;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.contact-item-icon {
    width: 46px; height: 46px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-light);
    flex-shrink: 0;
    transition: var(--transition-fast);
}
.contact-item:hover .contact-item-icon {
    background: var(--accent);
    color: var(--white);
}
.contact-item-text strong {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 3px;
}
.contact-item-text a,
.contact-item-text span {
    font-size: .95rem;
    font-weight: 500;
    color: rgba(255,255,255,.9);
}
.contact-item-text a:hover { color: var(--accent-light); }

/* Formulário de contato */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border);
    padding: 40px 36px;
    height: 100%;
}
@media (max-width: 576px) {
    .contact-form-card { padding: 28px 20px; }
    .contact-info-card  { padding: 32px 24px; }
}
.contact-form-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}
.contact-form-card > p {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Form styles */
.form-label {
    font-size: .84rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 11px 16px;
    font-size: .9rem;
    font-family: var(--font-main);
    color: var(--text-body);
    background: var(--off-white);
    transition: var(--transition-fast);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10,22,40,.08);
    background: var(--white);
    outline: none;
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 130px; }

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-main);
    font-size: .95rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    border: none;
    width: 100%;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: .3px;
}
.btn-submit:hover { background: var(--accent); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }

/* Alerta de sucesso/erro do form */
.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: .88rem;
    font-weight: 500;
    display: none;
    margin-top: 16px;
}
.form-alert.success {
    background: rgba(16,185,129,.10);
    border: 1.5px solid rgba(16,185,129,.3);
    color: #047857;
}
.form-alert.error {
    background: rgba(240,90,26,.08);
    border: 1.5px solid rgba(240,90,26,.25);
    color: var(--accent-dark);
}

/* Mapa */
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}
@media (max-width: 576px) { .map-wrapper iframe { height: 280px; } }
