.ficha-share-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(880px, calc(100% - 28px));
    margin: 18px auto 26px;
    padding: 13px 14px 13px 18px;
    border: 1px solid #dbeaf4;
    border-left: 5px solid #f7c948;
    border-radius: 16px;
    background:
        radial-gradient(circle at 0% 50%, rgba(247, 201, 72, 0.18) 0%, rgba(247, 201, 72, 0) 44%),
        linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
    box-shadow: 0 14px 30px rgba(18, 63, 90, 0.1);
}

.ficha-share-copy-block {
    min-width: 0;
}

.ficha-share-kicker {
    display: inline-flex;
    align-items: center;
    color: #13795b;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.ficha-share-copy-block p {
    margin: 3px 0 0;
    color: #31526a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.ficha-share-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 8px;
}

.ficha-share-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid #cfe3f0;
    border-radius: 999px;
    background: #ffffff;
    color: #123f5a;
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(18, 63, 90, 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.ficha-share-control svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.ficha-share-control:hover,
.ficha-share-control:focus-visible {
    transform: translateY(-1px);
    border-color: #f7c948;
    background: #fff9df;
    color: #123f5a;
    outline: none;
    box-shadow: 0 12px 22px rgba(18, 63, 90, 0.13);
}

.ficha-share-whatsapp {
    color: #13795b;
}

.ficha-share-copy.is-copied {
    border-color: #2ab27b;
    background: #e9fbf2;
    color: #13795b;
}

@media (max-width: 760px) {
    .ficha-share-panel {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        width: calc(100% - 24px);
        margin-top: 14px;
        padding: 14px;
        border-left-width: 0;
        border-top: 4px solid #f7c948;
        border-radius: 15px;
    }

    .ficha-share-actions {
        justify-content: stretch;
    }

    .ficha-share-control {
        flex: 1 1 0;
        min-width: 0;
        padding-right: 9px;
        padding-left: 9px;
    }
}

@media (max-width: 380px) {
    .ficha-share-control span {
        display: none;
    }

    .ficha-share-control {
        min-height: 44px;
    }
}
