 
      .contenedorProductos{
        display:flex;
        justify-content:center;
        width:100%;
        /*background-color:lightgrey;*/
        padding:130px 20px 0 20px;
      }
  
      .productos{
        display:flex;
        width:100%;
        max-width:1240px;
        flex-direction:column;
        /*background-color:lightblue;*/
      }
      
      .productos .badge{
        background-color:#1E2F6F;
        padding:14px 21px;
        margin-bottom:32px;
        font-size:16px;
        line-height:16px;
        font-weight:600;
        color:white;
        width:fit-content;
      }
      
      .produGaleria{
        display:flex;
        width:100%;
        height:469px;
        /*background-color:black;*/
      }
      
      .productos .titular{
        margin-bottom:25px;
        font-size:48px;
        line-height:48px;
        font-weight:700;
        color:#1E355E;
      }
      
      .productos .parrafo{
        margin-bottom:71px;
        max-width:683px;
        font-size:20px;
        line-height:32px;
        font-weight:500;
      }
      
      
      
      
      
    .introMaxContainer{
      display:flex;
      justify-content:center;
      width:100%;
    }
    
    .intro-carrusel {
      display: flex;
      align-items: center;
      /*background: grey;*/
      position:relative;
      justify-content:center;
      min-width: calc(100% + 30px);
    }

    .intro-arrow {
      background: #000;
      position:absolute;
      color: #fff;
      border: none;
      width: 36px;
      height: 36px;
      font-size: 25px;
      font-weight:700;
      padding-bottom:2px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      flex-shrink: 0;
      top:50%;
      transform:translateY(-50%);
    }
    
    .intro-arrow.left{
      z-index:3;
      left:25px;
    }
    
    .intro-arrow.right{
      z-index:3;
      right:25px;
    }

    .intro-wrapper {
      overflow: hidden;
      flex: 1;
      /*background: #000;*/
    }

    .intro-track {
      display: flex;
      /*background: red;*/
    }

    .intro-card {
      flex: 0 0 calc((100% / 3));
      height: 469px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      border-radius: 8px;
    }
    
    .introInside{
      display:flex;
      width:100%;
      height:100%;
      padding:0 1px;
    }
    
    .introFoto{
      display:flex;
      width:100%;
      height:100%;
      background-color:grey;
    }
    
    .introFoto img{
      width:100%;
      object-position:center;
      object-fit:cover;
    }

    @media (max-width: 700px) {
      .intro-card {
        flex: 0 0 50%;
      }
    }
      
      
      
      
      
     .introMaxContainer img{
        width:100%;
        height:100%;
        object-position:center;
        object-fit:cover;
      }