/* Estilos para los proyectos */
.ms_boton {
    display: flex;
    gap: 5px;
    align-items: center;
    width: fit-content;
    z-index: 0;
    padding: 8px 15px;
    border: 3px solid #DBE0E8;
    background-color: #e5eaf2;
    border-radius: 30px;
    transition: all 0.4s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    margin: auto;
    margin-top: 20px;
    &::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle,
          rgba(102, 204, 255, 0.564) 0%,
          rgba(0, 229, 255, 0) 70%
        );
        transform: scale(0);
        transition: transform 0.5s ease;
      }
      
      &:hover::after {
        transform: scale(4);
      }
      
      &:hover {
        border-color: #66ccff;
        background: #e5eaf2;
      }
      p{
        z-index: 1;
        margin: 0;
        color: #1B2735;
        font-size: 12pt;
        font-weight: 500;
        @media (max-width:900px) {
        font-size: 11pt;  
        }
        @media (max-width:530px) {
        font-size: 10pt;    }
        }
        img{    
            height:18px;
        }
  }