/* ===== Extraído de index(1).html — <style> #1 ===== */
    /* ── Seal logos override ─────────────────────────────── */
    .seal--logo {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 6px;
      padding: 14px 20px;
      min-width: 220px;
      transition: border-color .2s, background .2s;
    }

    .seal--logo:hover {
      border-color: rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.1);
    }

    .seal-logo-wrap {
      flex-shrink: 0;
      width: 72px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .seal-logo-img {
      max-width: 72px;
      max-height: 44px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: .88;
    }

    .seal-meta-block {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .seal-meta-block strong {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .04em;
      color: #fff;
    }

    .seal-meta-block small {
      font-size: 10.5px;
      color: rgba(255, 255, 255, .5);
      line-height: 1.4;
    }

    /* Mobile */
    @media (max-width: 600px) {
      .seals-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
      }

      .seal--logo {
        min-width: 0;
        flex: 1 1 calc(50% - 5px);
        padding: 12px 14px;
        gap: 10px;
      }

      .seal-logo-wrap {
        width: 52px;
        height: 36px;
      }

      .seal-logo-img {
        max-width: 52px;
        max-height: 32px;
      }

      .seal-meta-block strong {
        font-size: 12px;
      }

      .seal-meta-block small {
        font-size: 10px;
      }
    }

    @media (max-width: 380px) {
      .seal--logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }

    /* ── WhatsApp Button ─────────────────────────────────── */
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: 6px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      color: #ffffff;
      background: transparent;
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      cursor: pointer;
      transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
      white-space: nowrap;
    }

    .btn-whatsapp .wa-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .btn-whatsapp:hover,
    .btn-whatsapp:focus-visible {
      background: #25D366;
      border-color: #25D366;
      color: #ffffff;
      box-shadow: 0 0 22px rgba(37, 211, 102, 0.40);
      outline: none;
    }

    .btn-whatsapp:hover .wa-icon {
      transform: scale(1.12);
    }

    @media (max-width: 500px) {
      .btn-whatsapp {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
      }

      .btn-whatsapp .wa-icon {
        width: 18px;
        height: 18px;
      }
    }
  
