/* ============================================================
   TJ Services — id204364 (Hover & Responsive Fix)
   ============================================================ */

.tj-services--id204364 {
  position: relative;
  width: 100%;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  object-fit: cover;
}

/* Fondos dinámicos (No tocar) */
.tj-services--id204364.tj-services--bg-image { 
  background-image: var(--background-img);
  background-position: top center; /* CLAVE: El naranja empezará siempre arriba */
  background-repeat: no-repeat;
  background-size: 100% auto; /* Evita que la imagen se estire feo hacia abajo */
  background-attachment: scroll;
}
.tj-services--id204364.tj-services--bg-dark { background-color: #1a1a2e; }
.tj-services--id204364.tj-services--bg-light { background-color: #f5f5f5; }
.tj-services--id204364.tj-services--bg-none { background: none; }

.tj-services--id204364 .tj-services__container {
  position: relative;
  width: 90rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.75rem 0;
  padding: 5rem 0 5rem 0;
  margin: 0 auto;
}

.tj-services--id204364 .tj-services__section {
  position: relative;
  width: 100%;
  max-width: 81.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.75rem 0;
}

/* --- HEADER (Badge & Title) --- */
.tj-services--id204364 .tj-services__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;

}

.tj-services--id204364 .tj-services__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.1rem 0.3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(240, 240, 240, 0.2);
}

.tj-services--id204364 .tj-services__badge-inner {
  font-size: 1rem;
  font-family: 'Century Gothic', sans-serif;
  font-weight: 400;
  color: #fafafa;
}

.tj-services--id204364 .tj-services__title {
  margin-top: 0.25rem;
  font-size: 2.5rem;
  font-family: 'Century Gothic', sans-serif;
  font-weight: 700;
  color: #fafafa;
  text-align: center;
}

/* --- CARDS GRID --- */
.tj-services--id204364 .tj-services__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; /* Desktop: 4 en línea */
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  width: 100%;
  margin-top: 3.75rem;
}

.tj-services--id204364 .tj-services__card {
  position: relative;
  flex: 1; /* Ancho automático igual para todos */
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none; /* Por si usas <a> como card */
}

/* --- HOVER NARANJA --- */
.tj-services--id204364 .tj-services__card:hover {
  border-color: #F97E2B;
  box-shadow: 0 0 15px rgba(249, 126, 43, 0.3);
  transform: translateY(-5px);
}

.tj-services--id204364 .tj-services__card-image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.tj-services--id204364 .tj-services__card-image {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.tj-services--id204364 .tj-services__card:hover .tj-services__card-image {
  transform: scale(1.05);
}

.tj-services--id204364 .tj-services__card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tj-services--id204364 .tj-services__card-title {
  font-size: 1.25rem;
  font-family: 'Century Gothic', sans-serif;
  font-weight: 700;
  color: #fafafa;
}

/* Hover naranja en el título cuando pasas por la card */
.tj-services--id204364 .tj-services__card:hover .tj-services__card-title {
  color: #F97E2B;
}

.tj-services--id204364 .tj-services__card-desc {
  font-size: 0.95rem;
  font-family: 'Century Gothic', sans-serif;
  color: rgba(250, 250, 250, 0.8);
}

/* --- FOOTER & CTA BUTTON --- */
.tj-services--id204364 .tj-services__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 4rem; /* Espacio respecto a las cards */
}

.tj-services--id204364 .tj-services__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: 'Century Gothic', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: #fafafa;
  background: #F97E2B; /* Naranja de tu marca */
  border-radius: 50px; /* Estilo píldora */
  border: 2px solid #F97E2B;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 126, 43, 0.2);
}

.tj-services--id204364 .tj-services__cta:hover {
  background: transparent;
  color: #F97E2B;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 126, 43, 0.4);
}


/* --- RESPONSIVE CORREGIDO --- */

/* Tablets (Ipad): 2 arriba y 2 abajo */
@media (max-width: 1024px) {
  .tj-services--id204364 .tj-services__cards {
    flex-wrap: wrap;
    justify-content: center;
  }
  .tj-services--id204364 .tj-services__card {
    flex: 0 0 calc(50% - 1.5rem); /* 2 por fila */
    min-width: 280px;
  }
}

/* Móvil: 1 por fila */
@media (max-width: 767px) {
  .tj-services--id204364 .tj-services__section {
    padding: 0 1.5rem;
  }
  .tj-services--id204364 .tj-services__card {
    flex: 0 0 100%; /* 1 por fila */
  }
  .tj-services--id204364 .tj-services__title {
    font-size: 2rem;
  }
  .tj-services--id204364 .tj-services__footer {
    margin-top: 2.5rem;
    padding: 0 1.5rem;
  }
  .tj-services--id204364 .tj-services__cta {
    width: 100%; /* Botón ancho completo en móvil para mejor clic */
  }
}

}