/* =========================================================
   05. COMPONENTE COMUNE
========================================================= */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:46px;
    padding:13px 22px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--pink),#fc74b7);
    color:#fff !important;
    font-size:14px;
    font-weight:750;
    line-height:1.2;
    box-shadow:var(--shadow-pink);
    cursor:pointer;
    white-space:nowrap;
}

.btn:hover,
.btn:focus{
    color:#fff !important;
    transform:translateY(-2px);
    box-shadow:0 22px 48px rgba(227,27,120,.32);
}

.btn.secondary{
    background:#fff;
    color:var(--pink) !important;
    border:1px solid rgba(227,27,120,.22);
    box-shadow:0 18px 42px rgba(7,67,67,.08);
}

.btn.secondary:hover,
.btn.secondary:focus{
    color:var(--pink-dark) !important;
    background:#fff;
}

.section-padding{
    padding:96px 0;
}

.section-kicker{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:max-content;
    max-width:100%;
    margin:0 auto 14px;
    padding:8px 13px;
    border-radius:999px;
    background:rgba(227,27,120,.08);
    color:var(--pink);
    font-size:12px;
    font-weight:800;
    line-height:1.2;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.section-head{
    max-width:850px;
    margin:0 auto 52px;
    text-align:center;
}

.section-head h2{
    margin-bottom:16px;
    font-size:36px;
    line-height:1.12;
    font-weight:650;
}

.section-head p{
    max-width:760px;
    margin:0 auto;
    color:var(--muted);
    font-size:16px;
    line-height:1.72;
}

@media (max-width:640px){
    .container{
        width:min(100% - 28px,var(--container));
    }

    .section-padding{
        padding:68px 0;
    }

    .section-head{
        margin-bottom:34px;
    }

    .section-head h2{
        font-size:30px;
    }

    .btn{
        width:100%;
    }
}
