footer {
  background-color: #7a42a0;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 3rem;
}

.navbar-logo {
  max-width: 100px;
}

.material-symbols-outlined {
  color: white;
}

.btn-primary {
  background-color: #7a42a0 !important;
  border-color: #7a42a0 !important;
  color: white !important;
}

.btn-primary:hover {
  background-color: #572479 !important;
  border-color: #572479 !important;
  color: white !important;
  text-decoration: none !important;
}

.btn-secondary {
  background-color: #b637b9 !important;
  border-color: #b637b9 !important;
  color: white !important;
}

.btn-secondary:hover {
  background-color: #972799 !important;
  border-color: #972799 !important;
  color: white !important;
  text-decoration: none !important;
}

.bg-primary {
  background-color: #7a42a0 !important;
}

.text-primary {
  color: #7a42a0 !important;
}

.text-secondary {
  color: #b637b9 !important;
}

a {
  color: #7a42a0 !important;
}

a:hover {
  color: #572479 !important;
  text-decoration: underline;
}

.navbar a {
  color: #212529 !important;
}

.navbar a:hover {
  color: #7a42a0 !important;
  text-decoration: none;
}

.nav-pills {
  --bs-nav-pills-link-active-bg: #7a42a0;
}

.nav-link {
  color: #7a42a0;
}

.nav-link:hover {
  color: #7a42a0;
}

ol li::marker {
  color: #7a42a0;
  font-weight: bold;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #7a42a0;
  color: white;
}

.accordion-button.collapsed {
  background-color: #f8f9fa;
  color: #121212;
}
/* Micro-interação: o card sobe levemente */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Card de destaque para números (Carga Horária) */
.stat-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.stat-card h3 {
  color: #7a42a0; /* Cor primária */
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-card span {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
}

/* Estilo para a caixa de Objetivo (Callout) */
.objective-box {
  border-left: 5px solid #7a42a0; /* Borda grossa na cor da marca */
  background-color: #f8f9fa; /* Fundo leve */
  border-radius: 0 8px 8px 0;
}
/* Box para os ícones dos cards */
.icon-square {
  width: 50px;
  height: 50px;
  background-color: rgba(122, 66, 160, 0.1); /* Roxo da marca com transparência */
  color: #7a42a0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease;
}

/* Quando passar o mouse no card, o ícone fica mais forte */
.hover-lift:hover .icon-square {
  background-color: #7a42a0;
  color: white;
}

/* Ajuste fino para títulos de cards */
.card-title-custom {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px; 
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* --- O SEGREDOS PARA DISPOSITIVOS APPLE --- */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  
  /* Força a ativação das ligaturas */
  font-variant-ligatures: normal;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga'; 
}