#cc-home-most-accessed {
  visibility: visible;
  display: block;
}

.home-most-accessed-wrapper {
  width: 100%;
  max-width: 1076px;
  height: auto;
  margin: 0 auto;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  background: none;
}

.titulo-servicos-mais-acessados {
  color: #465564;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 4px;
}

/* Ícones Material Symbols */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  white-space: nowrap;
}

.titulo-servicos-mais-acessados .material-symbols-outlined {
  font-size: 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ver-mais-link .material-symbols-outlined {
  font-size: 20px;
  vertical-align: middle;
}

/* ========== GRID LAYOUT ========== */
.ma-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

/* ========== CARDS ========== */
.ma-card {
  width: 100%;
  height: 88px;
  outline: 1px solid #C5C5C5;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  display: block;
  transition: box-shadow .2s ease, background .2s ease;
  position: relative;
  box-shadow: none;
  box-sizing: border-box;
}

.ma-card:hover {
  background: #FAFFFA;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.ma-card:focus-visible {
  background: #FAFFFA;
  outline: 2px solid #545FFF;
}

.ma-card:active {
  background: linear-gradient(90deg, #EEEEEE 14.54%, #D9F2EF 99.65%);
  outline: 2px solid #C5C5C5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.ma-card:active .ma-card-title {
  text-decoration: underline;
}

.ma-card-body {
  padding: 4px 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  width: 100%;
}

.ma-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.ma-card-title {
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  color: #374151;
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.arrow-container {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ma-card-arrow {
  width: 7.4px;
  height: 12px;
  opacity: 1;
}

/* ========== ANIMAÇÃO ========== */
/* Estado inicial: cards ocultos esperando animação */
.ma-card.fade-seq {
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
}

/* Animação suave de entrada */
@keyframes ccFadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(16px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Animação aplicada em desktop e mobile */
.fade-seq.cc-animate-in {
  animation: ccFadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: var(--cc-anim-delay, 0s);
}

/* ========== ACESSIBILIDADE ========== */
@media (prefers-reduced-motion: reduce) {
  .ma-card,
  .fade-seq.cc-animate-in {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========== RESPONSIVO ========== */
@media (max-width: 767px) {
  .ma-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ma-card {
    height: auto;
    min-height: 74px;
  }
}
