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

  :root {
    --navy:        #0B2D5B;
    --accent:      #3b82f6;
    --accent-dark: #2563eb;
    --accent-light:#60a5fa;
    --green:       #22c55e;
    --white:       #ffffff;
    --gray-50:     #f8fafc;
    --gray-100:    #f1f5f9;
    --gray-200:    #e2e8f0;
    --gray-300:    #cbd5e1;
    --gray-400:    #94a3b8;
    --gray-500:    #64748b;
    --gray-600:    #475569;
    --gray-700:    #334155;
    --gray-800:    #1e293b;
    --font:        'Inter', sans-serif;
    --r:           8px;
    --rl:          12px;
    --line: rgba(255,255,255,0.08);
  }

  body { font-family: var(--font); color: var(--gray-800); background: var(--white); -webkit-font-smoothing: antialiased; }
  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }

  /* ─── NAV ─────────────────────────────────────────── */
  .legacy-nav-shell {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-logo {
   height: 40px;
   max-width: 100%;
   flex-shrink: 0;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,.8);
    font-size: 13.5px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links .chev { font-size: 9px; opacity: .6; }

  .nav-cta {
    background: #F7B50F;
    color: #08244A !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 9px 18px;
    border-radius: 6px;
    transition: background .15s !important;
  }
  .nav-cta:hover { background: var(--accent-dark) !important; color: white !important }

  /* ─── HERO BLOCK ──────────────────────────────────────
     nav + breadcrumb + hero content all share var(--navy)
     with a subtle radial blue highlight — no seam between them
  ─────────────────────────────────────────────────────── */
  .hero-block {
    background: var(--navy);
    background-image: radial-gradient(ellipse 65% 55% at 72% 35%, #1a3f7a 0%, transparent 70%);
    padding: 24px 48px 72px;
   
  }

.breadcrumb {
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.breadcrumb a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: opacity .2s ease;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb .sep {
  opacity: .5;
}

.breadcrumb .current {
  opacity: .85;
  font-weight: 500;
}

  .hero-inner {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
  }

  .hero-left {
    flex: 1 1 400px;
    max-width: 540px;
  }

  .hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 32px;
  }
  .hero-title .hero-span { color: #448bee; }

  .hero-mockup {
    width: 100%;
    max-width: 520px;
    height: 320px;
    margin 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,.25);
    font-size: 12px;
  }
  .hero-mockup svg { opacity: .3; }

  .hero-mockup img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }

  /* ─── FORM CARD ──────────────────────────────────── */
  .form-card {
    flex: 0 0 310px;
    background: var(--white);
    border-radius: var(--rl);
    padding: 26px 22px 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
  }

  .form-card-head {
    text-align: center;
    margin-bottom: 18px;
  }
  .form-card-head strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 5px;
  }
  .form-card-head p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.55;
  }

  .form-card input,
  .form-card select {
    width: 100%;
    height: 38px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 0 10px;
    font-family: var(--font);
    font-size: 12.5px;
    color: var(--gray-700);
    background: var(--white);
    outline: none;
    transition: border-color .15s;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-card input:focus,
  .form-card select:focus { border-color: var(--accent); }
  .form-card input::placeholder { color: var(--gray-400); }

  .f-full { margin-bottom: 8px; }
  .f-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }

  .form-legal {
    font-size: 10px;
    color: var(--gray-400);
    text-align: center;
    line-height: 1.55;
    margin-top: 12px;
  }
  .form-legal a { color: var(--accent); }

  .btn-download {
    width: 100%;
    height: 42px;
    background: #F7B50F;
    color: #08244A;
    border: none;
    border-radius: 6px;
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
  }
  .btn-download:hover { background: var(--accent-dark); color: white;}

  /* ─── CONTENT SECTION  (white) ───────────────────── */
  .content-section {
    background: var(--navy);
    padding: 10px 12px 0px;
  }

  .intro-text {
    text-align: justify;
    margin-bottom: 30px;
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--gray-600);
  }

  .section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 32px!important;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin 0 auto;
  }

  .feature-card {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--rl);
    padding: 22px 18px;
    transition: box-shadow .2s, border-color .2s;
  }
  .feature-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); border-color: var(--accent-light); }

  .feat-icon {
    width: 36px; height: 36px;
    background: #dcfce7;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }

  .feat-title { font-size: 13.5px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; line-height: 1.3; }
  .feat-desc  { font-size: 12px; line-height: 1.75; color: var(--gray-500); text-align: justify; }

  /* ─── MATERIALS (white, top border) ─────────────── */

  .materials-carousel {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 14px;
}

.materials-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.materials-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform .35s ease;
  will-change: transform;
}

.mat-card {
  box-sizing: border-box;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}

