/* ===========================================================
   MANZACAR - Landing Page V4
   =========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Manrope',sans-serif;

    color:#222;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f7f9fc 100%
    );

}

/* ===========================================================
   CONTAINER
   =========================================================== */

.wrap{

    width:min(960px,92vw);

    margin:0 auto;

    padding-top:30px;          /* aproximadamente 0,8 cm */

    padding-right:24px;

    padding-left:24px;

    padding-bottom:60px;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}

/* ===========================================================
   LOGOTIPO
   =========================================================== */

.logo{

    width:min(365px,58vw);     /* cerca de 15% menor */

    height:auto;

    display:block;

    margin:0 auto 18px;

}

/* ===========================================================
   TÍTULO
   =========================================================== */

h1{

    font-size:clamp(2rem,5vw,3.8rem);

    font-weight:700;

    line-height:1.08;

    letter-spacing:-1px;

    margin-bottom:10px;

}

h1 span{

    color:#0D5BD7;

}

/* ===========================================================
   LINHA
   =========================================================== */

.line{

    width:82px;

    height:4px;

    border-radius:999px;

    background:#0D5BD7;

    margin:18px 0 28px;

}

/* ===========================================================
   SUBTÍTULO
   =========================================================== */

.lead{

    font-size:1.28rem;

    font-weight:500;

    color:#303030;

    margin-bottom:18px;

}

/* ===========================================================
   TEXTO
   =========================================================== */

p{

    max-width:720px;

    font-size:1.04rem;

    line-height:1.85;

    color:#5b5b5b;

    margin-bottom:14px;

}

/* ===========================================================
   BOTÃO
   =========================================================== */

.btn{

    display:inline-block;

    margin-top:22px;

    margin-bottom:42px;

    padding:16px 34px;

    border-radius:999px;

    background:#0D5BD7;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.btn:hover{

    background:#0847aa;

    transform:translateY(-2px);

    box-shadow:0 12px 28px rgba(13,91,215,.18);

}

/* ===========================================================
   CARDS
   =========================================================== */

.values{

    width:100%;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:18px;

    margin-top:8px;

}

.values div{

    background:#fff;

    border:1px solid #dfe8fb;

    border-radius:14px;

    padding:22px;

    transition:.25s;

    box-shadow:0 6px 18px rgba(0,0,0,.05);

}

.values div:hover{

    transform:translateY(-4px);

    box-shadow:0 14px 30px rgba(0,0,0,.08);

}

.values strong{

    display:block;

    color:#0D5BD7;

    margin-bottom:10px;

    font-size:1.05rem;

}

.values small{

    color:#666;

    line-height:1.6;

}

/* ===========================================================
   RODAPÉ
   =========================================================== */

footer{

    margin-top:48px;

    text-align:center;

    color:#777;

    font-size:.95rem;

    line-height:2;

}

footer p{

    margin:4px 0;

}

.email{

    color:#0D5BD7;

    text-decoration:none;

    font-weight:600;

}

.email:hover{

    text-decoration:underline;

}

/* ===========================================================
   MOBILE
   =========================================================== */

@media (max-width:768px){

    .wrap{

        padding-top:22px;

    }

    .logo{

        width:min(300px,72vw);

    }

    h1{

        font-size:2.5rem;

    }

}