:root{
  --navy:#0b1533;
  --navy2:#17295e;
  --blue:#3157ff;
  --blue-dark:#2444d5;
  --blue-soft:#edf1ff;
  --bg:#f5f7fb;
  --white:#fff;
  --text:#18213d;
  --muted:#697188;
  --line:#e2e7f0;
  --green:#13a06a;
  --red:#d84d60;
  --shadow:0 24px 70px rgba(17,32,78,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:var(--bg);
}
button,input{font:inherit}
a{text-decoration:none}
.hidden{display:none!important}
.topbar{
  height:76px;
  padding:0 max(4vw,24px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,255,255,.95);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(12px);
}
.brand{
  display:flex;
  align-items:center;
  gap:11px;
  color:var(--navy);
}
.brand-mark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:#fff;
  font-size:14px;
  font-weight:900;
  background:linear-gradient(135deg,var(--blue),#7287ff);
}
.brand b,.brand small{display:block}
.brand small{
  margin-top:2px;
  color:var(--muted);
  font-size:11px;
  font-weight:500;
}
.top-actions{
  display:flex;
  align-items:center;
  gap:22px;
}
.secure,.nav-link{
  color:var(--muted);
  font-size:14px;
}
.nav-link:hover{color:var(--blue)}
main{
  max-width:1180px;
  margin:auto;
  padding:0 24px;
}
.hero{
  min-height:700px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
  padding:65px 0;
}
.eyebrow{
  display:inline-block;
  margin-bottom:16px;
  color:var(--blue);
  font-size:12px;
  font-weight:900;
  letter-spacing:.15em;
}
.light{color:#cbd5ff}
.hero h1{
  margin:0;
  max-width:700px;
  color:var(--navy);
  font-size:clamp(44px,5.2vw,68px);
  line-height:1.02;
  letter-spacing:-.05em;
}
.hero-subtitle{
  max-width:720px;
  margin:22px 0;
  color:var(--muted);
  font-size:19px;
  line-height:1.65;
}
.hero-benefits{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:25px 0;
}
.hero-benefits div{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-size:13px;
  font-weight:700;
}
.hero-benefits span{color:var(--green)}
.hero-proof{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:28px;
}
.proof-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:var(--blue-soft);
}
.hero-proof strong,.hero-proof span{display:block}
.hero-proof strong{font-size:14px}
.hero-proof span{
  margin-top:3px;
  color:var(--muted);
  font-size:12px;
}
.upload-card{
  position:relative;
  padding:32px;
  border:1px solid var(--line);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--shadow);
}
.upload-badge{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  color:#294bc8;
  background:var(--blue-soft);
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
}
.upload-card h2{
  margin:18px 0 6px;
  color:var(--navy);
  font-size:31px;
}
.upload-subtitle{
  margin:0 0 22px;
  color:var(--muted);
}
.upload-card input[type=file]{display:none}
.upload-button{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.upload-button span{
  font-size:20px;
  line-height:1;
}
.primary,.checkout{
  border:0;
  border-radius:13px;
  padding:15px 19px;
  cursor:pointer;
  font-weight:900;
  transition:.2s;
}
.primary{
  color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  box-shadow:0 12px 28px rgba(49,87,255,.23);
}
.primary:hover,.checkout:hover{
  transform:translateY(-1px);
}
.field{margin-top:19px}
.field label{
  display:flex;
  justify-content:space-between;
  margin-bottom:8px;
  color:var(--navy);
  font-size:13px;
  font-weight:800;
}
.field label small{
  color:var(--muted);
  font-weight:500;
}
.field input{
  width:100%;
  padding:14px;
  border:1px solid var(--line);
  border-radius:12px;
  outline:none;
  background:#fbfcff;
}
.field input:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(49,87,255,.08);
}
.full{width:100%}
.analyze-button{margin-top:18px}
.selected-file{
  margin-top:13px;
  padding:12px;
  border:1px solid #c7efdc;
  border-radius:11px;
  color:#08764b;
  background:#effcf6;
  font-size:13px;
  font-weight:700;
}
.security-note{
  display:flex;
  gap:9px;
  align-items:flex-start;
  margin-top:15px;
}
.security-note p{
  margin:0;
  color:var(--muted);
  font-size:11px;
  line-height:1.45;
}
.error{
  color:var(--red);
  font-size:13px;
}
.trust-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  overflow:hidden;
  margin:10px 0 90px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--line);
}
.trust-strip div{
  padding:22px;
  text-align:center;
  background:#fff;
}
.trust-strip strong,.trust-strip span{display:block}
.trust-strip strong{
  color:var(--navy);
  font-size:14px;
}
.trust-strip span{
  margin-top:5px;
  color:var(--muted);
  font-size:12px;
}
.section{
  padding:80px 0;
}
.section-heading{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}
.section-heading h2,.analysis-copy h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(34px,4vw,50px);
  line-height:1.08;
  letter-spacing:-.035em;
}
.section-heading p,.analysis-copy>p{
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.step-card{
  padding:27px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}
.step-number{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:#fff;
  background:var(--blue);
  font-weight:900;
}
.step-card h3{
  margin:18px 0 8px;
  color:var(--navy);
  font-size:20px;
}
.step-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}
.analysis-section{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
}
.analysis-list{
  margin-top:30px;
}
.analysis-list>div{
  display:flex;
  gap:15px;
  padding:17px 0;
  border-bottom:1px solid var(--line);
}
.analysis-list>div>span{
  color:var(--blue);
  font-size:12px;
  font-weight:900;
}
.analysis-list strong{color:var(--navy)}
.analysis-list p{
  margin:5px 0 0;
  color:var(--muted);
  line-height:1.5;
}
.score-preview{
  padding:28px;
  border-radius:25px;
  color:#fff;
  background:linear-gradient(145deg,var(--navy),var(--navy2));
  box-shadow:var(--shadow);
}
.preview-top{
  display:flex;
  justify-content:space-between;
  font-size:12px;
}
.preview-top span{color:#bac6e6}
.score-circle{
  width:150px;
  height:150px;
  display:grid;
  place-content:center;
  margin:28px auto;
  text-align:center;
  border:10px solid #6982ff;
  border-radius:50%;
  background:#1d3067;
}
.score-circle strong{
  font-size:48px;
  line-height:1;
}
.score-circle span{
  color:#c7d0ea;
  font-size:12px;
}
.score-bars>div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:7px;
  margin:14px 0;
}
.score-bars span,.score-bars b{
  font-size:12px;
}
.score-bars i{
  grid-column:1/-1;
  height:7px;
  overflow:hidden;
  border-radius:999px;
  background:#304372;
}
.score-bars em{
  display:block;
  height:100%;
  border-radius:999px;
  background:#6f86ff;
}
.result-card{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:45px;
  padding:45px;
  border-radius:28px;
  color:#fff;
  background:linear-gradient(135deg,#3157ff,#243bb0);
}
.result-card-copy h2{
  margin:0;
  font-size:42px;
  line-height:1.08;
}
.result-card-copy ul{
  padding-left:20px;
  line-height:1.8;
  color:#e2e7ff;
}
.cta-link,.final-button{
  display:inline-block;
  margin-top:15px;
  padding:14px 18px;
  border-radius:12px;
  color:#2946c5;
  background:#fff;
  font-weight:900;
}
.resume-mockup{
  display:grid;
  place-items:center;
}
.resume-paper{
  width:280px;
  min-height:380px;
  padding:28px;
  border-radius:8px;
  background:#fff;
  box-shadow:0 22px 55px rgba(0,0,0,.25);
  transform:rotate(2deg);
}
.resume-name{
  width:70%;
  height:14px;
  border-radius:4px;
  background:#1b2541;
}
.resume-contact{
  width:55%;
  height:7px;
  margin-top:8px;
  border-radius:4px;
  background:#aeb5c5;
}
.resume-title{
  width:42%;
  height:9px;
  margin-top:28px;
  border-radius:4px;
  background:#3157ff;
}
.resume-title.second{width:55%}
.resume-title.third{width:38%}
.resume-line{
  width:83%;
  height:6px;
  margin-top:10px;
  border-radius:4px;
  background:#d9dde7;
}
.resume-line.long{width:100%}
.resume-line.short{width:60%}
.faq-list{
  max-width:850px;
  margin:auto;
}
.faq-list details{
  margin:12px 0;
  padding:20px 22px;
  border:1px solid var(--line);
  border-radius:15px;
  background:#fff;
}
.faq-list summary{
  cursor:pointer;
  color:var(--navy);
  font-weight:900;
}
.faq-list p{
  color:var(--muted);
  line-height:1.6;
}
.final-cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  margin:70px 0 90px;
  padding:38px;
  border-radius:24px;
  color:#fff;
  background:var(--navy);
}
.final-cta h2{
  margin:0;
  font-size:36px;
}
.final-cta p{
  max-width:700px;
  color:#cbd4ec;
}
.processing{
  min-height:650px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.spinner{
  width:72px;
  height:72px;
  border:7px solid #dce4ff;
  border-top-color:var(--blue);
  border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
.processing h2{
  margin:22px 0 6px;
  font-size:34px;
}
.processing p{color:var(--muted)}
.progress{
  width:min(520px,80vw);
  height:9px;
  overflow:hidden;
  margin-top:20px;
  border-radius:999px;
  background:#e1e6f0;
}
.progress span{
  display:block;
  width:8%;
  height:100%;
  background:var(--blue);
  transition:.4s;
}
.results{
  padding:60px 0 100px;
}
.result-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:30px;
  border-radius:22px;
  color:#fff;
  background:linear-gradient(135deg,var(--navy),#1b2e67);
}
.result-header h2{
  margin:0 0 8px;
  font-size:36px;
}
.result-header p{
  max-width:720px;
  color:#cbd4ec;
}
.score{
  width:140px;
  height:140px;
  display:grid;
  place-content:center;
  text-align:center;
  border:9px solid #6480ff;
  border-radius:50%;
  background:#213469;
}
.score strong{font-size:46px}
.score span{
  color:#cbd4ec;
  font-size:12px;
}
.categories{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  margin:18px 0;
}
.category{
  padding:17px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}
.category span{
  color:var(--muted);
  font-size:12px;
}
.category strong{
  display:block;
  margin-top:8px;
  font-size:27px;
}
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.panel{
  margin-top:18px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.item{
  padding:12px 0;
  border-bottom:1px solid var(--line);
}
.item:last-child{border:0}
.item strong{
  display:block;
  margin-bottom:5px;
}
.item p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chip{
  padding:8px 11px;
  border-radius:999px;
  color:#2949c7;
  background:#edf1ff;
  font-size:13px;
  font-weight:700;
}
.offer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
  margin-top:22px;
  padding:28px;
  border-radius:20px;
  color:#fff;
  background:linear-gradient(135deg,var(--blue),#263eb5);
}
.offer h2{
  margin:0 0 8px;
  font-size:32px;
}
.offer p{color:#d9e1ff}
.checkout{
  color:#2343c6;
  background:#fff;
}
.price{
  min-width:180px;
  padding:18px 24px;
  border-radius:15px;
  text-align:center;
  background:rgba(255,255,255,.12);
}
.price strong{
  display:block;
  margin-top:5px;
  font-size:32px;
}
footer{
  display:flex;
  justify-content:space-between;
  gap:30px;
  padding:35px max(4vw,24px);
  color:var(--muted);
  border-top:1px solid var(--line);
  background:#fff;
  font-size:12px;
}
footer p{margin:5px 0}
.toast{
  position:fixed;
  left:50%;
  bottom:24px;
  z-index:99;
  max-width:90vw;
  padding:14px 18px;
  border-radius:10px;
  color:#fff;
  background:var(--navy);
  transform:translateX(-50%);
}
@media(max-width:900px){
  .hero,.analysis-section,.result-card{
    grid-template-columns:1fr;
  }
  .hero{
    gap:35px;
    padding:50px 0;
  }
  .steps-grid{
    grid-template-columns:1fr;
  }
  .trust-strip{
    grid-template-columns:1fr;
  }
  .categories{
    grid-template-columns:1fr 1fr;
  }
  .grid{
    grid-template-columns:1fr;
  }
  .final-cta,.offer,.result-header{
    flex-direction:column;
    align-items:stretch;
  }
  .score{margin:auto}
}
@media(max-width:600px){
  .top-actions .nav-link{display:none}
  .hero h1{font-size:40px}
  .upload-card{padding:23px}
  .categories{grid-template-columns:1fr}
  .result-card{padding:28px}
  .result-card-copy h2{font-size:32px}
  .resume-paper{width:230px}
  footer{
    flex-direction:column;
  }
}


/* Tela de análise centralizada */
body.analysis-mode{overflow:hidden}
.analysis-hidden{display:none!important}

#processing{
  position:fixed;
  inset:76px 0 0;
  z-index:25;
  min-height:auto;
  padding:30px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 50% 20%,rgba(49,87,255,.10),transparent 36%),
    linear-gradient(180deg,#f7f9fd 0%,#eef2f9 100%);
}
.processing-card{
  width:min(720px,94vw);
  padding:38px;
  border:1px solid var(--line);
  border-radius:26px;
  background:rgba(255,255,255,.97);
  box-shadow:0 26px 80px rgba(17,32,78,.14);
  text-align:center;
}
.processing-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:22px;
  padding:8px 12px;
  border-radius:999px;
  color:#2949c7;
  background:#edf1ff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
}
.processing-kicker:before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#3157ff;
  box-shadow:0 0 0 6px rgba(49,87,255,.10);
}
#processing h2{
  margin:22px 0 8px;
  color:var(--navy);
  font-size:36px;
  letter-spacing:-.03em;
}
#processingText{
  margin:0;
  color:var(--muted);
  font-size:16px;
}
.processing-persuasion{
  min-height:48px;
  margin:26px auto 0;
  max-width:560px;
  color:#263352;
  font-size:17px;
  font-weight:700;
  line-height:1.5;
  opacity:.45;
  transform:translateY(4px);
  transition:.25s;
}
.processing-persuasion.message-visible{
  opacity:1;
  transform:translateY(0);
}
.processing-trust{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}
.processing-trust span{
  padding:9px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  background:#fafbfe;
  font-size:12px;
  font-weight:700;
}
#processing .progress{
  width:min(520px,80vw);
  margin:24px auto 0;
  height:10px;
}
@media(max-width:600px){
  #processing{inset:64px 0 0}
  .processing-card{padding:28px 20px}
  #processing h2{font-size:29px}
  .processing-persuasion{font-size:15px}
}
