/* =========================================================
   Empresa — bloques específicos
   ========================================================= */

.tla-empresa-valores__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.tla-empresa-valores__circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-600);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: inset 0 0 0 1px var(--border);
}
.tla-empresa-valores__circle::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(110, 164, 42, 0.45);
}
.tla-empresa-valores__title {
  font: 700 20px var(--font-display);
  color: var(--fg);
  letter-spacing: -0.005em;
}
.tla-empresa-valores__text {
  font: 400 14.5px / 1.65 var(--font-body);
  color: var(--fg-muted);
  max-width: 240px;
  text-wrap: pretty;
}

/* ---------- Contacto map block ---------- */
.tla-contacto-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(23, 23, 23, 0.06);
}
.tla-contacto-map__map {
  background: #e7ebe4;
  min-height: 380px;
  position: relative;
  display: grid;
  place-items: center;
}
.tla-contacto-map__map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tla-contacto-map__info {
  background: var(--neutral-900);
  color: #fff;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tla-contacto-map__title {
  font: 700 22px var(--font-display);
  margin-bottom: 6px;
  color: #fff;
}
.tla-contacto-map__addr {
  font: 400 14.5px / 1.55 var(--font-body);
  color: var(--fg-on-dark-muted);
}
.tla-contacto-map__sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 960px) {
  .tla-contacto-map { grid-template-columns: 1fr; }
}
