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

body{

    font-family:'Poppins',sans-serif;
    background:#f7f3eb;
    color:#222;
}

.container{

    max-width:900px;
    margin:auto;
    padding:40px 20px 60px;

}

.logo{

    text-align:center;
    margin-bottom:30px;

}

.logo img{

    width:260px;
    max-width:100%;

}

h1{

    font-size:46px;
    font-weight:700;
    text-align:center;
    line-height:1.2;
    margin-bottom:25px;

}

.highlight{

    text-align:center;
    color:#b9932f;
    font-size:28px;
    font-weight:700;
    margin-bottom:30px;

}

.text{

    text-align:center;
    color:#444;
    font-size:20px;
    line-height:1.8;
    max-width:760px;
    margin:auto;
}

.button-launch{

    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#d8ad39;

    color:#111;
    text-decoration:none;
    padding:18px 38px;
    border-radius:60px;
    font-weight:700;
    margin-top:45px;
    font-size:22px;

    transition:.25s;

}

.button-launch:hover{

transform:translateY(-2px);
background:#c99d28;

}

.center{

    text-align:center;

}

.card{

background:white;
margin-top:60px;
border-radius:18px;
padding:45px;
box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.card h2{

font-size:40px;
text-align:center;
margin-bottom:18px;

}

.card p{

text-align:center;
font-size:22px;
color:#555;
margin-bottom:30px;

}

hr{

border:none;
height:1px;
background:#ddd;
margin:25px 0;

}

.info{

display:flex;
align-items:center;
justify-content:center;
gap:15px;
font-size:20px;
color:#555;
margin-bottom:35px;

}

.whatsapp{

display:block;
width:100%;
text-align:center;

background:#d8ad39;

color:#111;
padding:22px;
border-radius:12px;

font-size:26px;
font-weight:700;

text-decoration:none;

transition:.25s;

}

.whatsapp:hover{

background:#c79b22;

}

.features{

display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
margin-top:70px;

}

.feature{

text-align:center;

}

.icon{

font-size:42px;
margin-bottom:12px;

}

.feature p{

font-size:18px;
line-height:1.5;

}

.footer{

margin-top:70px;

background:#efe8dc;
border-radius:16px;

padding:35px;
text-align:center;

}

.footer h3{

font-size:34px;
margin-bottom:10px;

}

.footer p{

font-size:19px;
color:#555;

}

.brand{

font-size:28px;
font-weight:700;
margin-top:20px;

}

@media(max-width:900px){

.features{

grid-template-columns:repeat(2,1fr);

}

h1{

font-size:34px;

}

.card h2{

font-size:30px;

}

.highlight{

font-size:22px;

}

.button-launch{

font-size:18px;

}

.whatsapp{

font-size:22px;

}

}

@media(max-width:550px){

.features{

grid-template-columns:1fr;

}

}
