/* =====================================
   ANIMA – PRECIOS (AA)
===================================== */

.aa-precios {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */

.aa-precios-header {
  text-align: center;
  margin-bottom: 60px;
}

.aa-precios-header h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.aa-precios-header p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

/* ================= GRID ================= */

.aa-precios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* ================= CARD ================= */

.aa-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ================= IMAGE ================= */

.aa-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.aa-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.aa-card:hover .aa-card-img img {
  transform: scale(1.05);
}

/* ================= CONTENT ================= */

.aa-card h3 {
  font-size: 1.1rem;
  margin: 18px 20px 10px;
  line-height: 1.35;
}

.aa-card p {
  font-size: .95rem;
  color: #666;
  line-height: 1.55;
  margin: 0 20px 18px;
  flex-grow: 1;
}

/* ================= LINK ================= */

.aa-card a {
  display: block;
  padding: 16px 20px;
  font-weight: 600;
  font-size: .95rem;
  color: #111;
  text-decoration: none;
  border-top: 1px solid #eee;
  transition: color .25s ease, background .25s ease;
}

.aa-card a:hover {
  background: rgba(200,121,20,.05);
  color: #C87914;
}

/* ================= HOVER ================= */

.aa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* ================= GOLD / TOOL ================= */

.aa-card-gold {
  border: 2px solid rgba(200,121,20,.4);
}

.aa-card-gold::after {
  content: "Herramienta";
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #C87914;
  background: rgba(255,255,255,.9);
  padding: 4px 8px;
  border-radius: 6px;
}

/* ================= FOOTER ================= */

.aa-precios-footer {
  margin-top: 70px;
  text-align: center;
}

.aa-precios-footer p {
  font-size: .9rem;
  color: #777;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .aa-precios {
    margin: 60px auto;
  }

  .aa-precios-header h1 {
    font-size: 1.85rem;
  }

  .aa-card h3 {
    font-size: 1.05rem;
  }
}
