:root {
    --primary-color: #616161;
    --secondary-color: #f5f5f5;
    --accent-color: #c72041;
    --light-color: #fafafa;
    --dark-color: #333;
    --text-color: #333;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* =========================
   FONTES
========================= */
@font-face {
  font-family: 'GalanoGrotesqueRegular';
  src: url('/assets/fonts/GalanoGrotesqueRegular.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'GalanoGrotesqueBold';
  src: url('/assets/fonts/GalanoGrotesqueBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'GalanoGrotesqueItalic';
  src: url('/assets/fonts/GalanoGrotesqueItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

/* =========================
   BASE
========================= */
body {
  margin: 0;
  font-family: 'GalanoGrotesqueRegular';
  background: #f9f9f9;
  color: var(--text-color);
}

/* ============================
   FONTE GLOBAL
============================ */
html, body, * {
  font-family: 'GalanoGrotesqueRegular' !important;
}


/* =========================
   BREADCRUMB
========================= */
.breadcrumb-container {
  max-width: 1300px;
  margin: 20px auto 10px;
  padding: 0 25px;
}

.breadcrumb {
  font-family: 'GalanoGrotesqueRegular'; 
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.breadcrumb .sep {
  margin: 0 6px;
  color: #aaa;
}

.breadcrumb span {
  color: #333;
  font-weight: 600;
}

/* =========================
   CONTAINER PRINCIPAL
========================= */
.main-content {
    padding: 0 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.institucional-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    font-family: 'GalanoGrotesqueRegular'; 
}

/* =========================
   CABEÇALHO DA PÁGINA
========================= */
.page-header {
    margin-bottom: 30px;
    text-align: center;
}

.page-title {
    font-family: 'GalanoGrotesqueBold';
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 10px;
    opacity: 0.9;
}

/* =========================
   CONTEÚDO
========================= */
.institucional-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.institucional-text h2,
.institucional-text h3 {
    font-family: 'GalanoGrotesqueBold';
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.institucional-text p {
    margin-bottom: 18px;
    text-align: justify;
}

.institucional-text a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.institucional-text a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}