.rc-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.rc-share-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1A1C1C;
    border: 1.5px solid #D6D9DA;
    border-radius: 999px;
    padding: 7px 16px;
    cursor: pointer;
    user-select: none;
    transition: border-color .2s ease, color .2s ease;
}

.rc-share-label:hover {
    border-color: #024442;
    color: #024442;
}

/* Botones ocultos por defecto */
.rc-share-buttons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    transition: max-width .35s ease, opacity .25s ease;
}

.rc-share-buttons.rc-visible {
    max-width: 300px;
    opacity: 1;
}

/* Botones base */
.rc-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #D6D9DA;
    background: #fff;
    color: #1A1C1C;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
    flex-shrink: 0;
    padding: 0;
}

/* Hover por red social */
.rc-share-btn:hover    { 
    border-color: #024442!important; 
    color: #024442!important; 
    background-color: #024442!important;
}
.rc-share-wa:hover     { border-color: #25D366; color: #25D366; }
.rc-share-fb:hover     { border-color: #1877F2; color: #1877F2; }
.rc-share-li:hover     { border-color: #0A66C2; color: #0A66C2; }
.rc-share-x:hover      { border-color: #000;    color: #000; }

/* Copiar enlace */
.rc-share-copy:hover {
    border-color: #024442;
    color: #024442;
    background: #fff;
}

.rc-share-copy.rc-copied {
    border-color: #024442;
    background: #024442;
    color: #fff;
}

/* Mensajes de error CF7 */
.wpcf7-not-valid-tip {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #d9534f;
    margin-top: 4px;
    display: block;
}

.wpcf7-response-output {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    margin-top: 16px !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
}