/* Estilos base */
button {
    background-color: #fff;
    border: 1px solid;
    padding: 5px;
    position: relative;
    width: 7.5em;
    height: 2.5em;
    transition: 0.5s;
    font-size: 16px;
    border-radius: 0.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    cursor: pointer;
}

/* Estilos para el texto */
button p {
    margin: 0;
    color: inherit;
    font-weight: bold;
    transition: color 0.5s;
}

/* Estilos para el ícono */
button i {
    font-size: 1.2em;
    transition: color 0.5s;
}

/* WhatsApp */
button.whatsapp {
    border-color: #25D366;
    color: #25D366;
}

button.whatsapp:hover {
    background-color: #25D366;
    color: #fff;
}

/* Llamada */
button.call {
    border-color: #34B7F1;
    color: #34B7F1;
}

button.call:hover {
    background-color: #34B7F1;
    color: #fff;
}

/* Correo */
button.email {
    border-color: #FF5733;
    color: #FF5733;
}

button.email:hover {
    background-color: #FF5733;
    color: #fff;
}