.carousel-row {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.car-track {
  width: 100%;
  height: 2px;
  background: #d3dae5;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.car-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #8a95a8;
  border-radius: 999px;
  transition: width .35s ease, left .35s ease;
  width: 0;
}

.car-btn {
  background: transparent;
  border: none;
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #3b82f6;
  transition: opacity .2s ease;
}

.car-btn svg {
  width: 18px;
  height: 18px;
}

.car-btn:hover {
  opacity: .7;
}

.car-btn:disabled {
  opacity: .3;
  cursor: default;
}

.car-btn:disabled {
  opacity: .45;
  cursor: default;
}

@media (max-width: 1024px) {
  .mat-card {
    flex: 0 0 calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 767px) {
  .mat-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

.carousel-row {
  width: calc(100% - 48px);
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 12px;
  margin: 20px auto 0;
}

  .car-btn {
    width: 28px;
    height: 28px;
  }
}

  .materials-section {
    background: var(--white);
    padding:  48px 72px;
    
  }

  .materials-grid {
    gap: 24px;
    margin-bottom: 28px;
  }

  .mat-card {
    border-radius: var(--rl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    background: var(--white);
    transition: box-shadow .2s;
  }
  .mat-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }

  .mat-thumb {
    width: 100%; aspect-ratio: 16/9;
    background: #b8cfe8;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

.mat-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ou contain se quiser não cortar */
  display: block;
}

  .mat-thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1b3d6e, #2d5a9e88);
  }
  .mat-thumb svg { position: relative; z-index: 1; opacity: .35; }

  .mat-badges {
    position: absolute; top: 8px; left: 8px;
    display: flex; gap: 5px; z-index: 2;
  }
  .badge-green {
    font-size: 10px; font-weight: 600;
    padding: 2px 8px; border-radius: 4px;
    background: var(--green); color: var(--white);
  }
  .badge-white {
    font-size: 10px; font-weight: 500;
    padding: 2px 8px; border-radius: 4px;
    background: rgba(255,255,255,.92); color: var(--gray-700);
    border: 1px solid var(--gray-200);
  }

  .mat-body { padding: 14px 16px 18px; }
  .mat-title { font-size: 13px; font-weight: 700; color: var(--gray-800); margin-bottom: 5px; line-height: 1.4; }
  .mat-meta  { font-size: 11px; color: var(--gray-400); margin-bottom: 10px; }
  .mat-link  {
    font-size: 12.5px; font-weight: 600; color: #08244A;
    display: inline-flex; align-items: center; gap: 4px; transition: gap .15s;
  }
  .mat-link:hover { gap: 8px; }
  .mat-link-arrow {
    display: inline-block;
    width: 0; height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #08244A;
    flex-shrink: 0;
  }

  /* carousel */
  .carousel-row {
    display: flex; align-items: center; gap: 14px;
    max-width: 860px; margin-bottom: 36px;
    margin-top: 20px!important;
  }
  .car-btn {
    width: 30px; height: 30px;
    border: 1.5px solid var(--gray-300); border-radius: 50%;
    background: var(--white); display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--gray-500); flex-shrink: 0;
    transition: border-color .15s, color .15s;
  }
  .car-btn:hover { border-color: var(--accent); color: var(--accent); }
  .car-track { flex: 1; height: 2px; background: var(--gray-200); border-radius: 2px; overflow: hidden; }
  .car-fill  { height: 100%; width: 35%; background: var(--gray-400); border-radius: 2px; }

  /* back button */
  .back-btn-wrap { text-align: center; margin-top: 25px; }
  .btn-back {
    display: inline-block;
    padding: 9px 28px;
    border: 1.5px solid var(--gray-300); border-radius: 6px;
    font-size: 13px; font-weight: 500;
    color: #356EFC; background: var(--white);
    transition: border-color .15s, color .15s; cursor: pointer;
  }
  .btn-back:hover { border-color: var(--accent); color: var(--accent); font-weight: bold;}

  /* ─── NEWSLETTER  (light gray band) ─────────────── */
  .newsletter-section {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 28px 48px;
  }
  .nl-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  }
  .nl-label { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
  .nl-icon {
    width: 34px; height: 34px;
    background: var(--white); border: 1px solid var(--gray-200); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--gray-500);
  }
  .nl-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-800); }
  .nl-text small  { font-size: 12px; color: var(--gray-400); }

  .nl-form { flex: 1 1 260px; display: flex; gap: 10px; }
  .nl-form input {
    flex: 1; height: 40px;
    border: 1.5px solid var(--gray-200); border-radius: 6px;
    padding: 0 14px; font-family: var(--font); font-size: 13px;
    color: var(--gray-700); background: var(--white); outline: none;
    transition: border-color .15s;
  }
  .nl-form input:focus { border-color: var(--accent); }
  .nl-form button {
    height: 40px; padding: 0 22px;
    background:#08244A; color: var(--white);
    border: none; border-radius: 6px;
    font-family: var(--font); font-size: 13.5px; font-weight: 600;
    cursor: pointer; transition: background .15s;
  }
  .nl-form button:hover { background: var(--accent-dark); }

  /* ─── SECTION SUPER APP ──────────────────────────────────── */

.super-app {
  position: relative;
  overflow: hidden;
}

.super-app .bg-box {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0d2045;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.super-app .bg-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.super-app .container {
  position: relative;
  z-index: 1;
}

.super-app .grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 80px 0 60px;
}

.super-app .grid > div {
  min-width: 0;
}

.super-app .grid .text {
  padding: 24px 0 0;
}

.super-app .grid .text .subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: lighter;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  padding: 0 0 16px 0;
  display: block;
}

.super-app .grid .text .title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: #fff;
  letter-spacing: 0;
  padding: 0 0 40px 0;
}

.super-app .grid .text a {
  display: block;
  width: 100%;
  max-width: 417px;
  height: auto;
}

.super-app .grid .text a img {
  display: block;
  width: 100%;
  height: auto;
}

.super-app .grid .image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.super-app .grid .image .box-image {
  position: relative;
  width: 100%;
  max-width: 447px;
  aspect-ratio: 447 / 441;
  height: auto;
  background: url('https://50751554.fs1.hubspotusercontent-na1.net/hubfs/50751554/raw_assets/public/imgs/infleet-quadrado.png') top left no-repeat;
  background-size: contain;
  background-position: center;
}

.super-app .grid .image .box-image .box-image-01 {
  width: 39.5%;
  max-width: 176.45px;
  position: absolute;
  top: 34.7%;
  right: 46.7%;
  border-radius: 10px;
  z-index: 4;
}

