.contenedor-tarjetas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.tarjeta-contenido {
  padding: 0.2rem;
}

.boton-indicador {
  background-color: #e0f4ec;
  color: #2e7d32;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.boton-indicador:hover {
  background-color: #c0e9d7;
}

.tematicas-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-image: url(/wp-content/uploads/2025/05/Observatorio-Fondo-home2-1.png);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.tematica-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tematica-header img.icono-tematica {
  height: 40px;
  width: auto;
}

.tematica-header h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 0;
  font-family: "Inter";
}

.separador-tematicas {
  border: 1px dashed #ccc;
}

.swiper-container {
  padding: 1rem 0;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  color: rgb(7 64 78);
}

.tarjeta-indicador {
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  text-align: center;
  padding: 1rem;
}

.tarjeta-indicador:hover {
  transform: translateY(-5px);
}

.tarjeta-imagen img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.tarjeta-contenido h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  font-family: "Inter";
}

.buscador-formulario {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 40px;
  padding: 8px 16px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  width: 100%;
}

.select-tematica-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  padding-right: 10px;
  border-right: 1px solid #ccc;
}

.select-tematica-wrapper .icono-select-filtros {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  z-index: 0;
}

.select-tematica-wrapper .icono-select-flecha {
  width: 18px;
  height: 18px;
  padding-right: 1rem;
  position: absolute;
  right: 0;
  z-index: 0;
}

.select-tematica-wrapper select {
  border: none;
  background: transparent;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  max-width: 10rem;
  z-index: 1;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.select-tematica-wrapper select:focus {
  outline: none;
}

.select-tematica-wrapper .arrow-select {
  position: absolute;
  right: 6px;
  pointer-events: none;
  font-size: 10px;
  color: #555;
}

#busquedaIndicadores {
  border: none;
  flex: 1;
  font-size: 16px;
  padding: 6px 10px;
}

#busquedaIndicadores:focus {
  outline: none;
}

.boton-buscar {
  background: none;
  border: none;
  padding: 0 10px;
  cursor: pointer;
}

.boton-buscar .icono-buscar {
  font-size: 18px;
  color: #444;
}

/* SKELETONS */
.grupo-tematica.skeletons {
  display: flex;
  justify-content: center;
}

.loading_card {
  width: 18rem;
  padding: 1rem;
  text-align: center;
  border-radius: 0.8rem;
  background-color: white;
}

.loading_card__skeleton {
  background-image: linear-gradient(90deg,
      #ccc 0px,
      rgb(229 229 229 / 90%) 40px,
      #ccc 80px);
  background-size: 300%;
  background-position: 100% 0;
  border-radius: inherit;
  animation: shimmer 1.5s infinite;
}

.loading_card__title {
  height: 15px;
  margin-bottom: 15px;
}

.loading_card__description {
  height: 100px;
}

@keyframes shimmer {
  to {
    background-position: -100% 0;
  }
}

.buscador-indicadores-wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
}

.grupo-tematica {
  padding: 1rem 5rem;
  position: relative;
}

/* #scrollInternoWrapper {
  height: 85vh;
  overflow: hidden;
  background: url(/wp-content/uploads/2025/05/footer-indicadores.svg);
  background-position: bottom;
  background-position-y: 112%;
  background-repeat: no-repeat;
  background-size: contain;
} */


.custom-accordion {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.accordion-item {
  border-radius: 20px;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  background: #f1f1f100;
  padding: 5px;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: none;
  outline-width: unset;
  outline-style: none;
  position: relative;
  font-family: Raleway;
  color: #222B45;
}

.accordion-header .icono-tematica {
  height: 35px;
  margin-right: 10px;
  margin-left: 10px;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

.accordion-body ul {
  margin: 10px 0;
  padding-left: 45px;
  list-style-type: none;
}

.lista-acordeon {
  font-family: Raleway;
  font-size: 15px;
  margin-bottom: 15px;
}

.enlace-acordeon {
  text-decoration: none;
  color: #222B45;
}
.enlace-acordeon:hover{
  text-decoration: underline;
  font-weight: 600;
}

.accordion-header.active+.accordion-body {
  padding: 10px;
}

.arrow {
  transition: transform 0.3s ease;
  position: absolute;
  right: 15px;
}

.icono-select-flecha {
  width: 20px;
  height: 100%;
}

.accordion-header.active .arrow {
  transform: rotate(180deg);
}