:root{
  --bg:#05070b;
  --panel:#0b0f17;
  --panel2:#0a0d14;
  --text:#e9eef7;
  --muted:#93a0b4;
  --line:rgba(255,255,255,.08);

  --blue:#2f7dff;
  --blue2:#4fb6ff;
  --cyan:#00d6ff;
  --green:#29d37d;
  --purple:#8b5cf6;
  --purple2:#c084fc;

  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}

.bg{
  position:fixed;
  inset:-20vh -20vw;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(900px 500px at 50% 10%, rgba(79,182,255,.22), transparent 60%),
    radial-gradient(700px 500px at 20% 25%, rgba(47,125,255,.14), transparent 60%),
    radial-gradient(700px 500px at 80% 25%, rgba(123,97,255,.10), transparent 60%),
    radial-gradient(900px 700px at 50% 85%, rgba(0,0,0,.6), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.88));
  filter: blur(0px);
}

main{
  width:min(1180px, 92vw);
  margin:0 auto;
  padding: 38px 0 40px;
}

/* HERO */
.hero{
  padding: 42px 30px 46px;
  border-radius: 28px;
  background: radial-gradient(1200px 540px at 50% 0%, rgba(79,182,255,.16), rgba(0,0,0,.02) 55%),
              linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  text-align:center;
  position:relative;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:14px;
  margin-bottom: 18px;
}
.brand__icon{
  width:52px;height:52px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(79,182,255,.26), rgba(47,125,255,.18));
  border: 1px solid rgba(79,182,255,.35);
  box-shadow: 0 10px 30px rgba(47,125,255,.22);
  display:grid;place-items:center;
}
.brand__icon img{
  width:100%;height:100%;
  filter: drop-shadow(0 8px 16px rgba(79,182,255,.45));
}
.brand__name{
  font-weight:800;
  font-size:40px;
  letter-spacing: .2px;
}

.hero__title{
  margin: 12px 0 14px;
  font-size: clamp(44px, 5.3vw, 76px);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 800;
}
.hero__title span{
  color: var(--blue2);
  text-shadow: 0 0 28px rgba(79,182,255,.25);
}

.hero__sub{
  margin: 0 auto 22px;
  max-width: 760px;
  color: rgba(233,238,247,.62);
  font-size: 16px;
  line-height: 1.7;
}

.stats{
  display:flex;
  justify-content:center;
  gap: 22px;
  margin-top: 14px;
  flex-wrap:wrap;
}
.stat{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(8,12,18,.45);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.stat__icon{
  width:44px;height:44px;border-radius: 12px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
}
.stat__icon svg{width:22px;height:22px;color: #bcd3ff}
.stat__icon--blue{box-shadow: 0 0 0 1px rgba(47,125,255,.10) inset}
.stat__icon--cyan svg{color: #8ff0ff}
.stat__icon--green svg{color: #7dffbf}
.stat__meta{ text-align:left }
.stat__value{ font-weight:800; font-size:22px; line-height:1 }
.stat__label{ margin-top:3px; font-size:12px; color: rgba(233,238,247,.45) }

/* SERVICES INTRO */
.services-intro{
  margin: 46px 0 22px;
  padding: 52px 26px 10px;
  border-radius: 28px;
  background: radial-gradient(1200px 480px at 50% 0%, rgba(79,182,255,.12), transparent 55%),
              linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.06);
  text-align:center;
  box-shadow: var(--shadow2);
}
.pill{
  display:inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47,125,255,.16);
  border: 1px solid rgba(47,125,255,.32);
  color: #7fc1ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  margin-bottom: 16px;
}
.section-title{
  margin: 0 0 10px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.06;
  letter-spacing: -1px;
  font-weight: 800;
}
.section-title span{
  color: var(--blue2);
  text-shadow: 0 0 24px rgba(79,182,255,.22);
}
.section-sub{
  margin: 0 auto;
  max-width: 820px;
  color: rgba(233,238,247,.62);
  line-height: 1.75;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.card{
  border-radius: 22px;
  background: rgba(9,12,18,.62);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow2);
  overflow:hidden;
  position:relative;
}
.card__media{
  position:relative;
  height: 188px;
  overflow:hidden;
}
.card__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}
.tag{
  position:absolute;
  left: 14px;
  top: 12px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(233,238,247,.88);
}
.tag--blue{
  background: rgba(47,125,255,.18);
  border-color: rgba(47,125,255,.35);
  color: #bcd6ff;
}
.tag--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}

