/* HERO */
.hero {
  text-align: center;
  margin-bottom: 50px;
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
}

.cta {
  display: inline-block;
  background-color: #2ecc71;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.cta:hover {
  background-color: #27ae60;
}

/* SECCIÓN HERRAMIENTAS */
.tools-section h2 {
  margin-bottom: 20px;
}

/* GRID DE HERRAMIENTAS */
.tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* TARJETAS */
.tool-card {
  display: block;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  color: #333;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tool-card h3 {
  margin-bottom: 10px;
  color: #2ecc71;
}

.tool-card p {
  font-size: 0.95rem;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* CONFIANZA */
.trust {
  margin-top: 50px;
  background-color: #f0f9f4;
  padding: 25px;
  border-radius: 10px;
}

.trust ul {
  list-style: none;
  margin-top: 15px;
  padding-left: 0;
}

.trust li {
  margin-bottom: 10px;
  font-weight: bold;
}

/* RESETEO DE ENLACES */
a {
  color: inherit;
  text-decoration: none;
}
.tool-card.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.tool-card.disabled:hover {
  transform: none;
  box-shadow: none;
}