.super-app .grid .image .box-image .box-image-01 img {
  width: 100%;
  height: auto;
  display: block;
}

.super-app .grid .image .box-image .box-image-02 {
  width: 36.6%;
  max-width: 163.68px;
  position: absolute;
  top: 55.5%;
  right: 49.4%;
  border-radius: 10px;
  z-index: 4;
}

.super-app .grid .image .box-image .box-image-02 img {
  width: 100%;
  height: auto;
  display: block;
}

.super-app .grid .image .box-image .box-icon {
  width: 10%;
  max-width: 44.63px;
  aspect-ratio: 1 / 1;
  background-color: #22c55e;
  position: absolute;
  top: 23.8%;
  right: 8%;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.super-app .grid .image .box-image .box-icon svg,
.super-app .grid .image .box-image .box-icon .icon {
  width: 55%;
  height: 55%;
}

.super-app .grid .image .box-image .box-video-side {
  width: 47.2%;
  max-width: 211px;
  aspect-ratio: 211 / 232;
  position: absolute;
  top: 12.7%;
  right: 11.8%;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}

.super-app .grid .image .box-image .box-video-side video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* tablet */
@media (max-width: 1024px) {
  .super-app .grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 0 48px;
  }

  .super-app .grid .text {
    padding: 0;
  }

  .super-app .grid .text .title {
    font-size: 30px;
    padding-bottom: 28px;
  }

  .super-app .grid .text a {
    max-width: 360px;
  }

  .super-app .grid .image .box-image {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* mobile */
@media (max-width: 767px) {
  .super-app .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .super-app .grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 40px;
  }

  .super-app .grid .text .subtitle {
    font-size: 14px;
    padding-bottom: 12px;
  }

  .super-app .grid .text .title {
    font-size: 24px;
    line-height: 1.25;
    padding-bottom: 24px;
  }

  .super-app .grid .text a {
    max-width: 100%;
  }

  .super-app .grid .image .box-image {
    max-width: 100%;
    width: 100%;
  }

  .super-app .grid .image .box-image .box-video-side {
    border-radius: 12px;
  }

  .super-app .grid .image .box-image .box-image-01,
  .super-app .grid .image .box-image .box-image-02 {
    border-radius: 8px;
  }
}

/* telas muito pequenas */
@media (max-width: 480px) {
  .super-app .grid .text .title {
    font-size: 22px;
  }

  .super-app .grid .image .box-image .box-icon {
    border-width: 1.5px;
  }
}

  /* ─── FOOTER ─────────────────────────────────────── */
  footer {
    background: var(--navy);
    padding: 56px 64px 0;
    color: rgba(255,255,255,.55);
    font-size: 13px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 240px 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1060px!important;
    padding-bottom: 48px!important;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .ft-logo {
    display: flex; align-items: center; gap: 8px;
    color: var(--white); font-size: 18px; font-weight: 700;
    margin-bottom: 10px;
  }
  .ft-tagline {
    font-size: 12.5px; color: rgba(255,255,255,.4);
    line-height: 1.6; margin-bottom: 20px;
  }

  .ft-partners { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
  .ft-partner {
    font-size: 10px; font-weight: 500;
    padding: 3px 10px;
    border: 1px solid rgba(255,255,255,.18); border-radius: 5px;
    color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.04);
    white-space: nowrap;
  }

  .ft-reviews { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,.45); }
  .ft-reviews .stars { color: #fbbf24; letter-spacing: 1px; font-size: 13px; }
  .ft-reviews strong { color: rgba(255,255,255,.7); font-weight: 600; }

  .ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .ft-col li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .15s; }
  .ft-col li a:hover { color: var(--white); }

  .footer-mid {
    max-width: 1060px!important;
    padding: 32px 0!important;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .ct-col { display: flex; flex-direction: column; gap: 10px; }
  .ct-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5;
  }
  .ct-icon { flex-shrink: 0; margin-top: 1px; opacity: .6; }

  .footer-bottom {
    max-width: 1060px!important;
    padding: 20px 0 24px!important;
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
  }
  .ft-copy { font-size: 12px; color: rgba(255,255,255,.3); }

  .ft-socials { display: flex; gap: 8px; }
  .soc {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); cursor: pointer; transition: background .15s;
  }
  .soc:hover { background: var(--accent); }

  .ft-back-top {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: rgba(255,255,255,.4);
    cursor: pointer; transition: color .15s; text-decoration: none;
  }
  .ft-back-top:hover { color: var(--white); }

  /* ─── RESPONSIVE ─────────────────────────────────── */
  @media (max-width: 1200px) {
    .header-inner { gap: 16px; }
    .nav { gap: 16px; margin-right: 0; }
    .nav a { font-size: 11px; }
    .header .nav-cta { padding: 9px 14px; font-size: 12px !important; white-space: nowrap; }
  }

  @media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top    { grid-template-columns: 1fr 1fr; }
    .footer-mid    { grid-template-columns: 1fr 1fr; }

    .container { padding: 0 20px; }
    .header-inner {
      min-height: 72px;
      gap: 12px;
      justify-content: space-between;
      flex-wrap: nowrap;
    }
    .nav { display: none !important; }
    .header .nav-cta { display: none !important; }
    .menu-toggle { display: inline-flex; margin-left: auto; }
    .nav-logo { height: 34px; max-width: min(160px, 42vw); width: auto; }
  }

  @media (max-width: 768px) {
    .legacy-nav-shell { padding: 0 20px; }
    .nav-links { display: none; }

    .container { padding: 0 20px; }
    .header-inner { min-height: 72px; gap: 12px; }

    .hero-block { padding: 20px 20px 52px; }
    .hero-inner { flex-direction: column; align-items: stretch; gap: 28px; }
    .hero-left { max-width: none; }
    .hero-title { font-size: 28px; margin-bottom: 24px; }
    .hero-mockup { max-width: 100%; }
    .form-card  { flex: 0 0 auto; width: 100%; max-width: 100%; }

    .content-section  { padding: 48px 20px 0; }
    .material-inner { padding: 32px 20px; }
    
    .intro-text { margin-bottom: 36px; }
    .materials-section{ padding: 0 20px 52px; }
    .features-grid    { grid-template-columns: 1fr; }

    .newsletter-section { padding: 24px 20px; }
    .nl-inner { gap: 18px; }
    .nl-form { flex-direction: column; width: 100%; }
    .nl-form button { width: 100%; }

    .super-app .grid { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 40px 0; }
    .super-app .grid .text { padding-top: 0; }
    .super-app .grid .text .title { padding-bottom: 32px; font-size: 28px; line-height: 1.25; }
    .super-app .grid .text a { width: 100%; max-width: 417px; height: auto; }
    .super-app .grid .image .box-image { width: 100%; max-width: 447px; height: auto; aspect-ratio: 447 / 441; }

    .video-cta   { padding: 60px 24px; min-height: 380px; }
    .video-title { font-size: 26px; }
    .vid-watch   { right: 24px; bottom: 24px; }

    footer        { padding: 40px 20px 0; }
    .footer-top   { grid-template-columns: 1fr; gap: 32px; }
    .footer-mid   { grid-template-columns: 1fr; }
    .footer-bottom{ flex-direction: column; gap: 12px; align-items: flex-start; }
  }

  @media (max-width: 480px) {
    .f-row { grid-template-columns: 1fr; }
    .hero-block { padding-left: 16px; padding-right: 16px; }
    .content-section, .materials-section, .newsletter-section, footer { padding-left: 16px; padding-right: 16px; }
    .container { padding: 0 16px; }
    .material-inner { padding: 24px 16px; }
    .section-title { font-size: 21px; }
    .breadcrumb { font-size: 10px; }
  }

    .divider {
      height: 1px;
      background: var(--line);
      margin-top: 28px;
    }

    .container {
      max-width: 1325px;
      margin: 0 auto;
      padding: 0 28px;
    }

    /* HEADER */

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      min-width: 0;
    }

  .header-inner > * { min-width: 0; }

  .header .nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    margin-right: 8px;
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .header .nav a {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header .nav-cta {
    flex: 0 0 auto;
    white-space: nowrap;
  }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      text-decoration: none;
      color: #fff;
      font-weight: 700;
      letter-spacing: 0.02em;
      font-size: 18px;
    }

    .logo-mark {
      width: 18px;
      height: 18px;
      border: 2px solid #fff;
      transform: rotate(45deg);
      border-radius: 2px;
      position: relative;
    }

    .logo-mark::before {
      content: "";
      position: absolute;
      inset: 3px;
      border: 1.5px solid #fff;
      border-radius: 1px;
    }


    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-left: auto;
      margin-right: 8px;
      position: relative;
    }

    .nav a {
      color: rgba(255,255,255,0.88);
      text-decoration: none;
      font-size: 12px;
      font-weight: 500;
      transition: opacity .2s ease;
      white-space: nowrap;
      flex-shrink: 1;
    }

    .nav a:hover {
      opacity: 0.8;
    }
  
    body {
  margin: 0;
}

