/* ================= TOOLS ================= */

.tools-section {
  margin-top: 40px;
}

.tools-section h2 {
  color: #7ac143;
  margin-bottom: 20px;
  font-weight: 600;
 letter-spacing: 0.3px;
 font-size: 30px;
}

/* ================= TOOLS ================= */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card */
.tool-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border: 1.5px solid #8a8a8a;
  border-radius: 10px;
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tool-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

/* Ícono circular */
.tool-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #3b6cff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* Texto */
.tool-content h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.tool-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}
