      .pagos{
        display:flex;
        width:100%;
        padding:189px 20px 137px 20px;
        justify-content:center;
        /*background-color:brown;*/
        position:relative;
      }
      
      .pagosFondo{
        display:flex;
        position:absolute;
        width:100%;
        height:826px;
        top:0;
        left:0;
        /*background-color:black;*/
        z-index:0;
        border-radius:0 0 100px 100px;
      }
      
      .pagosFondo img{
        width:100%;
        height:100%;
        object-position:top;
        object-fit:cover;
        border-radius:0 0 100px 100px;
      }
      
      .pagosContent{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:87px;
        max-width:1136px;
        z-index:2;
        position:relative;
        /*background-color:purple;*/
      }
      
      .pagosContent .titular{
        display:flex;
        width:100%;
        max-width:600px;
        flex-direction:column;
        gap:31px;
        /*background-color:green;*/
      }
      
      .pagosContent .titular h2{
        font-family: "gelica", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size:55px;
        line-height:50.5px;
        color:white;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
      }
      
      .pagosContent .titular p{
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:20.24px;
  line-height:28px;
        color:white;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
      }
      
      .pagosCajasTodas{
        display:flex;
        width:100%;
        flex-wrap:wrap;
        row-gap:19px;
        column-gap:18px;
        justify-content:center;
      }
      
      .pagosCajasTodas a.caja{
        all:unset;
        box-sizing:border-box;
        margin: 0;
        padding: 0;
        cursor:pointer;
        display:flex;
        background-color:#FBFBFB;
        box-shadow:2px 2px 10px 8px rgba(0,0,0,0.1);
        padding:24px 17px 30px 17px;
        gap:13px;
        width:260px;
        height:211px;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        transition:all 0.2s ease;
        position:relative;
        border-radius:5px;
        top:0;
      }
      
      .pagosCajasTodas a.caja:hover{
        top:-5px;
        transform:scale(1.02);
      }
      
      .pagosCajasTodas .caja .top{
        display:flex;
        width:100%;
        height:116px;
        justify-content:center;
        align-items:center;
        /*background-color:red;*/
      }
      
            
 .pagosCajasTodas .caja p.bold {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size:18px;
  line-height:18px;
  text-align: center;
  /*background-color:green;*/
}
      
      .pagosCajasTodas .caja .top .icon{
        display:flex;
        height:98px;
        width:149px; 
        /*background-color:black;*/
      }
      
      .pagosCajasTodas .caja .top .icon img{
        width:100%;
        object-fit:cover;
        object-position:center;
      }


      @media(max-width:910px){

        .pagosFondo img{
          object-position: 90% 0;
        }

        .pagos{
          padding-top: 400px;
        }

        .pagosContent{
          justify-content: center;
          align-items: center;
        }


        .pagosContent .titular{
            max-width: 90%;
            text-align: center;
        }

        .pagosContent .titular h2{
            text-align: center;
            text-shadow: 0 0 9px rgba(0,0,0,0.95);
        }
        .pagosContent .titular p{
            text-align: center;
            text-shadow: 0 0 9px rgba(0,0,0,0.95);
        }



      }

      @media(max-width:720px){

        .pagosContent .titular{
            max-width: none;
        }

        .pagos{
          padding-top: 380px;
          padding-bottom: 90px;
        }

        .pagosFondo{
          height: 700px;
        }
        .pagosFondo img{
            object-position: 90% 9px;
        }

        .pagosContent .titular h2{
          font-size: 37px;
          line-height: 37px;
        }

        .pagosContent .titular p{
          font-size: 17px;
          line-height: 21px;
        }

        .pagosContent .titular{
          gap: 20px;
        }

        .pagosContent{
          gap: 42px;
        }


        .pagosCajasTodas a.caja{
          width: 160px;
          height: 170px;
          padding: 20px;
        }

        .pagosCajasTodas .caja .top{
          height: 90px;
        }

        .pagosCajasTodas .caja p.bold{
          font-size: 16px;
          line-height: 18px;
        }

        .pagosCajasTodas .caja .top .icon{
          height: 68px;
          width: 110px;
        }

      }