    .coagro-catalogo-section {
      padding: 3rem 0rem;
      max-width: 1200px;
      margin: auto;
    }

    .seccion-titulo {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      font-weight: 600;
      color: #222;
    }

    .catalogo-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }

    .catalogo-card {
      width: 280px;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .catalogo-card:hover {
      transform: scale(1.03);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .catalogo-card img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .catalogo-titulo {
      text-align: center;
      padding: 1rem;
      font-size: 1.1rem;
      font-weight: 500;
    }

    .visor-catalogo {
      margin-top: 2rem;
      position: relative;
    }

    .visor-catalogo iframe {
      width: 100%;
      height: 80vh;
      border-radius: 12px;
      border: 1px solid #ccc;
    }

    .visor-catalogo button {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #222;
      color: white;
      border: none;
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      font-size: 0.9rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .catalogo-card {
        width: 100%;
      }

      .catalogo-card img {
        height: 260px;
      }
    }