.header {
    background: var(--navy);
position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  z-index: 1000;
  padding-top: 18px;
 
}

.material-inner {
  background: #FFFFFF;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 50px;
  position: relative;
  overflow: hidden;

}


  /* ─── MOBILE HEADER / SIDEBAR ───────────────────── */
  .menu-toggle {
    display: none !important;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }

  .menu-toggle svg {
    width: 22px;
    height: 22px;
  }

  .mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--navy);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 1200;
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: -12px 0 40px rgba(0,0,0,.25);
    overflow-y: auto;
  }

  .mobile-sidebar.is-open {
    transform: translateX(0);
  }

  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .58);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
    z-index: 1100;
  }

  .sidebar-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .sidebar-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .sidebar-nav a {
    color: rgba(255,255,255,.92);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  /* item dropdown desktop */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link-dropdown {
  height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity .2s ease, color .2s ease;
}

.nav-link-dropdown:hover {
  opacity: 1;
  color: #fff;
}

.nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  transition: transform .2s ease;
}


/* menu dropdown */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  transform: none!important;
  min-width: 220px;
  background: #102d63;
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 1200;
}

/* espacinho/ponte para não fechar ao mover o mouse */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
}

/* setinha */
.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 38px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #102d63;
}

.dropdown-link {
  display: block;
  color: rgba(255,255,255,0.96);
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  padding: 10px 10px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}

.dropdown-link + .dropdown-link {
  margin-top: 6px;
}

.dropdown-link:hover,
.dropdown-link.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* abrir no hover desktop */
@media (min-width: 1025px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* no tablet/mobile o dropdown desktop some */
@media (max-width: 1024px) {
  .nav-dropdown {
    display: none;
  }
}


  @media (max-width: 1024px) {
    .header .menu-toggle {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      margin-left: auto;
    }
  }

  .sidebar-cta {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-align: center;
  }

  body.menu-open {
    overflow: hidden;
  }

.footer-brand {
  max-width: 420px;
}

.footer-logo img {
  height: 36px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.6);
  margin-bottom: 22px;
}

/* logos */

