  .app-download-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 20px 20px;
    color: white;

    /* Gradiente base como fondo principal */
    background: linear-gradient(
      90deg,
      #051E3C 0%,
      #051E3C 33.33%,
      #59D8D7 33.34%,
      #59D8D7 66.66%,
      #051E3C 66.67%
    );
  }

  /* Imagen de fondo encima del gradiente, debajo del contenido */
  .app-download-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://paisummitve.com/img/app/bgwhite.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2; /* controla la visibilidad de la imagen */
    z-index: 0;
  }

  .app-column {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
  }

  .app-download-text h1 {
    font-size: 2.5em;
    margin: 0;
    color: white;
  }

  .app-download-text h2 {
    font-size: 2em;
    margin: 0 0 10px 0;
    color: white;
  }

  .app-download-text p {
    font-size: 1.1em;
    color: #e0f7f7;
    margin-bottom: 20px;
  }

  .qr-image {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }

  .download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .download-button {
    background-color: white;
    color: #051E3C;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .download-button.secondary {
    background-color: #59D8D7;
    color: #051E3C;
  }

  .store-icons {
    margin-top: 10px;
  }

  .store-icons img {
    height: 80px;
    margin: 0 5px;
    vertical-align: middle;
  }

  .phone-mockup img {
    max-height: 400px;
    border-radius: 20px;
  }

  @media (max-width: 960px) {
    .app-download-section {
      flex-direction: column;
      background: linear-gradient(to bottom, #051E3C 0%, #59D8D7 100%);
    }
  }
  
  
.container, .o_container_small, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
    --gutter-x: 0px!important;
}