   .car-card-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.car-title-text {
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
  flex: 1;
  margin-right: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.car-brand-logo {
  width: 70px;
  height: 70px;
}

.car-card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 25px 30px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.car-card-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.car-vehicle-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.car-image img {
  max-width: 360px;
  height: 310px;
  object-fit: contain;
  border-radius: 4px;
  padding: 5px;
  background: #fff;
}

.car-info {
  flex: 1;
}

.car-info span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #888;
  margin-bottom: 4px;
}

.car-info p {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.car-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.car-links li {
  margin-bottom: 40px;
}

.car-links a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}

.car-links a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background-color: #0036ff;
  margin-right: 10px;
}

.icon-circle i {
  color: #fff;
  font-size: 14px;
}

/* Estilo especial para o link do indicador de serviço */
#serviceIndicatorLink {
  animation: fadeInUp 0.5s ease-out;
}

#serviceIndicatorLink .icon-circle {
  background: linear-gradient(135deg, #28a745, #20c997);
  transition: all 0.3s ease;
}

#serviceIndicatorLink .icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Estilos para o botão "Ver mais" */
.show-more-container {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.show-more-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.show-more-btn:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.show-more-btn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.show-more-btn:hover i {
  transform: rotate(45deg);
}

/* Animação para os novos itens quando expandir */
.car-service-list li {
  animation: fadeInUp 0.3s ease-out;
}

.car-service-list li:nth-child(6) { animation-delay: 0.1s; }
.car-service-list li:nth-child(7) { animation-delay: 0.2s; }
.car-service-list li:nth-child(8) { animation-delay: 0.3s; }
.car-service-list li:nth-child(9) { animation-delay: 0.4s; }
.car-service-list li:nth-child(10) { animation-delay: 0.5s; }

.car-service-list {
  list-style-type: disc;
  padding-left: 18px;
  margin: 10px 0 0;
}

.car-service-list li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.car-service-list li a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.car-service-list li a:hover {
  color: #0056b3;
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .car-card .row > [class^="col-"] {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 !important;
    border: none !important;
    margin-bottom: 20px;
  }

  .car-links {
    text-align: left;
  }

  .car-links li {
    justify-content: flex-start;
  }

  .car-links a {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .icon-circle {
    margin-right: 10px;
    margin-left: 0;
  }

  .car-card-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .car-vehicle-content {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .car-image img {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .car-info {
    width: 100%;
  }

  .car-info span,
  .car-info p {
    text-align: left;
  }

  .car-info p {
    font-size: 14px;
  }
}

a.disabled {
  pointer-events: none;
  opacity: 0.5;
  text-decoration: line-through;
  cursor: not-allowed;
}

.section-xl {
  padding: 60px 0;
  background-color: #f9f9fb;
}

/* Cartão base */
.pbminfotech-post-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Ajusta o interior para ocupar altura uniforme */
.pbmit-box-content-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Imagem */
.pbmit-featured-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Conteúdo do card */
.pbmit-content-box {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Título */
.pbmit-service-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-align: center;
}

.pbmit-service-title a {
  color: inherit;
  text-decoration: none;
}

/* Lista */
.car-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.car-service-list li {
  font-size: 14px;
  padding: 5px 0;
  border-bottom: 1px dashed #e0e0e0;
}

.car-service-list li:last-child {
  border-bottom: none;
}

.car-service-list a {
  color: #555;
  text-decoration: none;
}

.car-service-list a:hover {
  text-decoration: underline;
}

/* Layout fixo para grid responsiva */
.pbmit-service-style-1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

/* Responsividade */
@media (max-width: 767px) {
  .pbmit-service-title {
    font-size: 16px;
  }

  .car-service-list li {
    font-size: 13.5px;
  }

  .pbmit-featured-wrapper img {
    height: 180px;
  }
}

/* ===== MELHORIAS PROFISSIONAIS PARA OS CARDS DE SERVIÇO ===== */

/* Container principal dos cards */
.pbmit-element-posts-wrapper {
  margin-top: 40px;
}

/* Card base com design moderno */
.pbminfotech-post-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* Removida transição do card */
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.pbminfotech-post-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0036ff, #0056b3, #007bff);
  transform: scaleX(0);
  /* Removida transição do before */
}

/* Removido hover effects dos cards */

/* Ajusta o interior para ocupar altura uniforme */
.pbmit-box-content-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Imagem com overlay e efeitos */
.pbmit-featured-wrapper {
  position: relative;
  overflow: hidden;
}

.pbmit-featured-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 54, 255, 0.1), rgba(0, 86, 179, 0.1));
  opacity: 0;
  /* Removida transição do overlay */
  z-index: 1;
}

