:root {
  /* TECH+ Palette */
  --tech-blue: #0b4c8c;
  --tech-blue-dark: #083b6a;

  --tech-green: #57e86b;
  --tech-green-dark: #36c956;

  --bg: #f7f9fb;
  --white: #ffffff;
  --text: #1e1e1e;
  --muted: #5a6776;

  --border: rgba(15, 25, 40, 0.12);
  --shadow: 0 20px 45px rgba(10, 20, 40, 0.12);

  --radius: 18px;
  --radius2: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.35;
}

/* Layout */
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Topbar */
.topbar {
/*  background: linear-gradient(
    90deg,
    var(--tech-blue),
    var(--tech-blue-dark)
  ); */
  background: hsl(0, 84%, 60%);
  color: #fff;
  padding: 12px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.topbar__text {
  font-weight: 600;
  opacity: 0.95;
  font-size: 14px;
}

.topbar__pill {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
}

.topbar__pill strong {
  color: var(--tech-green);
  font-weight: 800;
}

/* HERO */
.hero {
  background: radial-gradient(
      1200px 600px at 50% 10%,
      rgba(87, 232, 107, 0.14),
      transparent 55%
    ),
    linear-gradient(180deg, var(--tech-blue-dark), #062d52);
  color: #fff;
  padding: 55px 0 65px;
}

.hero__inner {
  text-align: center;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.brand__logo {
  width: 420px;
  height: 148px;
  border-radius: 14px;
  background: transparent;
  color: var(--tech-blue-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
.brand__logo img {
  width: 300px;   /* ajuste conforme necessário */
  height: auto;   /* mantém proporção */
}


.hero__title {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 18px;
}

.hero__subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 10px;
}

.hero__desc {
  font-size: 14px;
  opacity: 0.85;
  max-width: 680px;
  margin: 0 auto 28px;
}

.accent {
  color: var(--tech-green);
  font-weight: 800;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, filter 0.18s ease,
    box-shadow 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}

.btn__arrow {
  font-size: 16px;
}

.btn--primary {
  background: linear-gradient(
    180deg,
    var(--tech-green),
    var(--tech-green-dark)
  );
  color: #062d52;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

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

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.btn--big {
  padding: 17px 26px;
  font-size: 14px;
}

/* Hero mini */
.hero__mini {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 26px;
  opacity: 0.92;
}

.mini {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini__icon {
  opacity: 0.9;
}

/* Stats */
.hero__stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat {
  padding: 18px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat__value {
  font-size: 26px;
  font-weight: 900;
  color: var(--tech-green);
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 13px;
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 70px 0;
}

.section--light {
  background: linear-gradient(180deg, #eef4fb, var(--bg));
}

.section--white {
  background: #fff;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.warning {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(11, 76, 140, 0.08);
  border: 1px solid rgba(11, 76, 140, 0.16);
}

.section__title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--tech-blue-dark);
}

.section__subtitle {
  margin-top: 10px;
  font-weight: 800;
  color: var(--tech-blue);
}

.section__desc {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.center {
  text-align: center;
  margin-bottom: 34px;
}

/* Card */
.card {
  background: #fff;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
}

.card--center {
  width: min(680px, 100%);
  margin: 0 auto;
}

.card__title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--tech-blue-dark);
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  color: #2d3a4a;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

.x {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #FFE8E8;
  border: 1px solid #F2A3A3;
  color: #E53935;
  font-weight: 900;
}

/* Highlights */
.highlight {
  margin-top: 14px;
  padding: 16px 16px;
  border-radius: 16px;
  background: #FFE8E8;
  border: 1px solid #F2A3A3;
}

.highlight h4 {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--tech-blue-dark);
}

.highlight p {
  font-size: 13px;
  color: #3a4a5c;
}

.highlight--green {
  background: rgba(87, 232, 107, 0.1);
  border: 1px solid rgba(87, 232, 107, 0.25);
}

.highlight--green h4 {
  color: #083b6a;
}

/* Grid 2 */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.box {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(10, 20, 40, 0.06);
}

.box__title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--tech-blue-dark);
}

.box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.box--accent {
  background: linear-gradient(
    180deg,
    rgba(11, 76, 140, 0.06),
    rgba(87, 232, 107, 0.08)
  );
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  color: #233244;
}

/* CTA */
.cta {
  background: radial-gradient(
      900px 500px at 50% 20%,
      rgba(87, 232, 107, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, var(--tech-blue-dark), #062d52);
  padding: 70px 0;
  color: #fff;
}

.cta__inner {
  text-align: center;
}

.cta__title {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.cta__subtitle {
  font-size: 15px;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 26px;
}

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  margin-top: 18px;
}

.cta__note {
  opacity: 0.9;
  font-size: 13px;
}

/* Footer */
.footer {
  background: #041f38;
  color: rgba(255, 255, 255, 0.85);
  padding: 26px 0;
}

.footer__inner {
  display: grid;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr auto auto;
}

.footer__brand {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: #fff;
}

.footer__sub {
  font-size: 12px;
  opacity: 0.9;
  letter-spacing: 0.08em;
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.footer__links a:hover {
  color: var(--tech-green);
}

.footer__copy {
  font-size: 12px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .topbar__inner {
    flex-direction: column;
    gap: 10px;
  }

  .hero__title {
    font-size: 34px;
  }

  .section__title {
    font-size: 26px;
  }

  .card {
    padding: 20px;
  }

  .box {
    padding: 20px;
  }
}



.cta__formWrap{
  margin-top: 22px;
  border: #fff solid 1px;
  padding: 10px;
  border-radius: 20px;

}

.cta__form{
  width: min(980px, 100%);
  margin: 0 auto;
}

.form__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
  margin-bottom: 14px;
}


.form__field select option{
  background-color: #0b2b45;
  color: #fff;
}


.form__field label{
  display: block;
  font-size: 14px;
  opacity: .9;
  margin-bottom: 6px;
}

.form__field input,
.form__field select{
  width: 100%;
  height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 0 14px;
  outline: none;
}

.form__field input::placeholder{
  color: rgba(255,255,255,.6);
}

.form__field input:focus,
.form__field select:focus{
  border-color: rgba(0, 255, 160, .55);
  box-shadow: 0 0 0 3px rgba(0, 255, 160, .12);
}

.form__phone{
  display: grid;
  grid-template-columns: 52px 62px 1fr;
  gap: 10px;
  align-items: center;
  height: 46px;
}

.form__flag,
.form__ddi{
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.form__phone input{
  height: 46px;
}

.btn--full{
  margin-top: 10px;
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 820px){
  .form__row{
    grid-template-columns: 1fr;
  }

  .form__phone{
    grid-template-columns: 52px 62px 1fr;
  }
}


/* SECTION: ESCOLHA SUA NOVA REALIDADE */
.paths {
  background: var(--tech-green);
  padding: 70px 0;
}

.paths__head {
  text-align: center;
  margin-bottom: 34px;
}

.paths__title {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #072a12;
  margin-bottom: 10px;
}

.paths__subtitle {
  font-size: 15px;
  color: rgba(7, 42, 18, 0.75);
  max-width: 720px;
  margin: 0 auto;
}

.paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.pathCard {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(7, 42, 18, 0.18);
  border-radius: var(--radius2);
  padding: 18px 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pathCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 45px rgba(0, 0, 0, 0.12);
}

.pathCard__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: rgba(87, 232, 107, 0.18);
}

.pathCard__content h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin: 0 0 6px;
  color: #071b10;
}

.pathCard__content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(30, 30, 30, 0.72);
}

.paths__pill {
  margin: 26px auto 0;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(7, 42, 18, 0.22);
  color: rgba(7, 42, 18, 0.85);
  font-size: 13px;
  font-weight: 600;
}

/* Responsivo */
@media (max-width: 920px) {
  .paths__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .paths__title {
    font-size: 28px;
  }
}

