    .pide-hero {
      background-image: url('https://canitas.mx/wp-content/themes/LCtheme2020/images/pide-info-banner-dkp.png'); /* Imagen para escritorio */
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1rem;
      height: 40vh;
      margin-bottom: 20px;
    }

    .pide-content-box {
      background-color: white;
      padding: 1rem;
      text-align: center;
      border-radius: 8px;
      width: 450px;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }

    .pide-title {
      font-size: 2.5rem;
      color: white;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
      margin-bottom: 2rem;
      text-align: center;
    }

    .pide-subtitle {
      font-size: 1.2rem;
      color: #333;
      margin-bottom: 1.5rem;
    }

    .pide-cta-button {
      background-color: #ff6f00;
      color: white;
      border: none;
      padding: 1rem 2rem;
      font-size: 1.2rem;
      border-radius: 6px;
      cursor: pointer;
      margin-bottom: 1rem;
      font-weight: bold;
    }

    .pide-note {
      color: green;
      font-size: 1rem;
    }

    @media screen and (max-width: 768px) {
      .pide-hero {
        background-image: url('https://canitas.mx/wp-content/themes/LCtheme2020/images/pide-info-banner-mob.png'); /* Imagen para móviles */
        background-position: top;
        padding: 2rem 1rem;
        height: 70vh;
      }

      .pide-subtitle {
        margin-bottom: 0.5rem;
      }

      .pide-title {
        font-size: 1.8rem;
      }

      .pide-content-box {
        padding: 1rem;
      }

      .pide-cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
      }
    }