/* Removido hover overlay das imagens */

.pbmit-featured-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  /* Removida transição da imagem */
}

/* Removido zoom de imagem no hover */

/* Conteúdo do card com melhor espaçamento */
.pbmit-content-box {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

/* Título com design profissional */
.pbmit-service-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.pbmit-service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0036ff, #0056b3);
  border-radius: 2px;
}

.pbmit-service-title a {
  color: inherit;
  text-decoration: none;
  /* Removida transição do título */
}

.pbmit-service-title a:hover {
  color: #0036ff;
  text-decoration: none;
}

/* Lista com design moderno */
.car-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.car-service-list li {
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.car-service-list li:last-child {
  border-bottom: none;
}

/* Removido efeito de seta nos links */

.car-service-list a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding-left: 5px;
}

.car-service-list a:hover {
  color: #0036ff;
  text-decoration: none;
}

/* Layout fixo para grid responsiva */
.pbmit-service-style-1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

/* Badge para indicar número de itens */
.service-count-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #0036ff, #0056b3);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 54, 255, 0.3);
}

/* Ícones específicos para cada categoria */
.service-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-icon i {
  font-size: 18px;
  color: #0036ff;
}

/* Efeito de loading skeleton */
.card-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsividade melhorada */
@media (max-width: 767px) {
  .pbmit-service-title {
    font-size: 18px;
  }

  .car-service-list li {
    font-size: 13px;
    padding: 10px 0;
  }

  .pbmit-featured-wrapper img {
    height: 180px;
  }

  .pbmit-content-box {
    padding: 20px;
  }

  .service-icon {
    width: 35px;
    height: 35px;
  }

  .service-icon i {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .pbminfotech-post-item {
    margin-bottom: 20px;
  }

  .pbmit-service-title {
    font-size: 16px;
  }

  .car-service-list li {
    font-size: 12px;
  }
}

/* ===== MELHORIAS PARA OS CARDS SUPERIORES ===== */

.car-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.06),
    0 3px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.car-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0036ff, #0056b3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

/* Removido hover effects dos cards superiores */

.car-card-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}

.car-title-text {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: #1c1c1c;
  flex: 1;
  margin-right: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.5px;
}

.car-brand-logo {
  width: 75px;
  height: 75px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Removido hover effect do logo */

.car-card-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.car-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #0036ff, #0056b3);
  border-radius: 2px;
}

.car-vehicle-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.car-image img {
  max-width: 380px;
  height: 320px;
  object-fit: contain;
  border-radius: 12px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

/* Removido hover effect da imagem */

.car-info {
  flex: 1;
}

.car-info span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.car-info p {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid #0036ff;
}

.car-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.car-links li {
  margin-bottom: 15px;
}

.car-links a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  border-radius: 8px;
  background: #f8f9fa;
  border: 1px solid transparent;
}

.car-links a:hover {
  color: #0036ff;
  text-decoration: none;
}

.icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0036ff, #0056b3);
  margin-right: 12px;
  box-shadow: 0 2px 8px rgba(0, 54, 255, 0.3);
}

/* Removido hover effect do icon-circle */

.icon-circle i {
  color: #fff;
  font-size: 16px;
}

/* Responsividade para os cards superiores */
@media (max-width: 575.98px) {
  .car-card .row > [class^="col-"] {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 !important;
    border: none !important;
    margin-bottom: 20px;
  }

  .car-links {
    text-align: left;
  }

  .car-links li {
    justify-content: flex-start;
  }

  .car-links a {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .icon-circle {
    margin-right: 12px;
    margin-left: 0;
  }

  .car-card-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .car-vehicle-content {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .car-image img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .car-info {
    width: 100%;
  }

  .car-info span,
  .car-info p {
    text-align: left;
  }

  .car-info p {
    font-size: 14px;
  }

  .car-title-text {
    font-size: 22px;
  }
}

/* Estado desabilitado melhorado */
a.disabled {
  pointer-events: none;
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
  background: #f5f5f5 !important;
  color: #999 !important;
}

a.disabled .icon-circle {
  background: #ccc !important;
  box-shadow: none !important;
}

/* Seção principal */
.section-xl {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Título da seção */
.boxcar-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.boxcar-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0036ff, #0056b3);
  border-radius: 2px;
}

/* ===== ANIMAÇÕES E EFEITOS VISUAIS PROFISSIONAIS ===== */

/* Animação de entrada dos cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pbmit-service-style-1 {
  animation: fadeInUp 0.6s ease-out;
}

.pbmit-service-style-1:nth-child(1) { animation-delay: 0.1s; }
.pbmit-service-style-1:nth-child(2) { animation-delay: 0.2s; }
.pbmit-service-style-1:nth-child(3) { animation-delay: 0.3s; }
.pbmit-service-style-1:nth-child(4) { animation-delay: 0.4s; }

/* Efeito de pulso para badges */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.service-count-badge {
  animation: pulse 2s infinite;
}

/* Removido efeito de rotação dos ícones */

/* Removido efeito shimmer dos cards */

/* Efeito de destaque para links ativos */
.car-service-list li a.active {
  background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
  border-left: 4px solid #0036ff;
  color: #0036ff;
  font-weight: 600;
}

/* Tooltip para badges */
.service-count-badge {
  position: relative;
  cursor: help;
}

.service-count-badge::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  /* Removida transição do tooltip */
  z-index: 1000;
}

.service-count-badge::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
  opacity: 0;
  visibility: hidden;
  /* Removida transição do tooltip after */
}