.footer-partners {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.partner-logo {
  height: 44px;
  padding: 8px 14px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-height: 20px;
  width: auto;
  object-fit: contain;
}

/* reviews */

.footer-reviews {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.review-score {
  color: #fbbf24;
  font-weight: 600;
}

.review-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 14px;
}

.half-star {
  position: relative;
  display: inline-block;
  color: rgba(255,255,255,.22); /* parte vazia */
}

.half-star::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #fbbf24; /* parte preenchida */
}

@media (max-width: 768px) {

.footer-brand {
  max-width: 100%;
}

.footer-partners {
  gap: 8px;
}

.partner-logo {
  height: 34px;
  padding: 6px 12px;
}

.partner-logo img {
  max-height: 16px;
}

.footer-tagline {
  font-size: 13px;
}

}

.nav-dropdown-wrapper {
  display: flex;
  gap: 100px;
  }
  
  /* Style hubspot form */
/* ===== WRAPPER DO CARD ===== */
.hubspot-form-skin {
  flex: 0 0 310px;
  background: var(--white);
  border-radius: var(--rl);
  padding: 26px 22px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.hubspot-form-skin .form-card-head {
  text-align: center;
  margin-bottom: 18px;
}

.hubspot-form-skin .form-card-head strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 5px;
}

.hubspot-form-skin .form-card-head p {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ===== FORM HUBSPOT ===== */
.hubspot-form-skin .hbspt-form,
.hubspot-form-skin .hs-form {
  width: 100%;
}

.hubspot-form-skin form {
  width: 100%;
}

/* força o formulário a virar grid */
.hubspot-form-skin .hs-form {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: start;
}

/* todos os wrappers principais do hubspot */
.hubspot-form-skin .hs-form > .hs-form-field,
.hubspot-form-skin .hs-form > fieldset,
.hubspot-form-skin .hs-form > .legal-consent-container,
.hubspot-form-skin .hs-form > .hs_submit,
.hubspot-form-skin .hs-form > .submitted-message,
.hubspot-form-skin .hs-form > .hs_error_rollup {
  min-width: 0;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

/* campo 1 ocupa a linha toda: Nome */
.hubspot-form-skin .hs-form > .hs-form-field:first-of-type,
.hubspot-form-skin .hs-form > fieldset:first-of-type {
  grid-column: 1 / -1;
}

/* se o HubSpot renderizar fieldsets de colunas, neutraliza */
.hubspot-form-skin .hs-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.hubspot-form-skin .hs-form fieldset.form-columns-1,
.hubspot-form-skin .hs-form fieldset.form-columns-2,
.hubspot-form-skin .hs-form fieldset.form-columns-3 {
  display: contents;
}

.hubspot-form-skin .hs-form .hs-form-field {
  min-width: 0;
  margin-bottom: 0 !important;
}

/* wrappers internos do hubspot */
.hubspot-form-skin .hs-form .input {
  margin-right: 0 !important;
}

/* labels */
.hubspot-form-skin label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
  line-height: 1.4;
}

/* inputs */
.hubspot-form-skin .hs-input,
.hubspot-form-skin input[type="text"],
.hubspot-form-skin input[type="email"],
.hubspot-form-skin input[type="tel"],
.hubspot-form-skin input[type="number"],
.hubspot-form-skin input[type="password"],
.hubspot-form-skin input[type="date"],
.hubspot-form-skin select,
.hubspot-form-skin textarea {
  width: 100% !important;
  height: 38px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0 10px;
  font-family: var(--font);
  font-size: 12.5px;
  color: var(--gray-700);
  background: var(--white);
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.hubspot-form-skin textarea {
  min-height: 110px;
  height: auto;
  padding: 10px;
  resize: vertical;
}

.hubspot-form-skin .hs-input:focus,
.hubspot-form-skin input:focus,
.hubspot-form-skin select:focus,
.hubspot-form-skin textarea:focus {
  border-color: var(--accent);
}

.hubspot-form-skin input::placeholder,
.hubspot-form-skin textarea::placeholder {
  color: var(--gray-400);
}

/* select */
.hubspot-form-skin select {
  cursor: pointer;
  padding-right: 34px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gray-400) 50%),
    linear-gradient(135deg, var(--gray-400) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 3px),
    calc(100% - 11px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* mensagens de erro */
.hubspot-form-skin .hs-error-msgs {
  list-style: none;
  padding: 4px 0 0;
  margin: 0;
}

.hubspot-form-skin .hs-error-msg,
.hubspot-form-skin .hs-main-font-element {
  font-size: 11px;
  line-height: 1.4;
  color: #b91c1c;
}

/* consentimento LGPD ocupa linha inteira */
.hubspot-form-skin .legal-consent-container {
  grid-column: 1 / -1;
  font-size: 10px;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.55;
  margin-top: 4px !important;
}

.hubspot-form-skin .legal-consent-container a,
.hubspot-form-skin .hs-richtext a {
  color: var(--accent);
  text-decoration: none;
}

.hubspot-form-skin .legal-consent-container a:hover,
.hubspot-form-skin .hs-richtext a:hover {
  text-decoration: underline;
}

.hubspot-form-skin .inputs-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.hubspot-form-skin .inputs-list li {
  margin: 0;
}

.hubspot-form-skin .inputs-list input[type="checkbox"],
.hubspot-form-skin .inputs-list input[type="radio"] {
  width: auto !important;
  height: auto !important;
  margin-right: 8px;
}

/* submit ocupa linha inteira */
.hubspot-form-skin .hs_submit,
.hubspot-form-skin .hs-submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px !important;
}

.hubspot-form-skin .actions {
  margin: 0 !important;
  padding: 0 !important;
}

.hubspot-form-skin .hs-button,
.hubspot-form-skin input[type="submit"] {
  width: 100%;
  height: 42px;
  background: #F7B50F !important;
  color: #08244A !important;
  border: none !important;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  box-shadow: none !important;
  padding: 0 16px !important;
}


.hubspot-form-skin .hs-button:hover,
.hubspot-form-skin input[type="submit"]:hover {
  background: var(--accent-dark) !important;
  color: white !important;
}

/* mensagem de sucesso */
.hubspot-form-skin .submitted-message {
  grid-column: 1 / -1;
  font-size: 12px;
  line-height: 1.6;
  color: var(--gray-700);
}

/* rollup de erro */
.hubspot-form-skin .hs_error_rollup {
  grid-column: 1 / -1;
}

/* força classes comuns do hubspot a ocuparem posições específicas */
.hubspot-form-skin .hs_firstname,
.hubspot-form-skin .hs_first_name,
.hubspot-form-skin .hs_fullname,
.hubspot-form-skin .hs_nome,
.hubspot-form-skin .hs_nome_completo {
  grid-column: 1 / -1;
}

/* tentativa de manter email + segmento / empresa + veículos em 2 colunas */
.hubspot-form-skin .hs_email,
.hubspot-form-skin .hs_segmento,
.hubspot-form-skin .hs_segmento_de_atuacao,
.hubspot-form-skin .hs_company,
.hubspot-form-skin .hs_empresa,
.hubspot-form-skin .hs_numero_de_veiculos,
.hubspot-form-skin .hs_numero_veiculos,
.hubspot-form-skin .hs_no_de_veiculos {
  grid-column: span 1;
}

/* qualquer bloco auxiliar ocupa linha inteira */
.hubspot-form-skin .hs_recaptcha,
.hubspot-form-skin .grecaptcha-badge,
.hubspot-form-skin .hs-richtext {
  grid-column: 1 / -1;
}

/* mobile */
@media (max-width: 768px) {
  .hubspot-form-skin {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hubspot-form-skin .hs-form {
    grid-template-columns: 1fr;
  }

  .hubspot-form-skin .hs-form > .hs-form-field:first-of-type,
  .hubspot-form-skin .hs-form > fieldset:first-of-type,
  .hubspot-form-skin .legal-consent-container,
  .hubspot-form-skin .hs_submit,
  .hubspot-form-skin .hs-submit,
  .hubspot-form-skin .submitted-message,
  .hubspot-form-skin .hs_error_rollup,
  .hubspot-form-skin .hs_firstname,
  .hubspot-form-skin .hs_first_name,
  .hubspot-form-skin .hs_fullname,
  .hubspot-form-skin .hs_nome,
  .hubspot-form-skin .hs_nome_completo,
  .hubspot-form-skin .hs_email,
  .hubspot-form-skin .hs_segmento,
  .hubspot-form-skin .hs_segmento_de_atuacao,
  .hubspot-form-skin .hs_company,
  .hubspot-form-skin .hs_empresa,
  .hubspot-form-skin .hs_numero_de_veiculos,
  .hubspot-form-skin .hs_numero_veiculos,
  .hubspot-form-skin .hs_no_de_veiculos {
    grid-column: auto;
  }
} 

.form-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 8px 6px;
  min-height: 420px;
}

.form-success-state[hidden] {
  display: none !important;
}

.success-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.success-icon-box {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon-box svg {
  width: 140px;
  height: 140px;
  display: block;
}

.success-copy {
  max-width: 540px;
  margin: 0 auto 34px;
}

.success-title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: #111827;
  margin-bottom: 8px;
}

.success-text {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.success-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 28px;
  border: 3px solid #356EFC;
  border-radius: 16px;
  color: #356EFC;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s ease;
}

.success-back-btn:hover {
  background: rgba(53, 110, 252, 0.06);
}

@media (max-width: 768px) {
  .form-success-state {
    min-height: auto;
    padding: 12px 0 0;
  }

  .success-icon-box,
  .success-icon-box svg {
    width: 54px;
    height: 54pxpx;
  }

  .success-copy {
    margin-bottom: 20px;
  }

  .success-title {
    font-size: 14px;
  }

  .success-text {
    font-size: 12px;
  }

  
}

.hubspot-form-skin .submitted-message {
  display: none !important;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.demo-modal.is-open {
  display: block;
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 16, 39, 0.72);
}

.demo-modal__dialog {
  position: relative;
  width: min(100% - 32px, 1000px);
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  background: #f5f5f5;
  border-radius: 18px;
  overflow: auto;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.demo-modal__content {
  padding: 56px 68px 80px;
}

.demo-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #356efc;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-modal__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 25px;;
  line-height: 1.2;
  font-weight: 800;
  color: #0c2b63;
}

.demo-modal__subtitle {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: #42526b;
}

.demo-modal__footer-note {
  margin: 56px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
  color: #6b7a90;
}

/* FORM HUBSPOT */
.hubspot-modal-form .hbspt-form,
.hubspot-modal-form .hs-form {
  width: 100%;
}

.hubspot-modal-form .hs-form {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.hubspot-modal-form .hs-form > .hs-form-field,
.hubspot-modal-form .hs-form > fieldset,
.hubspot-modal-form .hs-form > .legal-consent-container,
.hubspot-modal-form .hs-form > .hs_submit,
.hubspot-modal-form .hs-form > .hs-submit,
.hubspot-modal-form .hs-form > .submitted-message,
.hubspot-modal-form .hs-form > .hs_error_rollup {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  float: none !important;
}

.hubspot-modal-form .hs-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.hubspot-modal-form .hs-form fieldset.form-columns-1,
.hubspot-modal-form .hs-form fieldset.form-columns-2,
.hubspot-modal-form .hs-form fieldset.form-columns-3 {
  display: contents;
}

.hubspot-modal-form .hs-form .hs-form-field {
  min-width: 0;
  margin-bottom: 0 !important;
}

.hubspot-modal-form .hs-form .input {
  margin-right: 0 !important;
}

.hubspot-modal-form .hs_firstname,
.hubspot-modal-form .hs_first_name,
.hubspot-modal-form .hs_fullname,
.hubspot-modal-form .hs_nome,
.hubspot-modal-form .hs_nome_completo,
.hubspot-modal-form .hs_email,
.hubspot-modal-form .hs_whatsapp,
.hubspot-modal-form .hs_phone,
.hubspot-modal-form .hs_telefone,
.hubspot-modal-form .hs_mobilephone {
  grid-column: 1 / -1;
}

.hubspot-modal-form .legal-consent-container,
.hubspot-modal-form .hs_submit,
.hubspot-modal-form .hs-submit,
.hubspot-modal-form .submitted-message,
.hubspot-modal-form .hs_error_rollup,
.hubspot-modal-form .hs-richtext {
  grid-column: 1 / -1;
}

.hubspot-modal-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  color: #0f274f;
}

.hubspot-modal-form .hs-input,
.hubspot-modal-form input[type="text"],
.hubspot-modal-form input[type="email"],
.hubspot-modal-form input[type="tel"],
.hubspot-modal-form input[type="number"],
.hubspot-modal-form select,
.hubspot-modal-form textarea {
  width: 100% !important;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #b5cbe6;
  border-radius: 8px;
  background: #f5f5f5;
  font-size: 16px;
  color: #1f2937;
  box-shadow: none !important;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.hubspot-modal-form textarea {
  min-height: 120px;
  height: auto;
  padding: 14px 20px;
}

.hubspot-modal-form .hs-input:focus,
.hubspot-modal-form input:focus,
.hubspot-modal-form select:focus,
.hubspot-modal-form textarea:focus {
  border-color: #356efc;
}

.hubspot-modal-form input::placeholder,
.hubspot-modal-form textarea::placeholder {
  color: #7b7b7b;
}

.hubspot-modal-form select {
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, #356efc 50%),
    linear-gradient(135deg, #356efc 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.hubspot-modal-form .hs-error-msgs {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.hubspot-modal-form .hs-error-msg,
.hubspot-modal-form .hs-main-font-element {
  font-size: 12px;
  line-height: 1.4;
  color: #b42318;
}

.hubspot-modal-form .legal-consent-container {
  margin-top: 2px !important;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: #71829b;
}

.hubspot-modal-form .legal-consent-container a,
.hubspot-modal-form .hs-richtext a {
  color: #356efc;
  text-decoration: none;
}

.hubspot-modal-form .legal-consent-container a:hover,
.hubspot-modal-form .hs-richtext a:hover {
  text-decoration: underline;
}

.hubspot-modal-form .inputs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hubspot-modal-form .actions {
  margin: 0 !important;
  padding: 0 !important;
}

.hubspot-modal-form .hs-button,
.hubspot-modal-form input[type="submit"] {
  width: 100%;
  height: 50px;
  border: 0 !important;
  border-radius: 10px;
  background: #356efc !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none !important;
  cursor: pointer;
}

.hubspot-modal-form .hs-button:hover,
.hubspot-modal-form input[type="submit"]:hover {
  background: #2a5ae0 !important;
}

/* botão exemplo */
.open-demo-modal {
  height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: #356efc;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .demo-modal__content {
    padding: 48px 24px 56px;
  }

  .demo-modal__title {
    font-size: 24px;
  }

  .demo-modal__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hubspot-modal-form .hs-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hubspot-modal-form .hs_firstname,
  .hubspot-modal-form .hs_first_name,
  .hubspot-modal-form .hs_fullname,
  .hubspot-modal-form .hs_nome,
  .hubspot-modal-form .hs_nome_completo,
  .hubspot-modal-form .hs_email,
  .hubspot-modal-form .hs_whatsapp,
  .hubspot-modal-form .hs_phone,
  .hubspot-modal-form .hs_telefone,
  .hubspot-modal-form .hs_mobilephone,
  .hubspot-modal-form .legal-consent-container,
  .hubspot-modal-form .hs_submit,
  .hubspot-modal-form .hs-submit,
  .hubspot-modal-form .submitted-message,
  .hubspot-modal-form .hs_error_rollup,
  .hubspot-modal-form .hs-richtext {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .demo-modal__dialog {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 14px;
  }

  .demo-modal__content {
    padding: 46px 16px 32px;
  }

  .demo-modal__title {
    font-size: 20px;
  }

  .demo-modal__subtitle {
    font-size: 15px;
  }

  .demo-modal__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .hubspot-modal-form .hs-input,
  .hubspot-modal-form input[type="text"],
  .hubspot-modal-form input[type="email"],
  .hubspot-modal-form input[type="tel"],
  .hubspot-modal-form input[type="number"],
  .hubspot-modal-form select,
  .hubspot-modal-form textarea {
    height: 46px;
    font-size: 15px;
    padding: 0 16px;
  }

  .hubspot-modal-form textarea {
    padding: 12px 16px;
  }
}

.hubspot-newsletter-form .hbspt-form,
.hubspot-newsletter-form .hs-form {
  width: 100%;
}

.hubspot-newsletter-form form {
  width: 100%;
}

.hubspot-newsletter-form {
  flex: 1 1 520px;
}

.hubspot-newsletter-form .hs-form {
  display: flex !important;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.hubspot-newsletter-form .hs-form > .hs-form-field,
.hubspot-newsletter-form .hs-form > fieldset {
  flex: 1 1 auto;
}

.hubspot-newsletter-form .hs_submit,
.hubspot-newsletter-form .hs-submit {
  flex: 0 0 auto;
}

.hubspot-newsletter-form .hs-form {
  display: flex !important;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.hubspot-newsletter-form .hs-form > .hs-form-field,
.hubspot-newsletter-form .hs-form > fieldset,
.hubspot-newsletter-form .hs-form > .legal-consent-container,
.hubspot-newsletter-form .hs-form > .hs_submit,
.hubspot-newsletter-form .hs-form > .hs-submit,
.hubspot-newsletter-form .hs-form > .submitted-message,
.hubspot-newsletter-form .hs-form > .hs_error_rollup {
  margin: 0 !important;
  float: none !important;
  min-width: 0;
}

.hubspot-newsletter-form .hs-form > .hs-form-field,
.hubspot-newsletter-form .hs-form > fieldset {
  flex: 1 1 auto;
}

.hubspot-newsletter-form .hs-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.hubspot-newsletter-form .hs-form fieldset.form-columns-1,
.hubspot-newsletter-form .hs-form fieldset.form-columns-2,
.hubspot-newsletter-form .hs-form fieldset.form-columns-3 {
  display: contents;
}

.hubspot-newsletter-form .hs-form .hs-form-field {
  margin-bottom: 0 !important;
}

.hubspot-newsletter-form .hs-form .input {
  margin-right: 0 !important;
}

.hubspot-newsletter-form label {
  display: none !important;
}

.hubspot-newsletter-form .hs-input,
.hubspot-newsletter-form input[type="email"],
.hubspot-newsletter-form input[type="text"] {
  width: 100% !important;
  height: 40px;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  padding: 0 14px;
  font-family: var(--font);
  font-size: 13px;
  color: var(--gray-700);
  background: var(--white);
  outline: none;
  box-shadow: none !important;
}

.hubspot-newsletter-form .hs-input:focus,
.hubspot-newsletter-form input:focus {
  border-color: var(--accent);
}

.hubspot-newsletter-form input::placeholder {
  color: var(--gray-400);
}

.hubspot-newsletter-form .hs_submit,
.hubspot-newsletter-form .hs-submit {
  flex: 0 0 auto;
}

.hubspot-newsletter-form .actions {
  margin: 0 !important;
  padding: 0 !important;
}

.hubspot-newsletter-form .hs-button,
.hubspot-newsletter-form input[type="submit"] {
  height: 40px;
  padding: 0 22px;
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  box-shadow: none !important;
  width: auto !important;
  min-width: 86px;
}

.hubspot-newsletter-form .hs-button:hover,
.hubspot-newsletter-form input[type="submit"]:hover {
  background: #0a1631 !important;
}

.hubspot-newsletter-form .legal-consent-container,
.hubspot-newsletter-form .hs-error-msgs,
.hubspot-newsletter-form .hs_error_rollup,

@media (max-width: 768px) {
  .hubspot-newsletter-form .hs-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hubspot-newsletter-form .hs-form > .hs-form-field,
  .hubspot-newsletter-form .hs-form > fieldset,
  .hubspot-newsletter-form .hs_submit,
  .hubspot-newsletter-form .hs-submit {
    width: 100%;
  }

  .hubspot-newsletter-form .hs-button,
  .hubspot-newsletter-form input[type="submit"] {
    width: 100% !important;
  }
}

.modal-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 32px 40px;
  min-height: 520px;
}

.modal-success-state[hidden] {
  display: none !important;
}

.modal-success-state .success-icon-wrap {
  margin-bottom: 28px;
}

.modal-success-state .success-icon-box {
  width: 144px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-success-state .success-icon-box svg {
  width: 144px;
  height: 144px;
  display: block;
}

.modal-success-state .success-copy {
  max-width: 560px;
  margin: 0 auto 28px;
}

.modal-success-state .success-title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 10px;
}

.modal-success-state .success-text {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.modal-success-state .back-btn-wrap {
  display: flex;
  justify-content: center;
}

.modal-success-state .btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1.5px solid #c7d2e3;
  border-radius: 8px;
  background: #fff;
  color: #356EFC;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.modal-success-state .btn-back:hover {
  background: #f8fbff;
}

@media (max-width: 768px) {
  .modal-success-state {
    min-height: auto;
    padding: 12px 20px 28px;
  }

  .modal-success-state .success-icon-box,
  .modal-success-state .success-icon-box svg {
    width: 104px;
    height: 104px;
  }

  .modal-success-state .success-title {
    font-size: 18px;
  }

  .modal-success-state .success-text {
    font-size: 16px;
  }

  .modal-success-state .btn-back {
    width: 100%;
    max-width: 260px;
  }
}

.modal-success-state .success-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.modal-success-state .success-icon-box {
  width: 144px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-success-state .success-icon-box svg {
  width: 144px;
  height: 144px;
  display: block;
  flex-shrink: 0;
}

.modal-success-state .success-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 28px;
  width: 100%;
}

.modal-success-state .success-icon-box--demo {
  width: 144px;
  height: 144px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 144px;
}

.modal-success-state .success-icon-svg {
  display: block;
  width: 144px;
  height: 144px;
  max-width: none;
}

.modal-success-state .success-icon-box--demo {
  width: 144px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon-img {
  width: 144px;
  height: 144px;
  object-fit: contain;
  display: block;
}