.mc-hero{
    --mc-orange:#F58220;
    position:relative;
    width:100%;
    height:clamp(390px,24vw,460px);
    min-height:390px;
    overflow:hidden;
    background-color:#171717;
    background-image:var(--mc-hero-bg-desktop);
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    color:#fff;
    font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.mc-hero *{
    box-sizing:border-box;
}

.mc-hero.no-banner{
    background-image:linear-gradient(135deg,#2b2b2b,#111);
}

.mc-hero__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(5,5,5,.90) 0%,
        rgba(5,5,5,.70) 34%,
        rgba(5,5,5,.33) 64%,
        rgba(5,5,5,.50) 100%
    );
}

.mc-hero__overlay:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.04),
        rgba(0,0,0,.10) 54%,
        rgba(0,0,0,.46)
    );
}

.mc-hero__inner{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    max-width:1500px;
    margin:0 auto;
    padding:20px 30px 24px;
    display:flex;
    flex-direction:column;
}

.mc-hero__back{
    display:inline-flex;
    align-items:center;
    gap:6px;
    width:max-content;
    color:#fff!important;
    text-decoration:none!important;
    font-size:11px;
    font-weight:700;
    opacity:.96;
}

.mc-hero__back svg{
    width:13px;
    height:13px;
    fill:currentColor;
}

.mc-hero__layout{
    margin-top:auto;
    display:grid;
    grid-template-columns:175px minmax(0,1fr) 500px;
    gap:24px;
    align-items:end;
    min-width:0;
}

.mc-hero__brand{
    align-self:start;
    margin-top:52px;
}