.service-count-badge:hover::before,
.service-count-badge:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Efeito de loading skeleton melhorado */
.skeleton-card {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 20px;
  height: 400px;
  margin-bottom: 30px;
}

/* Efeito de destaque para cards em destaque */
.pbminfotech-post-item.featured {
  border: 2px solid #0036ff;
  box-shadow: 
    0 15px 35px rgba(0, 54, 255, 0.15),
    0 5px 15px rgba(0, 54, 255, 0.1);
}

.pbminfotech-post-item.featured::before {
  background: linear-gradient(90deg, #0036ff, #0056b3, #007bff, #0036ff);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Efeito de progresso para cards */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #0036ff, #0056b3);
  /* Removida transição do progress-bar */
}

/* Efeito de notificação para novos itens */
.new-item-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  animation: pulse 1s infinite;
}

/* Removidos efeitos de touch */

/* Melhorias para acessibilidade */
.pbminfotech-post-item:focus-within {
  outline: 2px solid #0036ff;
  outline-offset: 2px;
}

.car-service-list a:focus {
  outline: 2px solid #0036ff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Efeito de carregamento para imagens */
.image-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Efeito de destaque para estatísticas */
.stats-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  margin: 20px 0;
}

.stats-highlight h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.stats-highlight p {
  margin: 5px 0 0;
  opacity: 0.9;
  font-size: 14px;
}

/* Efeito de destaque para cards vazios */
.empty-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: #6c757d;
  font-style: italic;
}

.empty-card:hover {
  border-color: #0036ff;
  color: #0036ff;
}

/* Melhorias para impressão */
@media print {
  .pbminfotech-post-item {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .service-count-badge,
  .service-icon {
    display: none;
  }
}

/* Efeito de destaque para cards com erro */
.error-card {
  border-color: #dc3545;
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
}

.error-card .pbmit-service-title {
  color: #dc3545;
}

/* Efeito de destaque para cards com sucesso */
.success-card {
  border-color: #28a745;
  background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
}

.success-card .pbmit-service-title {
  color: #28a745;
}

/* Efeito de destaque para cards com aviso */
.warning-card {
  border-color: #ffc107;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.warning-card .pbmit-service-title {
  color: #d97706;
}

/* ===== ÍCONES ESPECÍFICOS PARA CADA OPÇÃO DENTRO DOS CARDS ===== */

/* Ícones para opções de filtros */
.filter-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
}

.filter-oil {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.filter-air {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.filter-fuel {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.filter-diesel {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.filter-cabin {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

/* Ícones para opções eléctricas */
.electrical-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
}

.warning-lights {
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
}

/* Ícones para manuais de reparação */
.repair-manual-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  transition: all 0.3s ease;
}

.repair-manual-icon.mechanical {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.repair-manual-icon.electrical {
  background: linear-gradient(135deg, #ffc107, #e0a800);
}

/* Estilo para links com ícones */
.car-service-list a {
  display: flex;
  align-items: center;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
}

.car-service-list a:hover {
  color: #0036ff;
  text-decoration: none;
}

/* Responsividade para ícones */
@media (max-width: 767px) {
  .filter-option-icon,
  .electrical-option-icon,
  .repair-manual-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
    margin-right: 6px;
  }
}

@media (max-width: 575px) {
  .filter-option-icon,
  .electrical-option-icon,
  .repair-manual-icon {
    width: 18px;
    height: 18px;
    font-size: 9px;
    margin-right: 5px;
  }
}