:root{
  --bg-dark: #071429;
  --bg-dark-2: #0a1f3a;
  --primary: #1f66ff;
  --primary-2: #2a7cff;
  --text: #0c1220;
  --muted: #6b778c;
  --line: #e7ecf3;
  --surface: #ffffff;
  --surface-2: #f6f8fb;
  --max: 1200px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

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

.container{
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

/* HEADER */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.header__inner{
  min-height: 92px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand__logo{
  width: 140px;
  height: auto;
}

.partners{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.partners__label{
  font-size: 12px;
  color: var(--muted);
}

.partners__logos{
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.partners__logos img{
  width: 130px;
  height: auto;
}

/* HERO */
.hero{
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  color: #fff;
}

.hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 15% 30%, rgba(31,102,255,.30), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(42,124,255,.22), transparent 55%),
    linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 55%, #081a31 100%),
    url('assets/hero-carrera.png');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(7,20,41,.78) 0%, rgba(7,20,41,.55) 55%, rgba(7,20,41,.78) 100%);
}

.hero__grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center; /* texto e form alinhados no meio */
  min-height: 520px;
}

.hero__copy{
  max-width: 620px;
}

.hero__copy h1{
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.10;
  letter-spacing: -0.4px;
}

.lead{
  margin: 0 0 22px;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  font-size: 16px;
}

.hero__bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.86);
}
.hero__bullets li{ margin: 10px 0; }

/* FORM CARD */
.hero__card{
  background: rgba(255,255,255,.98);
  color: var(--text);
  border: 1px solid rgba(231,236,243,.9);
  border-radius: 14px;
  overflow: hidden;
}

.hero__cardTop{
  padding: 22px 22px 6px;
}
.hero__cardTop h2{
  margin: 0 0 6px;
  font-size: 18px;
}
.hero__cardTop p{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

/* FORM */
.form{
  padding: 0 22px 22px;
}

.form__row{
  margin-bottom: 14px;
}

label{
  display: block;
  font-size: 12px;
  color: #39465c;
  margin-bottom: 7px;
}

input, select{
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  outline: none;
  font-family: inherit;
  font-size: 14px;
}

input:focus, select:focus{
  border-color: rgba(31,102,255,.75);
}

.field-error{
  display: block;
  min-height: 16px;
  margin-top: 6px;
  font-size: 12px;
  color: #b42318;
}

.form__note{
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.form__status{
  margin-top: 12px;
  font-size: 13px;
}

/* BUTTONS */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

.btn--primary{
  width: 100%;
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover{ background: var(--primary-2); }

.btn--inline{ width: auto; }

.btn--ghost{
  background: transparent;
  border-color: rgba(231,236,243,.9);
  color: #1b2a44;
}
.btn--ghost:hover{
  border-color: rgba(31,102,255,.55);
  color: var(--primary);
}

.center{ text-align: center; }

/* BLOCO 02 */
.split{
  padding: 92px 0;
  background: #fff;
}

.split__grid{
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.media-card{
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.media-card img{
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split__content{
  max-width: 640px;
}

.split__content h2{
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.18;
}

.split__content p{
  margin: 0 0 14px;
  color: #2b3a52;
  line-height: 1.75;
  font-size: 15px;
}

.callout{
  margin: 22px 0;
  padding: 16px 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 14px;
  color: #1f2b3f;
}

/* BLOCO 03 */
.cards{
  padding: 92px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{
  margin-bottom: 28px;
}
.section-head--center{
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2{
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.2;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0 28px;
}

.card{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 22px;
}

.card h3{
  margin: 0 0 10px;
  font-size: 16px;
}
.card p{
  margin: 0;
  color: #2b3a52;
  line-height: 1.75;
}

/* FAQ */
.faq{
  padding: 92px 0;
  background: #fff;
}

.accordion{
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.acc-item{
  border-bottom: 1px solid var(--line);
}

.acc-btn{
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #111a2b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.acc-icon{
  width: 22px;
  height: 22px;
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  position: relative;
  flex: 0 0 22px;
}
.acc-icon::before,
.acc-icon::after{
  content: "";
  position: absolute;
  background: #42526e;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.acc-icon::before{ width: 10px; height: 2px; }
.acc-icon::after{ width: 2px; height: 10px; }

.acc-btn[aria-expanded="true"] .acc-icon::after{ display: none; }

.acc-panel{
  padding: 0 0 18px;
}
.acc-panel p{
  margin: 0;
  color: #2b3a52;
  line-height: 1.75;
}

/* FOOTER */
.site-footer{
  background: #061427;
  color: rgba(255,255,255,.86);
  padding: 60px 0 20px;
}

.footer__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.footer__grid--center{
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.footer__logo{
  margin: 0 auto 12px;
}

.site-footer p{
  margin: 0 0 12px;
  line-height: 1.75;
}

.footer__small{
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

.social{
  margin-top: 18px;
  display: inline-flex;
  gap: 12px;
  justify-content: center;
}

.social__link{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
}

.social__link svg{ fill: currentColor; }
.social__link:hover{
  border-color: rgba(255,255,255,.34);
  color: #fff;
}

.footer__bottom{
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

.footer__bottom--center{
  text-align: center;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .container{ width: min(var(--max), calc(100% - 40px)); }
  .partners{ display: none; }
  .hero{ padding: 48px 0; }
  .hero__grid{ grid-template-columns: 1fr; gap: 22px; min-height: auto; }
  .hero__copy h1{ font-size: 34px; }
  .split{ padding: 72px 0; }
  .split__grid{ grid-template-columns: 1fr; gap: 28px; }
  .media-card img{ height: 340px; }
  .cards, .faq{ padding: 72px 0; }
  .card-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .header__inner{ min-height: 80px; }
  .brand__logo{ width: 100px; }
  .hero__copy h1{ font-size: 28px; }
  .split__content h2, .section-head h2{ font-size: 28px; }
  .partners{ display: inline; }
  .partners__logos img{
    width: 80px;
    height: auto;
  }
}