.card__body{
  padding: 22px 22px 20px;
}
.card__title{
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.2px;
}
.card__desc{
  margin: 0 0 16px;
  color: rgba(233,238,247,.62);
  line-height: 1.75;
  font-size: 14px;
}
.bullets{
  list-style:none;
  padding:0;
  margin: 0 0 18px;
  display:grid;
  gap: 10px;
  color: rgba(233,238,247,.72);
  font-size: 14px;
}
.bullets li{ display:flex; align-items:flex-start; gap:10px; }
.check{
  width:18px;height:18px;border-radius:999px;
  display:inline-grid;place-items:center;
  margin-top: 2px;
  background: rgba(47,125,255,.14);
  border: 1px solid rgba(47,125,255,.35);
  position:relative;
}

.bullets a{
  color: rgba(233, 238, 247, .72);
}

.check:after{
  content:"";
  width:5px;height:3px;
  border-left:2px solid #9fd2ff;
  border-bottom:2px solid #9fd2ff;
  transform: rotate(-45deg);
  position:absolute;
}


.check--purple{
  background: rgba(139,92,246,.14);
  border-color: rgba(139,92,246,.35);
}
.check--purple:after{
  border-left-color:#e7d2ff;
  border-bottom-color:#e7d2ff;
}



.card__footer{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.price__label{
  font-size: 11px;
  color: rgba(233,238,247,.42);
  letter-spacing: .5px;
}
.price__value{
  margin-top: 6px;
  font-weight: 800;
  font-size: 16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration:none;
  color: white;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 25px rgba(0,0,0,.30);
  transition: transform .15s ease, filter .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.btn__icon svg{ width:16px; height:16px; }

.btn--blue{
  background: linear-gradient(180deg, rgba(47,125,255,1), rgba(47,125,255,.82));
  border-color: rgba(47,125,255,.55);
}
.btn--purple{
  background: linear-gradient(180deg, rgba(168,85,247,1), rgba(124,58,237,.88));
  border-color: rgba(168,85,247,.55);
}

/* RISK */
.risk{
  margin-top: 28px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.risk__inner{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(255,149,0,.14), rgba(0,0,0,.35));
}
.risk__icon{ font-size: 18px; line-height: 1; margin-top: 1px; }
.risk__text{
  color: rgba(255,235,210,.92);
  font-size: 12px;
  line-height: 1.55;
}

/* FOOTER */
.footer{
  margin-top: 18px;
  padding: 34px 0 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 12px 0 26px;
}
.footer__brand{
  display:flex; align-items:center; gap:12px;
  margin-bottom: 10px;
}
.footer__icon{
  width:44px;height:44px;border-radius: 12px;
  background: rgba(47,125,255,.18);
  border: 1px solid rgba(47,125,255,.35);
  display:grid;place-items:center;
}
.footer__icon img{ width:24px;height:24px; }
.footer__name{ font-weight:800; font-size: 22px; }
.footer__desc{
  margin: 0;
  color: rgba(233,238,247,.55);
  line-height: 1.8;
  font-size: 13px;
  max-width: 380px;
}

.footer__title{
  font-weight: 800;
  margin-bottom: 10px;
}
.footer__links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}
.footer__links a{
  color: rgba(147,160,180,.92);
  text-decoration:none;
  font-size: 13px;
}
.footer__links a:hover{ color: rgba(233,238,247,.88); }
.footer__links--plain a{ color: rgba(233,238,247,.76); }

.footer__item{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(233,238,247,.76);
  font-size: 13px;
}
.mini-ico{
  width:22px;height:22px;border-radius: 8px;
  display:grid;place-items:center;
  background: rgba(47,125,255,.14);
  border: 1px solid rgba(47,125,255,.30);
  color:#9fd2ff;
}
.mini-ico svg{ width:14px;height:14px; }
.mini-ico--green{
  background: rgba(41,211,125,.12);
  border-color: rgba(41,211,125,.30);
  color:#7dffbf;
}

.footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(147,160,180,.85);
  font-size: 12px;
}
.footer__legal{
  display:flex;
  gap: 18px;
}
.footer__legal a{
  color: rgba(147,160,180,.85);
  text-decoration:none;
}
.footer__legal a:hover{ color: rgba(233,238,247,.88); }

