
/* Compartir */

.gs-share {
    text-align: left;
    margin-top: 30px;
}

.gs-share__label {
    display: block;
    font-size:var(--text-base);
    font-weight:var(--font-medium);
    margin-bottom: 12px;
    color:var(--color-text-cafe);
}

.gs-share__buttons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
}

.gs-share__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.25s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.gs-share__btn img {
    height: 20px;
}

.gs-share__btn--whatsapp {
    background: #25D366;
}

.gs-share__btn--facebook {
    background: #1877F2;
}

.gs-share__btn--copy {
    background: #e5e5e5;
    color: #333;
}

.gs-share__btn:hover {
    transform: translateY(-2px);
}

.gs-share__btn.is-copied {
    background: #4CAF50;
    color: #fff;
}