 .grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(3, 1fr);
    }

    /* Responsivo */
    @media (max-width: 900px) {
      .grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .grid { grid-template-columns: repeat(1, 1fr); }
      .card { flex-direction: column; }
      .card img { width: 100%; height: 180px; }
    }

    .card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: row;
      height: 200px;
    }

    .card img {
      width: 40%;
      height: 100%;
      object-fit: cover;
    }

    .content {
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 60%;
    }

    .content h3 {
      margin: 0;
      font-size: 1.2rem;
      font-weight: bold;
    }

    .content p {
      font-size: 0.9rem;
      color: #555;
    }

    .btn-plus {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid #93C44A;
      color: #678A24;
      font-size: 22px;
      font-weight: bold;
      text-decoration: none;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: .2s;
    }

    .btn-plus:hover {
      background: #678A24;
      color: white;
      transform: scale(1.08);
    }