.pros-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 8px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pros-footer-bar.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.pros-footer-bar-content {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 15px;
    min-height: 36px;
}

.pros-footer-bar-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding-left: 20px;
    padding-right: 150px;
    line-height: 1.4;
    font-weight: 500;
    font-family: "Franklin Medium", sans-serif;
}

/* Desktop: 14px (forzado para que no lo pise el tema) */
@media (min-width: 769px) {
    .pros-footer-bar .pros-footer-bar-text,
    .pros-footer-bar .pros-footer-bar-text a,
    .pros-footer-bar .pros-footer-bar-text span {
        font-size: 14px !important;
    }
}

.pros-footer-bar-text a {
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.pros-footer-bar-text a:hover {
    text-decoration: none !important;
    color: #01AEFE !important;
}

.pros-footer-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.pros-footer-bar-cta {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-family: "Franklin Medium", sans-serif;
    font-size: 13px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.pros-footer-bar-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.pros-footer-bar-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    box-sizing: border-box;
    line-height: 1;
    margin: 0;
}

.pros-footer-bar-close:hover {
    opacity: 1;
}

.pros-footer-bar-close svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .pros-footer-bar {
        padding: 10px 12px;
    }
    
    .pros-footer-bar-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        min-height: auto;
    }
    
    .pros-footer-bar-text {
        position: static;
        transform: none;
        flex: 1;
        min-width: 0;
        text-align: left;
        padding-left: 0;
        padding-right: 12px;
        font-size: 12px;
        line-height: 1.4;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .pros-footer-bar-actions {
        flex-shrink: 0;
    }
    
    .pros-footer-bar-cta {
        padding: 5px 14px;
        font-size: 11px;
    }
    
    .pros-footer-bar-close {
        width: 20px;
        height: 20px;
        padding: 3px;
    }
    
    .pros-footer-bar-close svg {
        width: 14px;
        height: 14px;
    }
}
