.rcv-header-v4{
    width:100%;
    background:#f5edc8;
    border-bottom:1px solid #e2dba8;
    position:sticky;
    top:0;
    z-index:999;
}

.rcv-header-inner{
    max-width:1500px;
    margin:auto;
    padding:10px 18px;
    display:flex;
    align-items:center;
    gap:18px;
}

.rcv-brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#111;
    min-width:250px;
}

.rcv-brand img{
    width:46px;
    height:46px;
    object-fit:contain;
}

.rcv-brand-text strong{
    display:block;
    font-size:14px;
    line-height:1.1;
}

.rcv-brand-text span{
    font-size:11px;
    color:#666;
}

.rcv-search{
    flex:1;
    display:flex;
    gap:8px;
}

.rcv-search input{
    flex:1;
    height:42px;
    border-radius:14px;
    border:1px solid #d8cf98;
    padding:0 14px;
    font-size:15px;
}

.rcv-search button{
    height:42px;
    border:none;
    padding:0 22px;
    border-radius:14px;
    background:#f3d339;
    font-weight:800;
    cursor:pointer;
}

.rcv-nav{
    display:flex;
    align-items:center;
    gap:16px;
}

.rcv-nav a{
    text-decoration:none;
    color:#111;
    font-weight:700;
    font-size:15px;
}

.rcv-chat-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid #d8cf98;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    background:#fff;
}

.rcv-chat-dot{
    position:absolute;
    top:7px;
    right:7px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#ff2f55;
}

.rcv-user-box{
    display:flex;
    align-items:center;
    gap:8px;
}

.rcv-user-box img{
    width:34px;
    height:34px;
    border-radius:50%;
    object-fit:cover;
}

.crear{
    background:#fff;
    border:1px solid #d8cf98;
    padding:10px 14px;
    border-radius:14px;
}

@media(max-width:900px){

    .rcv-header-inner{
        flex-wrap:wrap;
        gap:10px;
    }

    .rcv-brand{
        min-width:auto;
    }

    .rcv-search{
        order:3;
        width:100%;
    }

    .rcv-nav{
        margin-left:auto;
        gap:10px;
        flex-wrap:wrap;
    }

    .rcv-brand-text span{
        display:none;
    }

    .rcv-nav a{
        font-size:13px;
    }
}

@media(max-width:560px){

    .rcv-brand-text strong{
        font-size:12px;
    }

    .rcv-user-box span{
        display:none;
    }

    .rcv-nav{
        width:100%;
        justify-content:space-between;
    }
}