*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Arial, Helvetica, sans-serif;

background:linear-gradient(180deg,#f8fbff,#eef4ff);

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:40px;

}

.container{

width:100%;
max-width:1100px;

}

.card{

background:white;

border-radius:24px;

padding:60px;

box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.hero{

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;

}

.texto{

flex:1;

}

.badge{

display:inline-block;

background:#EEF5FF;

color:#2563eb;

padding:10px 18px;

border-radius:50px;

font-size:14px;

margin-bottom:20px;

font-weight:bold;

}

h1{

font-size:52px;

line-height:1.1;

margin-bottom:25px;

color:#111827;

}

p{

font-size:19px;

line-height:1.8;

color:#6b7280;

margin-bottom:35px;

max-width:520px;

}

button{

padding:18px 36px;

background:#16a34a;

color:white;

border:none;

border-radius:12px;

font-size:18px;

font-weight:bold;

cursor:pointer;

transition:.3s;

}

button:hover{

background:#15803d;

transform:translateY(-2px);

}

.imagem{

flex:1;

display:flex;

justify-content:center;

}

.imagem img{

max-width:420px;

width:100%;

}

@media(max-width:900px){

.hero{

flex-direction:column-reverse;

text-align:center;

}

p{

max-width:100%;

}

h1{

font-size:38px;

}

button{

width:100%;

}

.imagem img{

max-width:300px;

}

}