/* Responsive */
@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }
  .card__media{ height: 220px; }
  .footer__inner{ grid-template-columns: 1fr; }
  .footer__desc{ max-width: none; }
  .footer__bottom{ flex-direction: column; align-items:flex-start; }
}


.contact-after-risk{
  padding: 56px 0 80px;
  background: radial-gradient(1200px 500px at 50% 0%, rgba(80,170,255,.08), transparent 60%);
}

.contact-after-risk .container{
  /*max-width: 1100px;*/
  margin: 0 auto;
  /*padding: 0 24px;*/
}

.contact-card{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(10,14,24,.55);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.contact-head{
  margin-bottom: 18px;
}

.contact-head .pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(80,170,255,.25);
  background: rgba(40,120,255,.12);
  color: rgba(170,210,255,.95);
  font-weight: 600;
  font-size: 13px;
}

.contact-head h2{
  margin: 12px 0 6px;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.contact-head p{
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.5;
}

.contact-form label{
  display: block;
  margin-top: 14px;
}

.contact-form label span{
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(80,170,255,.55);
  box-shadow: 0 0 0 4px rgba(80,170,255,.12);
}

.contact-form textarea{
  resize: vertical;
  min-height: 120px;
}

.contact-form .grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 720px){
  .contact-form .grid{
    grid-template-columns: 1fr;
  }
  .contact-head h2{ font-size: 28px; }
}

.contact-form .actions{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn-primary{
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(80,170,255,.35);
  background: linear-gradient(180deg, rgba(40,140,255,.95), rgba(30,110,235,.95));
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}

.btn-primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.hint{
  font-size: 13px;
  color: rgba(255,255,255,.55);
}


.testimonials {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 36px;
  margin: 12px 0;
}

.section-head p {
  color: rgba(255,255,255,.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(10,14,24,.6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px;
  font-style: italic;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.testimonial-card strong {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: rgba(180,220,255,.9);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}


/* como funciona */
.how { padding: 80px 0; }
.how-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.how-card{
  background: rgba(10,14,24,.6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 50px rgba(0,0,0,.45);
}
.how-top h3{
  margin: 12px 0 8px;
  font-size: 22px;
}
.how-top p{ margin:0; color: rgba(255,255,255,.7); line-height: 1.6; }

.how-tag{
  display:inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
}
.tag-blue{
  border: 1px solid rgba(80,170,255,.35);
  background: rgba(40,120,255,.12);
  color: rgba(170,210,255,.95);
}
.tag-purple{
  border: 1px solid rgba(190,120,255,.35);
  background: rgba(160,70,255,.12);
  color: rgba(230,200,255,.95);
}

.steps{
  list-style:none;
  padding:0;
  margin: 18px 0 22px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.steps li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
}
.step-num{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color: white;
  background: rgba(40,140,255,.95);
  flex: 0 0 30px;
}
.step-num.purple{
  background: rgba(160,70,255,.95);
}
.steps strong{ display:block; margin-top: -1px; }
.muted{ color: rgba(255,255,255,.62); font-size: 13px; margin-top: 4px; line-height: 1.45; }

.w-full{ width:100%; display:inline-flex; justify-content:center; }
.purple-btn{
  border: 1px solid rgba(190,120,255,.35);
  background: linear-gradient(180deg, rgba(170,80,255,.95), rgba(120,50,235,.95));
}

@media (max-width: 900px){
  .how-grid{ grid-template-columns: 1fr; }
}




.hidden { display: none; }