.contacto-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    text-decoration: none;
    display: flex;
    align-items: center;
    background-color: #7b4fc9; /* Esto se sobreescribe con inline style desde PHP */
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: Arial, sans-serif;
}

.contacto-flotante:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0,0,0,0.4);
}

.contacto-flotante img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.contacto-flotante span {
    font-weight: bold;
    font-size: 16px;
}

/* Imagen de publicidad */
.bcf-publicidad img {
    width: 120px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.bcf-publicidad img:hover {
    transform: scale(1.05);
}
