*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:"Segoe UI",sans-serif;

background:
radial-gradient(circle at top right, rgba(59,130,246,.45), transparent 45%),
radial-gradient(circle at bottom left, rgba(34,197,94,.35), transparent 45%),
linear-gradient(180deg,#ffffff,#eef4ff);

color:#222;

overflow-x:hidden;

}

.wrapper{

max-width:1280px;

margin:40px auto;

padding:25px;

}

.hero{

display:flex;

align-items:center;

justify-content:space-between;

gap:80px;

padding:70px 60px;

min-height:80vh;

background:rgba(255,255,255,.82);

backdrop-filter:blur(12px);

-webkit-backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.7);

border-radius:32px;

box-shadow:0 30px 80px rgba(15,23,42,.10);

}

.content{

flex:1;

}

.tag{

display:inline-block;

background:#e9f8ef;

color:#0c8b45;

padding:10px 18px;

border-radius:40px;

font-weight:600;

margin-bottom:25px;

}

h1{

font-size:64px;

font-weight:800;

letter-spacing:-2px;

line-height:1.05;

color:#111827;

margin-bottom:25px;

}

p{

font-size:20px;

line-height:1.8;

color:#666;

margin-bottom:35px;

max-width:600px;

}

.checks{

display:flex;

flex-direction:column;

gap:15px;

margin-bottom:40px;

font-size:18px;

}

.check-card{

display:flex;

align-items:flex-start;

gap:20px;

padding:20px;

background:rgba(255,255,255,.75);

border:1px solid rgba(255,255,255,.7);

border-radius:18px;

backdrop-filter:blur(8px);

box-shadow:0 10px 25px rgba(15,23,42,.05);

transition:.35s ease;

}

.check-card:hover{

transform:translateY(-5px);

box-shadow:0 20px 40px rgba(15,23,42,.12);

}

.check-card span{

font-size:30px;

flex-shrink:0;

}

.check-card strong{

display:block;

font-size:18px;

margin-bottom:5px;

color:#111827;

}

.check-card p{

margin:0;

font-size:15px;

line-height:1.5;

color:#6b7280;

}

button{

padding:20px 42px;

font-size:18px;

font-weight:700;

border:none;

border-radius:16px;

background:linear-gradient(135deg,#22c55e,#16a34a);

color:white;

cursor:pointer;

transition:all .3s ease;

box-shadow:0 15px 35px rgba(22,163,74,.35);

position:relative;

overflow:hidden;

}

button::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:60%;

height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.35),
transparent
);

transform:skewX(-25deg);

transition:.7s;

}

button:hover::before{

left:150%;

}

button:hover{

transform:translateY(-4px) scale(1.02);

box-shadow:0 25px 50px rgba(22,163,74,.45);

}

.image{

flex:1;

display:flex;

justify-content:center;

align-items:center;

position:relative;

padding:40px;

}

.image::before{

content:"";

position:absolute;

width:500px;

height:500px;

border-radius:50%;

background:radial-gradient(circle, rgba(37,99,235,.25), transparent 70%);

filter:blur(40px);

z-index:0;

}

.image img{

position:relative;

z-index:2;

width:100%;

max-width:500px;

transition:.35s;

filter:drop-shadow(0 25px 45px rgba(0,0,0,.18));

animation:float 5s ease-in-out infinite;

}

.image img:hover{

transform:scale(1.03);

}

footer{

margin-top:40px;

padding:30px 20px;

display:flex;

justify-content:center;

align-items:center;

gap:15px;

font-size:14px;

color:#94a3b8;

border-top:1px solid rgba(148,163,184,.25);

}

footer a{

color:#777;

text-decoration:none;

}

footer a:hover{

text-decoration:underline;

}

@media(max-width:900px){

.hero{

flex-direction:column-reverse;

padding:50px 25px;

text-align:center;

gap:40px;

}

h1{

font-size:42px;

}

p{

font-size:18px;

max-width:100%;

}

button{

width:100%;

}

.checks{

align-items:center;

}

}

/* ============================
   ANIMAÇÕES
============================ */

.content{

animation:fadeLeft .8s ease forwards;

}

.image{

animation:fadeRight .8s ease forwards;

}

@keyframes fadeLeft{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes fadeRight{

from{

opacity:0;

transform:translateY(35px) scale(.96);

}

to{

opacity:1;

transform:translateY(0) scale(1);

}

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}