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

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
color:#1f2937;
background:#ffffff;
line-height:1.6;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

.container{
width:100%;
max-width:1200px;
margin:0 auto;
padding:0 24px;
}

/* ==========================
HEADER
========================== */

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
backdrop-filter:blur(14px);
background:rgba(255,255,255,.92);
border-bottom:1px solid #ececec;
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
height:80px;
}

.logo{
display:flex;
align-items:center;
gap:12px;
color:#111827;
font-weight:700;
}

.logo img{
width:42px;
height:42px;
object-fit:contain;
}

.logo strong{
color:#5b5ce2;
}

.menu{
display:flex;
gap:30px;
}

.menu a{
color:#6b7280;
font-size:14px;
font-weight:500;
transition:.3s;
}

.menu a:hover

.btn-whatsapp{
background:#5b5ce2;
color:#fff;
padding:12px 22px;
border-radius:999px;
display:flex;
align-items:center;
gap:10px;
font-size:14px;
font-weight:600;
transition:.3s;
}

.btn-whatsapp:hover{
transform:translateY(-2px);
}

/* ==========================
HERO
========================== */

.hero{
padding-top:140px;
padding-bottom:100px;
background:
radial-gradient(circle at 20% 30%, rgba(91,92,226,.15), transparent 40%),
radial-gradient(circle at 80% 70%, rgba(91,92,226,.10), transparent 40%);
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.badge{
display:inline-block;
padding:8px 16px;
border:1px solid #e5e7eb;
border-radius:999px;
font-size:12px;
font-weight:600;
color:#6b7280;
}

.hero h1{
margin-top:25px;
font-size:60px;
line-height:1.05;
font-weight:800;
}

.hero h1 span{
color:#5b5ce2;
}

.hero p{
margin-top:25px;
font-size:18px;
color:#6b7280;
max-width:620px;
}

.hero-buttons{
margin-top:35px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:#5b5ce2;
color:#fff;
padding:14px 28px;
border-radius:999px;
font-weight:600;
}

.btn-secondary{
border:1px solid #e5e7eb;
color:#111827;
padding:14px 28px;
border-radius:999px;
font-weight:600;
}

/* ==========================
DASHBOARD
========================== */

.dashboard{
background:#fff;
border-radius:28px;
overflow:hidden;
border:1px solid #ececec;
box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.dashboard-top{
display:flex;
gap:8px;
padding:18px;
border-bottom:1px solid #ececec;
}

.dashboard-top span{
width:10px;
height:10px;
border-radius:50%;
background:#d1d5db;
}

.dashboard-content{
padding:30px;
}

.dashboard-title{
display:flex;
justify-content:space-between;
align-items:center;
}

.dashboard-title small{
color:#6b7280;
}

.dashboard-title h3{
font-size:36px;
}

.dashboard-title i{
font-size:24px;
color:#5b5ce2;
}

.bars{
height:140px;
display:flex;
align-items:flex-end;
gap:10px;
margin-top:30px;
}

.bars div{
flex:1;
border-radius:10px;
background:linear-gradient(to top,#5b5ce2,#818cf8);
}

.mini-cards{
margin-top:30px;
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.mini-cards div{
border:1px solid #ececec;
border-radius:14px;
padding:14px;
font-size:14px;
font-weight:600;
}

.mini-cards i{
color:#5b5ce2;
margin-right:8px;
}

/* ==========================
SERVICES
========================== */

.services{
padding:100px 0;
}

.section-header{
text-align:center;
max-width:800px;
margin:0 auto;
}

.section-header span{
color:#5b5ce2;
text-transform:uppercase;
font-size:12px;
font-weight:700;
}

.section-header h2{
margin-top:15px;
font-size:42px;
}

.section-header p{
margin-top:15px;
color:#6b7280;
}

.services-grid{
margin-top:50px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.service-card{
border:1px solid #ececec;
border-radius:24px;
padding:35px;
transition:.3s;
}

.service-card:hover{
transform:translateY(-5px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.service-card i{
font-size:28px;
color:#5b5ce2;
margin-bottom:20px;
}

.service-card h3{
margin-bottom:12px;
}

/* ==========================
CTA
========================== */

.cta-section{
padding:80px 0;
}

.cta-box{
position:relative;
overflow:hidden;
border-radius:30px;
padding:90px 40px;
text-align:center;
background:linear-gradient(135deg,#111827,#252b3d);
color:#fff;
}

.cta-content{
position:relative;
z-index:2;
}

.cta-label{
color:#a5b4fc;
text-transform:uppercase;
font-size:12px;
font-weight:700;
}

.cta-box h2{
margin-top:20px;
font-size:48px;
}

.cta-box h2 span{
color:#818cf8;
}

.cta-box p{
max-width:700px;
margin:20px auto;
color:rgba(255,255,255,.75);
}

.cta-button{
display:inline-flex;
align-items:center;
gap:10px;
margin-top:20px;
background:#fff;
color:#111827;
padding:16px 30px;
border-radius:999px;
font-weight:700;
}

/* ==========================
FOOTER
========================== */

.footer{
margin-top:80px;
border-top:1px solid #ececec;
}

.footer-grid{
padding:70px 0;
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
}

.footer-logo{
display:flex;
align-items:center;
gap:12px;
font-weight:700;
}

.footer-logo img{
width:42px;
}

.footer-logo strong{
color:#5b5ce2;
}

.footer-tagline{
margin-top:15px;
color:#6b7280;
}

.footer-description{
margin-top:20px;
color:#6b7280;
}

.footer h4{
margin-bottom:20px;
}

.footer-links{
list-style:none;
}

.footer-links li{
margin-bottom:12px;
color:#6b7280;
}

.footer-links a{
color:#6b7280;
}

.footer-social{
margin-top:20px;
}

.footer-social a{
width:40px;
height:40px;
border:1px solid #ececec;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#5b5ce2;
}

.footer-bottom{
border-top:1px solid #ececec;
}

.footer-bottom .container{
padding:20px 24px;
display:flex;
justify-content:space-between;
gap:20px;
color:#6b7280;
font-size:13px;
}

/* ==========================
RESPONSIVO
========================== */

@media(max-width:991px){

.hero-grid{
    grid-template-columns:1fr;
}

.services-grid{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
}

.menu{
    display:none;
}

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

.section-header h2{
    font-size:32px;
}

.cta-box h2{
    font-size:34px;
}

.footer-bottom .container{
    flex-direction:column;
    text-align:center;
}


}
