.c-destacado__subtitle {
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.c-destacado__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .c-destacado__grid {
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .c-destacado--cols-2 .c-destacado__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .c-destacado--cols-3 .c-destacado__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .c-destacado--cols-4 .c-destacado__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.c-destacado__item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #f9f9fb;
  border: 1px solid #f0f0f3;
  border-radius: 16px;
  padding: 24px 22px;
}

.c-destacado__item-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-destacado__item-dot {
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1557b5 0%, #0ea5e9 100%);
}

.c-destacado__item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.21;
  color: #1c2024;
}

.c-destacado__item-body {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.615;
  color: #6b7280;
  margin: 0;
}

.c-destacado--style-card {
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .c-destacado--style-card {
    padding-inline: 0;
  }
}

.c-destacado--style-badge .c-destacado__item {
  background: transparent;
  border-color: #1557b5;
  border-radius: 14px;
  padding: 16px 20px;
  gap: 3px;
  flex-direction: column;
}
.c-destacado--style-badge .c-destacado__item-title {
  font-size: 14px;
  font-weight: 700;
  color: #081462;
}
.c-destacado--style-badge .c-destacado__item-role {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.21;
  color: #6b7280;
}

.c-destacado--style-dark .c-destacado__item {
  position: relative;
  background: linear-gradient(145deg, #081462 0%, #1557b5 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 22px;
  gap: 8px;
  overflow: hidden;
}
.c-destacado--style-dark .c-destacado__item::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.c-destacado--style-dark .c-destacado__item-dot {
  display: none;
}
.c-destacado--style-dark .c-destacado__item-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.21;
  color: #ffffff;
}
.c-destacado--style-dark .c-destacado__item-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.c-destacado--style-dark .c-destacado__item-body p, .c-destacado--style-dark .c-destacado__item-body ul, .c-destacado--style-dark .c-destacado__item-body ol, .c-destacado--style-dark .c-destacado__item-body li, .c-destacado--style-dark .c-destacado__item-body strong, .c-destacado--style-dark .c-destacado__item-body em, .c-destacado--style-dark .c-destacado__item-body b, .c-destacado--style-dark .c-destacado__item-body i, .c-destacado--style-dark .c-destacado__item-body span {
  color: inherit;
}
.c-destacado--style-dark .c-destacado__item-body a {
  color: #ffffff;
  text-decoration: underline;
}

.c-destacado--style-letter .c-destacado__item {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 16px;
  padding: 20px 22px;
}
.c-destacado--style-letter .c-destacado__item-letter {
  font-size: 28px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1;
  background: linear-gradient(135deg, #93C5FD 0%, #0EA5E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}
.c-destacado--style-letter .c-destacado__item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-destacado--style-letter .c-destacado__item-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: 1.21;
  color: #fff;
}
.c-destacado--style-letter .c-destacado__item-body {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1.21;
  color: #fff;
  margin: 0;
}

.c-destacado--style-light {
  border-radius: 20px;
  border: 1px solid rgba(21, 87, 181, 0.15);
  background: linear-gradient(102deg, #DBF4FF 0%, #E6F5FF 100%);
  padding: 16px;
}
.c-destacado--style-light .c-destacado__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 6px 6px;
}
.c-destacado--style-light .c-destacado__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--color-secondary);
  font-size: 18px;
  line-height: 1;
}
.c-destacado--style-light .c-destacado__item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.c-destacado--style-light .c-destacado__item-dot {
  display: none;
}
.c-destacado--style-light .c-destacado__item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.21;
  color: #1c2024;
}
.c-destacado--style-light .c-destacado__item-body {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.615;
  color: #6b7280;
  margin: 0;
}
.c-destacado--style-light .c-destacado__item-body p, .c-destacado--style-light .c-destacado__item-body ul, .c-destacado--style-light .c-destacado__item-body ol, .c-destacado--style-light .c-destacado__item-body li, .c-destacado--style-light .c-destacado__item-body strong, .c-destacado--style-light .c-destacado__item-body em, .c-destacado--style-light .c-destacado__item-body b, .c-destacado--style-light .c-destacado__item-body i, .c-destacado--style-light .c-destacado__item-body span {
  color: inherit;
}
.c-destacado--style-light .c-destacado__item-body a {
  color: var(--color-primary);
  text-decoration: underline;
}