/* Module Title Component Class */

.widget-titulo {
  margin: 1rem 0 2rem;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: "Roboto", sans-serif;
  line-height: normal;
  color: #1a1a2e;
}

.widget-titulo h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 4px;
  line-height: 1.2;
  font-family: inherit;
}

.widget-titulo p {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  font-family: inherit;
}

.widget-titulo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e6f1fb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.widget-titulo-icon .material-symbols-rounded {
  font-size: 26px;
  color: #185fa5;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}

.widget-titulo-content {
  flex: 1;
}

/* DICO Theme Overrides */
.domain-dicotech .widget-titulo-icon {
  background: #000 !important;
}

.domain-dicotech .widget-titulo-icon .material-symbols-rounded {
  color: #fff !important;
}

@media (max-width: 600px) {
  .widget-titulo h1 {
    font-size: 1.4rem;
  }
}
