 
      .videos{
        width:100%;
        display:flex;
        padding:104px 20px;
        /*background-color:brown;*/
        justify-content:center;
        background:linear-gradient(to bottom, #E3E3E3, #BEBEBE);
      }
      
      .videos .contenedor{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:60px;
        /*background-color:darkblue;*/
        align-items:center;
        max-width:1204px;
      }
      
      .videos .top{
        display:flex;
        flex-direction:column;
        gap:19px;
        max-width:960px;
        align-items:center;
        text-align:center;
        /*background-color:lightblue;*/
      }
      
      .videos .bottom{
        display:flex;
        width:100%;
        gap:18px;
        /*background-color:darkred;*/
        justify-content:center;
      }
      
      .videos .card{
        width:fit-content;
        display:flex;
        flex-direction:column;
        gap:25px;
        padding:20px 21px;
        background-color:#741040;
        border-radius:35px;
        color:white;
      }
      
      .videos .card .arriba{
        display:flex;
        width:fit-content;
        gap:10px;
        /*background-color:darkgrey;*/
        align-items:center;
      }
      
      .videos .card .icon{
        width:20px;
        height:23px;
      }
      
      .videos .videoSpace{
        width:464.1px;
        height:282.2px;
        background-color:black;
        border-radius:26px;
        overflow:hidden;
      }

      .videos .videoSpace .videoPlayer{
        width:100%;
        height:100%;
        display:block;
        object-fit:cover;
        background-color:black;
      }
      
      .videos img{
        object-position:center;
        object-fit:cover;
        width:100%;
        height:100%;
      }
      
      .videos .titular{
        font-size:45px;
        line-height:47px;
      }
      
      .videos .texto{
        font-size:21px;
        line-height:28px;
      }
      
      .videos .subtitle{
        font-size:19px;
        line-height:23px;
      }
      
      .videos .brillo{
        color:#86102E;
      }
      
