/* =====================================================
   HERO - MONYS IMPORTS
===================================================== */

/* Apenas o grupo que contém o banner */
.monys-hero-wrapper{
    position:relative;
    overflow:hidden;
}

/* ============================
   BANNER
============================ */

.monys-banner{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    padding-left:60px;
    z-index:20;
    pointer-events:none;
}

/* ============================
   CARD
============================ */

.monys-banner-card{

    width:620px;
    min-height:320px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,.18);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.25);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    pointer-events:auto;
}

/* ============================
   TEXTO
============================ */

.banner-texto{
    flex:1;
    min-width:0;
}

.produto-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:#fff;
    color:#ff2d95;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.monys-banner-card h2{

    margin:0 0 12px;

    font-size:28px;
    font-weight:800;
    line-height:1.2;

    color:#111827;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.monys-banner-card p{

    margin:0 0 18px;

    font-size:15px;
    line-height:1.5;

    color:#374151;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.produto-preco{

    font-size:34px;
    font-weight:800;
    color:#111827;

    margin-bottom:20px;
}

.produto-botao{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    border-radius:40px;

    background:#ff2d95;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.produto-botao:hover{
    transform:translateY(-3px);
}

.banner-imagem{

    width:180px;
    flex-shrink:0;

    display:flex;
    justify-content:center;
    align-items:center;
}

.banner-imagem img{

    max-width:170px;
    max-height:250px;

    width:auto;
    height:auto;

    object-fit:contain;

    filter:drop-shadow(0 15px 20px rgba(0,0,0,.20));
}

/* ============================
   RESPONSIVO
============================ */

@media(max-width:991px){

    .monys-banner{
        padding:20px;
    }

    .monys-banner-card{

        width:100%;

        flex-direction:column;

        text-align:center;
    }

    .banner-imagem{
        width:140px;
    }

}