
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#ffffff;
color:#222;
line-height:1.6;
}

/* HERO */

.hero{
background:linear-gradient(135deg,#3f18e8,#5a2cff);
color:white;
padding:100px 20px;
text-align:center;
}

.hero h1{
font-size:42px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
margin-bottom:20px;
}

.hero-btn{
background:white;
color:#4b22ff;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.hero-btn:hover{
background:#5526ff;
color:white;
}

/* SERVICES */

.services{
padding:70px 20px;
text-align:center;
background:#f1efff;
}

.services h2{
font-size:30px;
margin-bottom:40px;
color:#4b22ff;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.service-card{
background:white;
border-radius:12px;
padding:30px;
text-decoration:none;
color:#222;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
border-top:5px solid #5526ff;
opacity:0;
transform:translateY(30px);
}

.service-card.visible{
opacity:1;
transform:translateY(0);
transition:all 0.6s ease;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.service-card .icon{
font-size:36px;
margin-bottom:12px;
}

.service-card h3{
color:#4b22ff;
margin-bottom:6px;
}

/* ABOUT */

.about{
padding:60px 20px;
text-align:center;
max-width:900px;
margin:auto;
}

.about h2{
color:#4b22ff;
margin-bottom:15px;
}

/* HELP */

.help{
background:#4b22ff;
color:white;
text-align:center;
padding:60px 20px;
}

.help-btn{
display:inline-block;
margin-top:15px;
background:#5526ff;
padding:14px 28px;
border-radius:30px;
color:white;
text-decoration:none;
font-weight:600;
}

/* FOOTER */

footer{
background:#5526ff;
color:white;
text-align:center;
padding:18px;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
font-size:26px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* COMPLEMENTOS INSTITUCIONAIS */
.eyebrow{font-size:14px;text-transform:uppercase;letter-spacing:1.5px;font-weight:600;opacity:.95;margin-bottom:8px}
.disclaimer-top{max-width:820px;margin:22px auto 28px;padding:14px 18px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.45);border-radius:10px;font-size:14px}
.hero.internal{padding:65px 20px}
.about.alt{max-width:none;background:#f1efff;padding-left:max(20px,calc((100% - 900px)/2));padding-right:max(20px,calc((100% - 900px)/2))}
.about p+p{margin-top:14px}
.notice{margin:22px auto 0;padding:15px 18px;background:#f3f0ff;border-left:5px solid #5526ff;border-radius:8px;max-width:850px;text-align:left}
.site-footer{background:#24105f;color:#fff;padding:45px 20px 0;text-align:left}
.footer-grid{max-width:1100px;margin:auto;display:grid;grid-template-columns:2fr 1fr 1fr;gap:35px}
.footer-grid h3{margin-bottom:12px}.footer-grid p{font-size:14px;opacity:.9}.footer-grid a{display:block;color:#fff;text-decoration:none;margin:8px 0;font-size:14px}.footer-grid a:hover{text-decoration:underline}
.footer-bottom{margin-top:35px;border-top:1px solid rgba(255,255,255,.2);padding:18px 0;text-align:center;font-size:13px}.footer-bottom a{color:#fff}
.legal-page{max-width:900px;margin:auto;padding:55px 20px}.legal-page h2{color:#4b22ff;margin:30px 0 10px}.legal-page p{margin-bottom:14px}
.cookie-banner{position:fixed;left:20px;right:20px;bottom:20px;max-width:900px;margin:auto;background:#fff;color:#222;border-radius:12px;padding:16px 18px;box-shadow:0 12px 35px rgba(0,0,0,.22);display:flex;align-items:center;justify-content:space-between;gap:20px;z-index:20}.cookie-banner button{border:0;border-radius:25px;background:#4b22ff;color:#fff;padding:10px 22px;font-weight:600;cursor:pointer}.cookie-banner.hidden{display:none}
@media(max-width:700px){.hero{padding:70px 18px}.hero h1{font-size:32px}.footer-grid{grid-template-columns:1fr}.cookie-banner{align-items:flex-start;flex-direction:column}.cookie-banner button{width:100%}}
