.mmc-hero{
    position:relative;
    min-height:560px;
    padding:80px 70px;
    color:#ffffff;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    border-radius:20px;
    overflow:hidden;
    display:grid;
    grid-template-columns:45% 55%;
    align-items:center;
}

.mmc-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.86) 0%,
        rgba(0,0,0,0.72) 42%,
        rgba(0,0,0,0.28) 100%
    );
    z-index:1;
}

.mmc-hero-content{
    position:relative;
    z-index:2;
    max-width:620px;
    text-align:left;
    grid-column:1;
}

.mmc-logo img{
    width:105px;
    height:105px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #ffffff;
    box-shadow:0 10px 30px rgba(0,0,0,0.35);
    margin-bottom:20px;
}

.mmc-hero h1{
    font-size:58px;
    line-height:1.05;
    margin:0 0 14px;
    color:#ffffff;
    text-shadow:0 3px 12px rgba(0,0,0,0.75);
}

.mmc-subtitle{
    font-size:22px;
    color:#ffffff;
    opacity:0.96;
    margin:0;
    text-shadow:0 2px 8px rgba(0,0,0,0.7);
}

.mmc-business-target{

    margin:10px 0 18px;

    color:rgba(255,255,255,.92);

    font-size:18px;

    font-weight:600;

    letter-spacing:.02em;

}

.mmc-targets{

    display:flex;
    flex-wrap:wrap;
    gap:10px;

    margin-top:14px;
    margin-bottom:16px;

}

.mmc-target{

    display:inline-flex;
    align-items:center;

    padding:8px 14px;

    border-radius:999px;

    background:rgba(255,255,255,.18);

    border:1px solid rgba(255,255,255,.28);

    color:#fff;

    text-decoration:none;

    font-size:13px;

    font-weight:700;

    backdrop-filter:blur(8px);

    transition:.25s;

}

.mmc-target:hover{

    background:#ffffff;

    color:#1E3A5F;

}

.mmc-products{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:22px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(0,0,0,0.55);
    border:1px solid rgba(255,255,255,0.28);
    font-size:15px;
    font-weight:800;
    color:#ffffff;
}

.mmc-status-pill{
    position:absolute;
    top:28px;
    right:32px;
    z-index:3;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.94);
    color:#1E3A5F;
    font-size:14px;
    font-weight:800;
    box-shadow:0 10px 30px rgba(0,0,0,0.22);
}

.mmc-status-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    flex:0 0 10px;
}

.mmc-status-open .mmc-status-dot{
    background:#2E7D32;
}

.mmc-status-pause .mmc-status-dot{
    background:#F59E0B;
}

.mmc-status-closed .mmc-status-dot{
    background:#D32F2F;
}

.mmc-hero-buttons{
    display:flex;
    justify-content:flex-start;
    gap:14px;
    flex-wrap:wrap;
    margin-top:34px;
}

.mmc-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:160px;
    min-height:50px;
    padding:14px 24px;
    border-radius:16px;
    font-size:16px;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 12px 28px rgba(0,0,0,0.32);
    transition:all 0.2s ease;
}

.mmc-btn:hover{
    transform:translateY(-2px);
}

.mmc-btn-whatsapp{
    background:#25D366;
    color:#ffffff;
}

.mmc-btn-call{
    background:#ffffff;
    color:#1E3A5F;
}

.mmc-target{
    display:inline-flex;
    align-items:center;
    margin-top:14px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.24);
    color:#ffffff;
    font-size:14px;
    font-weight:800;
}

.mmc-btn-maps{
    background:rgba(255,255,255,0.16);
    color:#ffffff;
    border:1px solid rgba(255,255,255,0.45);
}

@media(max-width:768px){

    .mmc-hero{
        display:flex;
        min-height:620px;
        padding:96px 18px 34px;
        align-items:flex-end;
        background-position:center;
    }

    .mmc-hero-content{
        max-width:100%;
        width:100%;
    }

    .mmc-hero h1{
        font-size:36px;
        line-height:1.08;
    }

    .mmc-subtitle{
        font-size:17px;
    }
    
    .mmc-targets{

    justify-content:flex-start;

    margin-top:10px;

    margin-bottom:14px;

    }

    .mmc-target{

    font-size:12px;

    padding:7px 12px;

}

    .mmc-products{
        margin-top:18px;
        font-size:14px;
        padding:9px 14px;
    }

    .mmc-status-pill{
        top:16px;
        left:14px;
        right:14px;
        justify-content:center;
        padding:11px 14px;
        font-size:12px;
        line-height:1.3;
    }

    .mmc-hero-buttons{
        flex-direction:column;
        gap:12px;
    }

    .mmc-btn{
        width:100%;
        min-height:52px;
        font-size:15px;
    }
    
    .mmc-logo{
    display:none;
}

.mmc-hero{
    min-height:460px;
    padding:74px 20px 32px;
}

.mmc-hero h1{
    font-size:34px;
    margin-bottom:8px;
}

.mmc-subtitle{
    font-size:16px;
}

.mmc-target{
    margin-top:10px;
    font-size:13px;
    padding:7px 12px;
}

.mmc-products{
    margin-top:12px;
}

.mmc-hero-buttons{
    margin-top:20px;
    gap:10px;
}

.mmc-business-target{

    margin:8px 0 14px;

    font-size:15px;

}

}