.buttoncard{
    background:#1AAB8A;
    color:#fff;
    border:none;
    position:relative;
    height:40px;
    border-radius: 10px;
    font-size:1em;
    padding:0 1em;
    cursor:pointer;
    transition:800ms ease all;
    outline:none;
  }
  .buttoncard:hover{
    background:#fff;
    color:#1AAB8A;
  }
  .buttoncard:before,.buttoncard:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    height:2px;
    width:0;
    background: #1AAB8A;
    transition:400ms ease all;
  }
  .buttoncard:after{
    right:inherit;
    top:inherit;
    left:0;
    bottom:0;
  }
  .buttoncard:hover:before,.buttoncard:hover:after{
    width:100%;
    transition:800ms ease all;
  }

  /*letras a*/
  .contacto{
    color: white; /* Color blanco para las letras */
    text-decoration: none; /* Quitar subrayado */
  }
  
.instagram-color {
    color: #833AB4; /* Color característico de Instagram */
}

.linkedin-color {
    color: #0077B5; /* Color característico de LinkedIn */
}

.sombra{
   border-radius: 10px;
   border: 2px solid #ddd;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
}

.sombratexto{
    border-radius: 10px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
}

.borderclass {
    border-radius: 10px;
}