/* === FT BULLETPOINTS — estilo Farmacia Tañá === */

.ft-bulletpoints {
  padding: 2rem 1rem;
  background-color: #fff;
}

.ft-bulletpoints__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- TARJETA --- */
.ft-bulletpoints__item {
  background: #faf7fc;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.ft-bulletpoints__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* --- ICONO --- */
.ft-bulletpoints__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e9e0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: transform .15s ease;
}
.ft-bulletpoints__item:hover .ft-bulletpoints__icon {
  transform: scale(1.05);
}
.ft-bulletpoints__icon svg {
  width: 30px;
  height: 30px;
  stroke: #7a5ca4;
}

/* --- TÍTULO --- */
.ft-bulletpoints__title {
  font-size: 1rem;
  font-weight: 600;
  color: #3b2b4a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  transition: color .15s ease;
}
.ft-bulletpoints__item:hover .ft-bulletpoints__title {
  color: #7a5ca4;
}

/* --- DESCRIPCIÓN --- */
.ft-bulletpoints__desc {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* --- TABLET --- */
@media (max-width: 991px) {
  .ft-bulletpoints { padding: 1.5rem 1rem; }
  .ft-bulletpoints__icon { width: 56px; height: 56px; }
  .ft-bulletpoints__icon svg { width: 26px; height: 26px; }
}

/* --- MÓVIL --- */
@media (max-width: 575px) {
  .ft-bulletpoints {
    padding: 1.25rem .5rem;
    overflow-x: hidden;
  }
  .ft-bulletpoints__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ft-bulletpoints__item {
    flex-direction: row;
    text-align: left;
    padding: 1rem;
    gap: 1rem;
  }
  .ft-bulletpoints__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .ft-bulletpoints__icon svg { width: 22px; height: 22px; }
  .ft-bulletpoints__content { flex: 1; }
}