.mc-hero__logo-wrap{
    width:168px;
    height:168px;
    border:0;
    border-radius:20px;
    background:transparent;
    box-shadow:0 14px 34px rgba(0,0,0,.36);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.mc-hero__logo{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    padding:0;
    border-radius:20px;
}

.mc-hero__logo-fallback{
    font-size:42px;
    font-weight:900;
}

.mc-hero__content{
    min-width:0;
    padding:0 0 4px;
}

.mc-hero__heading-row{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.mc-hero__title{
    margin:0!important;
    color:#fff!important;
    font-size:clamp(30px,2.3vw,42px)!important;
    line-height:1.05!important;
    letter-spacing:-.025em!important;
    font-weight:600!important;
    text-shadow:0 1px 3px rgba(0,0,0,.18);
}

.mc-hero__badge{
    display:inline-flex;
    align-items:center;
    padding:6px 9px;
    border-radius:4px;
    background:var(--mc-orange);
    color:#fff;
    font-size:10px;
    font-weight:900;
    letter-spacing:.02em;
}

.mc-hero__verified{
    width:21px;
    height:21px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.mc-hero__verified svg{
    width:20px;
    height:20px;
    fill:currentColor;
}

.mc-hero__rating{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:10px;
    font-size:13px;
}

.mc-hero__stars{
    color:#ffc400;
    font-size:19px;
    letter-spacing:1px;
    line-height:1;
}

.mc-hero__rating strong{
    font-size:13px;
}

.mc-hero__rating > span:last-child{
    color:rgba(255,255,255,.86);
}

.mc-hero__categories{
    margin:11px 0 0!important;
    color:#fff!important;
    font-size:13px!important;
    line-height:1.4!important;
    font-weight:500!important;
}

.mc-hero__description{
    max-width:700px;
    margin:14px 0 0!important;
    color:#fff!important;
    font-size:14px!important;
    line-height:1.55!important;
    font-weight:450!important;
    text-shadow:0 2px 7px rgba(0,0,0,.4);
}

.mc-hero__actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:17px;
}

.mc-hero__action{
    min-height:40px;
    padding:9px 15px;
    border-radius:6px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-decoration:none!important;
    font-size:13px;
    font-weight:800;
    box-shadow:0 5px 13px rgba(0,0,0,.14);
    transition:.18s ease;
}

.mc-hero__action svg{
    width:16px;
    height:16px;
    fill:currentColor;
}

.mc-hero__action--whatsapp{
    background:#F58220;
    color:#fff!important;
}

.mc-hero__action--light{
    background:#fff;
    color:#222!important;
}

.mc-hero__action:hover{
    transform:translateY(-1px);
}

.mc-hero__panel{
    align-self:end;
    width:430px;
    min-height:292px;
    padding:16px 15px 14px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:13px;
    background:rgba(27,27,27,.66);
    backdrop-filter:blur(11px);
    -webkit-backdrop-filter:blur(11px);
    box-shadow:0 15px 36px rgba(0,0,0,.27);
    display:flex;
    flex-direction:column;
}

.mc-hero__status{
    display:flex;
    align-items:center;
    gap:7px;
    padding:0 2px 12px;
    border-bottom:1px solid rgba(255,255,255,.13);
    font-size:11px;
}

.mc-hero__status i{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#999;
    box-shadow:0 0 0 3px rgba(155,155,155,.16);
}

.mc-hero__status.is-open i{
    background:#F58220;
    box-shadow:0 0 0 3px rgba(245,130,32,.18);
}

.mc-hero__status.is-closed i{
    background:#e44d4d;
}

.mc-hero__status strong{
    color:#F58220;
    font-weight:800;
}

.mc-hero__status.is-closed strong{
    color:#ff7474;
}

.mc-hero__status span{
    margin-left:3px;
    color:#ddd;
    font-size:10px;
}

.mc-hero__panel-list{
    display:grid;
    padding:8px 0 10px;
    flex:1;
}

.mc-hero__panel-list a{
    display:grid;
    grid-template-columns:18px minmax(0,1fr);
    gap:8px;
    align-items:start;
    padding:5px 2px;
    color:#fff!important;
    text-decoration:none!important;
    font-size:11px;
    line-height:1.38;
}

.mc-hero__panel-list svg{
    width:15px;
    height:15px;
    fill:currentColor;
    margin-top:0;
}

.mc-hero__panel-list span{
    word-break:normal;
    overflow-wrap:normal;
}

.mc-hero__panel-list a[href^="mailto:"] span,
.mc-hero__panel-list a[href*="mamboreconecta.com.br"] span{
    white-space:nowrap;
}

.mc-hero__share{
    width:100%;
    min-height:39px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:5px;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    font-size:11px;
    font-weight:800;
    cursor:pointer;
}

.mc-hero__share svg{
    width:14px;
    height:14px;
    fill:currentColor;
}

/* Deslocamento do quadro de informações somente no desktop */
@media(min-width:1121px){
    .mc-hero .mc-hero__panel{
        position:relative!important;
        top:62px!important;
    }
}

@media(max-width:1120px){
    .mc-hero{
        height:auto;
        min-height:450px;
    }

    .mc-hero__inner{
        padding:18px 22px 20px;
    }

    .mc-hero__layout{
        grid-template-columns:140px minmax(0,1fr) 330px;
        gap:16px;
    }

    .mc-hero__logo-wrap{
        width:134px;
        height:134px;
    }

    .mc-hero__panel{
        width:330px;
    }

    .mc-hero__title{
        font-size:30px!important;
    }

    .mc-hero__description{
        font-size:12px!important;
    }

    .mc-hero__action{
        padding:8px 11px;
    }
}

@media(max-width:860px){
    .mc-hero{
        height:auto;
        min-height:0;
    }

    .mc-hero__inner{
        padding:18px;
    }

    .mc-hero__layout{
        grid-template-columns:110px 1fr;
        margin-top:80px;
    }

    .mc-hero__logo-wrap{
        width:104px;
        height:104px;
        border-radius:15px;
    }

    .mc-hero__panel{
        grid-column:1/-1;
        width:100%;
        min-height:0;
        margin-top:10px;
    }

    .mc-hero__content{
        padding-bottom:0;
    }

    .mc-hero__description{
        max-width:none;
    }

    .mc-hero__overlay{
        background:linear-gradient(
            90deg,
            rgba(5,5,5,.86),
            rgba(5,5,5,.56)
        );
    }
}

@media(max-width:560px){
    .mc-hero{
        background-image:var(--mc-hero-bg-mobile);
        background-position:center;
        background-size:cover;
        background-repeat:no-repeat;
    }
    .mc-hero__inner{
        padding:15px;
    }

    .mc-hero__back span{
        display:none;
    }

    .mc-hero__layout{
        display:block;
        margin-top:58px;
    }

    .mc-hero__brand{
        margin-bottom:15px;
    }

    .mc-hero__logo-wrap{
        width:96px;
        height:96px;
    }

    .mc-hero__title{
        font-size:29px!important;
    }

    .mc-hero__rating{
        margin-top:8px;
    }

    .mc-hero__description{
        font-size:13px!important;
    }

    .mc-hero__actions{
        margin-top:14px;
    }

    .mc-hero__action{
        flex:1;
    }

    .mc-hero__panel{
        margin-top:18px;
    }
}

/* Remove o espaço acima do Hero */
.mc-hero{
    margin-top:-120px!important;
}
@media(min-width:1121px){

    .mc-hero__inner{
        justify-content:center;
    }

    .mc-hero__layout{
        margin-top:0;
    }

    .mc-hero__back{
        position:absolute;
        top:20px;
        left:30px;
    }

    .mc-hero .mc-hero__panel{
        top:0!important;
        transform:none!important;
    }
}