/* ===== TYC PETFRIENDLY - Términos y Condiciones PetFriendly ===== */

.pf-tc-wrapper {
  background: #fafafa;
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0 48px;
}

.pf-tc-header {
  margin-bottom: 8px;
}

.pf-tc-header h2 {
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 4px;
  color: #222;
}

/* Texto introductorio */
.pf-tc-intro {
  font-size: 16px;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.6;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
  padding: 18px;
}

/* Tabla de rutas dentro del term 1 */
.pf-tc-routes {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.pf-tc-routes td {
  padding: 4px 16px 4px 0;
  font-size: 14px;
  color: #444;
  vertical-align: top;
}

.pf-tc-routes td::before {
  content: "• ";
  color: #f38020;
  font-weight: bold;
}

/* Lista principal */
.pf-tc-list {
  counter-reset: pf-tc-counter;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pf-tc-list > li {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
  padding: 18px 18px 18px 64px;
  color: #333;
  font-size: 16px;
}

.pf-tc-list > li:before {
  counter-increment: pf-tc-counter;
  content: counter(pf-tc-counter);
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f38020;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pf-tc-list p {
  margin: 0;
  text-align: left;
}

.pf-tc-sublist {
  margin: 10px 0 0 0;
  padding-left: 18px;
}

.pf-tc-sublist li {
  margin: 6px 0;
  list-style-type: disc;
}

/* Nota de rutas */
.pf-tc-routes-note {
  font-size: 14px;
  color: #e65100;
  font-weight: 600;
  margin-top: 8px;
}

/* Highlight anchor */
.pf-tc-list > li:target {
  outline: 2px solid #f38020;
  outline-offset: 2px;
}

/* Responsive */
@media (min-width: 992px) {
  .pf-tc-wrapper {
    padding: 28px 32px;
  }

  .pf-tc-list {
    gap: 16px;
  }

  .pf-tc-list > li {
    padding: 22px 22px 22px 76px;
    font-size: 17px;
  }

  .pf-tc-list > li:before {
    top: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

@media (max-width: 500px) {
  .pf-tc-list > li {
    width: 85vw;
  }
}
