:root {
  --blue-950: #031538;
  --blue-900: #061a44;
  --blue-800: #08265f;
  --blue-700: #0a358c;
  --blue-600: #0d4cc6;
  --blue-500: #1767ef;
  --blue-100: #eaf3ff;
  --blue-050: #f5f9ff;
  --white: #ffffff;
  --off: #f8fbff;
  --text: #08204f;
  --muted: #566b92;
  --line: rgba(8, 38, 95, .12);
  --shadow-sm: 0 10px 30px rgba(6, 26, 68, .08);
  --shadow-md: 0 24px 70px rgba(6, 26, 68, .14);
  --shadow-lg: 0 34px 90px rgba(6, 26, 68, .22);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(23, 103, 239, .12), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(10, 53, 140, .12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 36%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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

.section-pad {
  padding: 104px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px 12px 20px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 12px 40px rgba(6, 26, 68, .08);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.brand img {
  width: 172px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(8, 32, 79, .72);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.main-nav a:hover {
  color: var(--blue-700);
  background: rgba(23, 103, 239, .08);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
  box-shadow: 0 16px 36px rgba(13, 76, 198, .24);
}

.header-cta {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 14px;
}

.btn-secondary {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(23, 103, 239, .16);
  box-shadow: var(--shadow-sm);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(13, 76, 198, .28);
}

.hero {
  padding-top: 82px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -130px -12vw auto auto;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 103, 239, .18), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 58px;
}

.hero-copy h1,
.section-intro h2,
.compare-copy h2,
.experience-copy h2,
.form-copy h2 {
  margin: 0;
  color: var(--blue-950);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero-copy h1 {
  font-size: clamp(42px, 5.1vw, 72px);
  max-width: 760px;
}

.hero-copy > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
}

.differentials-card {
  width: min(100%, 620px);
  margin: 30px 0 0;
  padding: 22px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(23, 103, 239, .12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.differentials-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-900);
  font-size: 15px;
}

.differentials-card ul,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.differentials-card li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 650;
}

.differentials-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-900));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .74);
}

.insurer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 28px;
}

.insurer-line span {
  padding: 10px 13px;
  border: 1px solid rgba(10, 53, 140, .12);
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(6, 26, 68, .04);
}

.hero-visual {
  min-height: 620px;
  position: relative;
}

.visual-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(234, 243, 255, .78)),
    radial-gradient(circle at 72% 18%, rgba(23, 103, 239, .22), transparent 34%);
  border: 1px solid rgba(23, 103, 239, .14);
  box-shadow: var(--shadow-lg);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(10, 53, 140, .10);
  border-radius: 32px;
}

.logo-watermark {
  position: absolute;
  z-index: 1;
  width: 74%;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: .09;
}

.hero-person {
  position: absolute;
  z-index: 4;
  width: 48%;
  right: 4%;
  bottom: 8%;
}

.vehicle-main {
  position: absolute;
  z-index: 3;
  width: 85%;
  left: -11%;
  bottom: 4%;
}

.vehicle-secondary {
  position: absolute;
  z-index: 2;
  width: 58%;
  right: -11%;
  top: 28%;
  opacity: .62;
  transform: rotate(-3deg);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.floating-card span {
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 850;
}

.card-a {
  top: 90px;
  right: 38px;
}

.card-b {
  left: 34px;
  bottom: 196px;
}

.two-column,
.insurers-grid,
.faq-grid,
.form-grid,
.experience-grid,
.compare-grid {
  display: grid;
  gap: 48px;
}

.two-column {
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 118px;
}

.section-intro h2,
.compare-copy h2,
.experience-copy h2,
.form-copy h2 {
  font-size: clamp(36px, 4.2vw, 58px);
}

.section-intro p,
.compare-copy > p,
.form-copy p {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 270px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(23, 103, 239, .12);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 103, 239, .24);
  box-shadow: var(--shadow-md);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-900));
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
}

.info-card h3,
.steps-list h3,
.faq-list summary {
  margin: 0;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.info-card p,
.steps-list p,
.faq-list p,
.metric-card span {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.compare {
  background:
    linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
  overflow: hidden;
}

.compare-grid {
  grid-template-columns: .96fr 1.04fr;
  align-items: center;
}

.compare-visual {
  min-height: 620px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 38% 28%, rgba(23, 103, 239, .18), transparent 34%),
    linear-gradient(145deg, #ffffff, #edf5ff);
  border: 1px solid rgba(23, 103, 239, .13);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.cars-stack {
  position: relative;
  height: 620px;
}

.car-cutout {
  position: absolute;
  filter: drop-shadow(0 22px 24px rgba(6, 26, 68, .15));
}

.cutout-one {
  width: 80%;
  top: 50px;
  left: 26px;
  transform: rotate(-4deg);
  opacity: .96;
}

.cutout-two {
  width: 92%;
  top: 212px;
  right: -96px;
  transform: rotate(2deg);
}

.cutout-three {
  width: 92%;
  bottom: 20px;
  left: -64px;
  transform: rotate(-1deg);
}

.steps-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 28px;
}

.steps-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(23, 103, 239, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 26px rgba(6, 26, 68, .05);
}

.steps-list article > span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-900));
  font-weight: 900;
}

.insurers {
  background: var(--blue-950);
  color: var(--white);
  overflow: hidden;
}

.insurers::before {
  content: "";
  position: absolute;
  inset: -22% auto auto -12%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(23, 103, 239, .42), transparent 64%);
}

.insurers::after {
  content: "";
  position: absolute;
  inset: auto -18% -18% auto;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, .11), transparent 62%);
}

.insurers-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
}

.insurers .section-intro h2,
.insurers .section-intro p {
  color: var(--white);
}

.insurers .section-intro p {
  opacity: .74;
}

.insurer-board {
  min-height: 520px;
  padding: 34px;
  border-radius: 40px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.board-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  margin-bottom: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
}

.board-logo img {
  width: 290px;
}

.insurer-board ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.insurer-board li {
  min-height: 96px;
  display: flex;
  align-items: end;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.insurer-board li:last-child {
  grid-column: 1 / -1;
}

.experience-grid {
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
}

.experience-copy h2 {
  max-width: 680px;
}

.check-list {
  margin: 28px 0 30px;
  gap: 13px;
}

.check-list li {
  font-size: 18px;
}

.human-cards {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 18px;
}

.photo-card,
.metric-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(23, 103, 239, .12);
  background: linear-gradient(145deg, #ffffff, #eef5ff);
  box-shadow: var(--shadow-md);
}

.card-tall {
  min-height: 560px;
  grid-row: span 2;
}

.card-small,
.metric-card {
  min-height: 270px;
}

.logo-mark {
  position: absolute;
  width: 76%;
  top: 34px;
  left: 12%;
  opacity: .12;
}

.photo-card .professional {
  position: absolute;
  width: 78%;
  left: 11%;
  bottom: -8px;
}

.vehicle-photo {
  position: absolute;
  width: 120%;
  left: -14%;
  bottom: -6%;
}

.metric-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    radial-gradient(circle at 92% 10%, rgba(23, 103, 239, .28), transparent 32%),
    linear-gradient(145deg, var(--blue-900), var(--blue-950));
}

.metric-card strong {
  color: var(--white);
  font-size: 86px;
  line-height: .8;
  letter-spacing: -.07em;
}

.metric-card span {
  max-width: 210px;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.faq {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.faq-grid {
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(23, 103, 239, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 28px rgba(6, 26, 68, .05);
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 58px 22px 22px;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue-700);
  font-weight: 900;
}

details[open] summary::after {
  content: "–";
}

.faq-list p {
  padding: 0 22px 22px;
  margin: 0;
}

.final-form {
  padding-bottom: 120px;
}

.form-grid {
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  padding: 44px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 90% 12%, rgba(23, 103, 239, .20), transparent 30%),
    linear-gradient(145deg, var(--blue-950), var(--blue-800));
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.form-copy h2,
.form-copy p {
  color: var(--white);
}

.form-copy p {
  opacity: .78;
}

.quote-cta-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
}

.quote-cta-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 103, 239, .10);
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-cta-card h3 {
  margin: 18px 0 0;
  color: var(--blue-900);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.04;
  letter-spacing: -.02em;
}

.quote-cta-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.quote-cta-button {
  width: 100%;
  min-height: 64px;
  margin-top: 24px;
  font-size: 17px;
  box-shadow: 0 22px 44px rgba(10, 53, 140, .28);
}

.footer {
  padding: 34px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer img {
  width: 160px;
}

.footer a {
  color: var(--blue-800);
  font-weight: 850;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 21, 56, .72);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 34px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.modal-card img {
  width: 180px;
  margin-bottom: 26px;
}

.modal-card h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
}

.modal-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.modal-card .btn {
  width: 100%;
  margin-top: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--blue-900);
  background: var(--blue-100);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    border-radius: 28px;
  }

  .main-nav {
    display: none;
  }

  .brand img {
    width: 148px;
  }

  .hero-grid,
  .two-column,
  .compare-grid,
  .insurers-grid,
  .experience-grid,
  .faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-visual,
  .visual-panel,
  .compare-visual,
  .cars-stack {
    min-height: 520px;
  }

  .section-intro {
    position: relative;
    top: auto;
  }

  .form-grid {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 72px 0;
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
    gap: 12px;
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .card-grid,
  .insurer-board ul,
  .human-cards {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .hero-visual,
  .visual-panel {
    min-height: 500px;
  }

  .hero-person {
    width: 56%;
    right: 1%;
  }

  .vehicle-main {
    width: 102%;
    left: -25%;
  }

  .vehicle-secondary {
    width: 74%;
    right: -23%;
  }

  .floating-card {
    padding: 12px;
  }

  .card-a {
    top: 68px;
    right: 18px;
  }

  .card-b {
    left: 18px;
    bottom: 166px;
  }

  .compare-visual,
  .cars-stack {
    min-height: 430px;
  }

  .cutout-one {
    width: 90%;
    left: 6px;
  }

  .cutout-two {
    width: 108%;
    top: 166px;
    right: -112px;
  }

  .cutout-three {
    width: 108%;
    left: -82px;
  }

  .steps-list article {
    grid-template-columns: 44px 1fr;
    padding: 15px;
  }

  .steps-list article > span {
    width: 44px;
    height: 44px;
  }

  .card-tall,
  .card-small,
  .metric-card {
    min-height: 340px;
  }

  .metric-card strong {
    font-size: 72px;
  }

  .form-grid,
  .quote-cta-card,
  .modal-card {
    border-radius: 26px;
    padding: 22px;
  }
}

/* Hero refinada com Jeep Compass e cards de autoridade */
.hero {
  padding: clamp(44px, 6vh, 70px) 0 clamp(52px, 7vh, 84px);
  height: min(calc(100vh - 74px), 1080px);
  height: min(calc(100svh - 74px), 1080px);
  min-height: 760px;
  max-height: 1080px;
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 58px);
}

.hero-copy h1 {
  max-width: 650px;
  font-size: clamp(34px, 3.55vw, 56px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.hero-copy > p {
  max-width: 610px;
  margin-top: 20px;
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.55;
}

.differentials-card {
  max-width: 590px;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 22px;
}

.differentials-card ul {
  gap: 8px;
}

.differentials-card li {
  font-size: 15px;
}

.insurer-line {
  margin: 20px 0 24px;
}

.insurer-line span {
  padding: 8px 11px;
  font-size: 12px;
}

.hero-visual {
  min-height: 600px;
  display: flex;
  align-items: center;
}

.visual-panel.hero-vehicle-panel {
  isolation: isolate;
  width: 100%;
  min-height: 600px;
  overflow: visible;
  border-radius: 46px;
  background:
    radial-gradient(circle at 68% 30%, rgba(23, 103, 239, .24), transparent 31%),
    radial-gradient(circle at 30% 78%, rgba(8, 38, 95, .16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(232, 242, 255, .78));
  border: 1px solid rgba(23, 103, 239, .16);
  box-shadow: 0 34px 90px rgba(6, 26, 68, .18);
}

.hero-vehicle-panel::before {
  inset: 26px;
  border-radius: 34px;
  border-color: rgba(10, 53, 140, .10);
  background:
    linear-gradient(90deg, rgba(255,255,255,.28), transparent 54%),
    repeating-linear-gradient(90deg, rgba(10, 53, 140, .055) 0 1px, transparent 1px 88px);
  pointer-events: none;
}

.hero-vehicle-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 7%;
  right: 5%;
  bottom: 40px;
  height: 96px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(3, 21, 56, .24), transparent 68%);
  filter: blur(16px);
  transform: translateY(18px);
  pointer-events: none;
}

.hero-vehicle-panel .logo-watermark {
  z-index: 0;
  width: 64%;
  top: 38px;
  left: 55%;
  opacity: .075;
}

.hero-blue-orbit {
  position: absolute;
  z-index: 0;
  width: 76%;
  aspect-ratio: 1;
  right: -10%;
  bottom: -15%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(23, 103, 239, .20), transparent 59%),
    linear-gradient(135deg, rgba(255,255,255,.45), rgba(23,103,239,.06));
  border: 1px solid rgba(23, 103, 239, .10);
}

.hero-car {
  position: absolute;
  z-index: 2;
  width: min(112%, 770px);
  max-width: none;
  right: -8%;
  bottom: 68px;
  filter: drop-shadow(0 34px 28px rgba(3, 21, 56, .20));
}

.authority-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  padding: 16px 17px;
  border-radius: 22px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow: 0 20px 46px rgba(6, 26, 68, .13);
  backdrop-filter: blur(16px);
}

.authority-card small {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.authority-card strong {
  color: var(--blue-950);
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.035em;
}

.authority-card span {
  max-width: 210px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.32;
  font-weight: 720;
}

.hero-card-years {
  top: 78px;
  left: 34px;
}

.hero-card-years strong {
  font-size: 31px;
}

.hero-card-insurers {
  top: 54px;
  right: 28px;
  max-width: 235px;
}

.hero-card-profile {
  left: 44px;
  bottom: 116px;
  max-width: 245px;
}

@media (max-width: 1100px) {
  .hero-copy h1 {
    font-size: clamp(29px, 3.8vw, 42px);
  }

  .hero-car {
    width: 118%;
    right: -13%;
  }
}

@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
  }

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

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(30px, 6vw, 42px);
  }

  .hero-visual,
  .visual-panel.hero-vehicle-panel {
    min-height: 560px;
  }

  .hero-car {
    width: min(106%, 760px);
    right: -5%;
    bottom: 54px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: 1.08;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-visual,
  .visual-panel.hero-vehicle-panel {
    min-height: 480px;
  }

  .visual-panel.hero-vehicle-panel {
    border-radius: 34px;
  }

  .hero-vehicle-panel::before {
    inset: 16px;
    border-radius: 24px;
  }

  .hero-car {
    width: 122%;
    right: -25%;
    bottom: 66px;
  }

  .authority-card {
    padding: 12px 13px;
    border-radius: 18px;
  }

  .authority-card strong {
    font-size: 16px;
  }

  .authority-card span {
    max-width: 160px;
    font-size: 11px;
  }

  .hero-card-years {
    top: 44px;
    left: 18px;
  }

  .hero-card-years strong {
    font-size: 25px;
  }

  .hero-card-insurers {
    top: 36px;
    right: 14px;
    max-width: 176px;
  }

  .hero-card-profile {
    left: 18px;
    bottom: 72px;
    max-width: 190px;
  }
}


/* AJUSTE SOLICITADO — hero sem cards e texto principal menor */
.hero .authority-card,
.hero .floating-card,
.hero-card-years,
.hero-card-insurers,
.hero-card-profile {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero-copy h1 {
  max-width: 610px !important;
  font-size: clamp(27px, 2.55vw, 42px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.04em !important;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 570px !important;
  margin-top: 18px !important;
  font-size: clamp(16px, 1.15vw, 19px) !important;
}

.visual-panel.hero-vehicle-panel {
  overflow: hidden !important;
}

.hero-car {
  width: min(106%, 720px) !important;
  right: -4% !important;
  bottom: 58px !important;
}

@media (max-width: 980px) {
  .hero-copy h1 {
    font-size: clamp(28px, 5.8vw, 40px) !important;
    max-width: 720px !important;
  }
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: clamp(26px, 8vw, 34px) !important;
    line-height: 1.12 !important;
  }
}



/* ===== Hero referência visual aprovada ===== */
.hero {
  padding: clamp(40px, 5vh, 64px) 0 clamp(52px, 7vh, 82px);
  height: min(calc(100vh - 74px), 1080px);
  height: min(calc(100svh - 74px), 1080px);
  min-height: 760px;
  max-height: 1080px;
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 3.8vw, 54px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 590px !important;
  font-size: clamp(28px, 2.9vw, 46px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.045em !important;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 560px !important;
  margin-top: 18px !important;
  color: #5c7096 !important;
  font-size: clamp(16px, 1.15vw, 19px) !important;
  line-height: 1.45 !important;
}

.differentials-card {
  width: min(100%, 505px) !important;
  margin-top: 26px !important;
  padding: 18px 20px 18px 20px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.88) !important;
  border: 1px solid rgba(22, 77, 180, .10) !important;
  box-shadow: 0 16px 40px rgba(10, 30, 80, .08) !important;
}

.differentials-card strong {
  margin-bottom: 10px !important;
  font-size: 15px !important;
}

.differentials-card li {
  font-size: 14px !important;
  font-weight: 700 !important;
}

.insurer-line {
  gap: 10px !important;
  margin: 22px 0 26px !important;
}

.insurer-line span {
  padding: 8px 14px !important;
  font-size: 12px !important;
  background: rgba(255,255,255,.9) !important;
  border: 1px solid rgba(19, 58, 135, .10) !important;
  box-shadow: 0 10px 22px rgba(9, 29, 77, .05) !important;
}

.hero .btn-primary {
  min-width: 210px;
  min-height: 56px;
  justify-content: space-between;
  gap: 14px;
  padding-inline: 22px;
}

.hero .btn-primary::after {
  content: '→';
  font-size: 22px;
  line-height: 1;
}

.hero-visual {
  min-height: 620px;
  display: flex;
  align-items: center;
}

.visual-panel.hero-vehicle-panel {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 620px;
  overflow: hidden !important;
  border-radius: 46px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(233,241,254,.92)),
    radial-gradient(circle at 76% 36%, rgba(88, 143, 255, .16), transparent 30%);
  border: 1px solid rgba(84, 133, 227, .15);
  box-shadow: 0 34px 90px rgba(8, 30, 84, .14);
}

.visual-panel.hero-vehicle-panel::before {
  content: '';
  position: absolute;
  inset: 26px;
  z-index: 0;
  border-radius: 34px;
  border: 1px solid rgba(84, 133, 227, .18);
  background:
    linear-gradient(90deg, rgba(255,255,255,.30), transparent 48%),
    repeating-linear-gradient(90deg, rgba(84,133,227,.08) 0 1px, transparent 1px 96px);
}

.logo-watermark {
  position: absolute;
  z-index: 0;
  width: 54% !important;
  top: 52px !important;
  right: 32px !important;
  left: auto !important;
  transform: none !important;
  opacity: .06 !important;
}

.hero-blue-orbit {
  position: absolute;
  z-index: 0;
  width: 84%;
  aspect-ratio: 1;
  right: -8%;
  bottom: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 124, 255, .16), transparent 60%);
  border: 1px solid rgba(107, 150, 233, .18);
}

.hero-panel-curve {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.34);
  pointer-events: none;
}

.curve-one {
  width: 78%;
  height: 50%;
  left: 10%;
  top: 18%;
  transform: rotate(-8deg);
}

.curve-two {
  width: 86%;
  height: 62%;
  right: -2%;
  bottom: -10%;
  transform: rotate(6deg);
}

.hero-panel-dots {
  position: absolute;
  z-index: 0;
  width: 98px;
  height: 72px;
  background-image: radial-gradient(rgba(104, 150, 238, .28) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: .9;
}

.dots-left {
  left: 52px;
  bottom: 150px;
}

.dots-right {
  right: 84px;
  top: 208px;
}

.hero-authority-card {
  position: absolute;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  width: 225px;
  min-height: 146px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 24px 50px rgba(8, 30, 84, .12);
  backdrop-filter: blur(14px);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
  pointer-events: auto;
}

.hero-authority-card:hover {
  transform: translateY(-8px) rotate(0deg) !important;
  box-shadow: 0 30px 70px rgba(8, 30, 84, .18);
  background: rgba(255,255,255,.92);
}

.hero-card-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
}

.hero-card-icon svg {
  width: 24px;
  height: 24px;
}

.hero-authority-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -.03em;
}

.hero-authority-card span {
  color: #62779f;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.authority-left {
  top: 160px;
  left: 44px;
  transform: rotate(-4.6deg);
  animation: floatCardA 7.2s ease-in-out infinite;
}

.authority-center {
  top: 102px;
  left: 50%;
  transform: translateX(-50%) rotate(.6deg);
  animation: floatCardB 7.8s ease-in-out infinite;
}

.authority-right {
  top: 164px;
  right: 42px;
  transform: rotate(4.2deg);
  animation: floatCardC 8.1s ease-in-out infinite;
}

.hero-car {
  position: absolute;
  z-index: 3;
  width: min(102%, 760px) !important;
  max-width: none;
  right: -2% !important;
  bottom: 44px !important;
  filter: drop-shadow(0 34px 30px rgba(3, 21, 56, .23));
}

@keyframes floatCardA {
  0%,100% { transform: translateY(0) rotate(-4.6deg); }
  50% { transform: translateY(-10px) rotate(-2.8deg); }
}

@keyframes floatCardB {
  0%,100% { transform: translateX(-50%) translateY(0) rotate(.6deg); }
  50% { transform: translateX(-50%) translateY(-12px) rotate(1.6deg); }
}

@keyframes floatCardC {
  0%,100% { transform: translateY(0) rotate(4.2deg); }
  50% { transform: translateY(-9px) rotate(2.4deg); }
}

@media (max-width: 1180px) {
  .hero-authority-card {
    width: 205px;
    min-height: 138px;
    padding: 16px;
  }

  .hero-authority-card strong {
    font-size: 17px;
  }

  .hero-car {
    width: min(108%, 740px) !important;
    right: -6% !important;
  }
}

@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
  }

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

  .hero-copy h1 {
    max-width: 760px !important;
    font-size: clamp(30px, 6.5vw, 44px) !important;
  }

  .hero-visual,
  .visual-panel.hero-vehicle-panel {
    min-height: 560px;
  }

  .authority-left {
    top: 146px;
    left: 30px;
  }

  .authority-center {
    top: 92px;
  }

  .authority-right {
    top: 148px;
    right: 30px;
  }

  .hero-car {
    width: min(108%, 740px) !important;
    right: -4% !important;
    bottom: 36px !important;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8.2vw, 36px) !important;
    line-height: 1.12 !important;
  }

  .hero-copy > p {
    font-size: 16px !important;
  }

  .hero-visual,
  .visual-panel.hero-vehicle-panel {
    min-height: 470px;
  }

  .visual-panel.hero-vehicle-panel {
    border-radius: 34px;
  }

  .visual-panel.hero-vehicle-panel::before {
    inset: 14px;
    border-radius: 24px;
  }

  .logo-watermark {
    width: 62% !important;
    top: 40px !important;
    right: 14px !important;
  }

  .hero-authority-card {
    width: 156px;
    min-height: 112px;
    padding: 12px 12px 12px;
    border-radius: 18px;
    gap: 7px;
  }

  .hero-card-icon {
    width: 24px;
    height: 24px;
  }

  .hero-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-authority-card strong {
    font-size: 14px;
    line-height: 1.25;
  }

  .hero-authority-card span {
    font-size: 10px;
    line-height: 1.35;
  }

  .authority-left {
    top: 142px;
    left: 12px;
  }

  .authority-center {
    top: 54px;
  }

  .authority-right {
    top: 144px;
    right: 12px;
  }

  .dots-left {
    left: 14px;
    bottom: 114px;
  }

  .dots-right {
    right: 16px;
    top: 160px;
  }

  .hero-car {
    width: 124% !important;
    right: -23% !important;
    bottom: 24px !important;
  }
}


/* ===== Ajuste solicitado: direita da hero apenas veículo + cards ===== */
.hero-visual {
  min-height: 610px !important;
  display: flex !important;
  align-items: center !important;
}

.visual-panel.hero-vehicle-panel {
  position: relative !important;
  isolation: isolate !important;
  width: 100% !important;
  min-height: 610px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.visual-panel.hero-vehicle-panel::before,
.visual-panel.hero-vehicle-panel::after,
.hero-vehicle-panel::before,
.hero-vehicle-panel::after,
.logo-watermark,
.hero-blue-orbit,
.hero-panel-curve,
.hero-panel-dots,
.curve-one,
.curve-two,
.dots-left,
.dots-right {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.hero-authority-card {
  z-index: 1 !important;
  width: 218px !important;
  min-height: 132px !important;
  padding: 16px 17px !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, .88) !important;
  border: 1px solid rgba(255, 255, 255, .9) !important;
  box-shadow: 0 18px 42px rgba(8, 30, 84, .10) !important;
  backdrop-filter: blur(14px) !important;
}

.hero-authority-card:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  box-shadow: 0 22px 52px rgba(8, 30, 84, .13) !important;
}

.hero-authority-card strong {
  font-size: 17px !important;
  line-height: 1.25 !important;
}

.hero-authority-card span {
  font-size: 12px !important;
  line-height: 1.35 !important;
}

.authority-left {
  top: 36px !important;
  left: 14px !important;
  transform: rotate(-3deg) !important;
  animation: subtleFloatA 10s ease-in-out infinite !important;
}

.authority-center {
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) rotate(.5deg) !important;
  animation: subtleFloatB 11s ease-in-out infinite !important;
}

.authority-right {
  top: 42px !important;
  right: 8px !important;
  transform: rotate(3deg) !important;
  animation: subtleFloatC 10.5s ease-in-out infinite !important;
}

.hero-car {
  position: absolute !important;
  z-index: 3 !important;
  width: min(108%, 790px) !important;
  max-width: none !important;
  right: -8% !important;
  bottom: 32px !important;
  filter: drop-shadow(0 34px 28px rgba(3, 21, 56, .21)) !important;
}

@keyframes subtleFloatA {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-5px) rotate(-2.4deg); }
}

@keyframes subtleFloatB {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(.5deg); }
  50% { transform: translateX(-50%) translateY(-6px) rotate(.9deg); }
}

@keyframes subtleFloatC {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-5px) rotate(2.4deg); }
}

@media (max-width: 1180px) {
  .hero-authority-card {
    width: 196px !important;
    min-height: 122px !important;
    padding: 14px !important;
  }

  .hero-authority-card strong {
    font-size: 16px !important;
  }

  .hero-car {
    width: min(114%, 760px) !important;
    right: -10% !important;
  }
}

@media (max-width: 980px) {
  .hero-visual,
  .visual-panel.hero-vehicle-panel {
    min-height: 540px !important;
  }

  .authority-left {
    top: 44px !important;
    left: 18px !important;
  }

  .authority-center {
    top: 10px !important;
  }

  .authority-right {
    top: 48px !important;
    right: 18px !important;
  }

  .hero-car {
    width: min(110%, 740px) !important;
    right: -5% !important;
    bottom: 28px !important;
  }
}

@media (max-width: 720px) {
  .hero-visual,
  .visual-panel.hero-vehicle-panel {
    min-height: 430px !important;
  }

  .hero-authority-card {
    width: 148px !important;
    min-height: 104px !important;
    padding: 11px !important;
    border-radius: 17px !important;
  }

  .hero-card-icon,
  .hero-card-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .hero-authority-card strong {
    font-size: 13px !important;
  }

  .hero-authority-card span {
    font-size: 9.5px !important;
  }

  .authority-left {
    top: 38px !important;
    left: 0 !important;
  }

  .authority-center {
    top: 0 !important;
  }

  .authority-right {
    top: 40px !important;
    right: 0 !important;
  }

  .hero-car {
    width: 124% !important;
    right: -24% !important;
    bottom: 22px !important;
  }
}


/* ===== Ajustes finais: hover sutil na hero + seção comparar centralizada ===== */

/* Hero: elimina conflito entre hover e animação para não flickar */
.hero-vehicle-panel .hero-authority-card {
  will-change: transform;
  transition:
    box-shadow .24s ease,
    background-color .24s ease,
    border-color .24s ease,
    filter .24s ease !important;
}

.hero-vehicle-panel .hero-authority-card:hover {
  background: rgba(255,255,255,.94) !important;
  border-color: rgba(255,255,255,.98) !important;
  box-shadow: 0 22px 48px rgba(8, 30, 84, .13) !important;
  filter: saturate(1.02) !important;
}

.hero-vehicle-panel .authority-left:hover {
  transform: rotate(-3deg) !important;
}

.hero-vehicle-panel .authority-center:hover {
  transform: translateX(-50%) rotate(.5deg) !important;
}

.hero-vehicle-panel .authority-right:hover {
  transform: rotate(3deg) !important;
}

.authority-left {
  animation: heroFloatLeftSoft 12s ease-in-out infinite !important;
}

.authority-center {
  animation: heroFloatCenterSoft 13s ease-in-out infinite !important;
}

.authority-right {
  animation: heroFloatRightSoft 12.5s ease-in-out infinite !important;
}

@keyframes heroFloatLeftSoft {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-3px) rotate(-2.7deg); }
}

@keyframes heroFloatCenterSoft {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(.5deg); }
  50% { transform: translateX(-50%) translateY(-3px) rotate(.75deg); }
}

@keyframes heroFloatRightSoft {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-3px) rotate(2.7deg); }
}

/* Seção comparar: sem card de imagem, conteúdo centralizado */
.compare {
  background:
    radial-gradient(circle at 50% 0%, rgba(23, 103, 239, .10), transparent 34%),
    linear-gradient(180deg, #f6faff 0%, #ffffff 100%) !important;
  overflow: hidden;
}

.compare-centered {
  display: flex;
  justify-content: center;
}

.compare-centered .compare-copy {
  width: min(100%, 980px);
  text-align: center;
}

.compare-centered .compare-copy > p {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 720px !important;
}

.compare-centered .steps-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin: 38px 0 30px !important;
}

.compare-centered .steps-list article {
  position: relative;
  min-height: 268px;
  grid-template-columns: 1fr !important;
  align-content: start;
  justify-items: center;
  gap: 18px !important;
  padding: 26px 20px 24px !important;
  text-align: center;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(244,249,255,.82)) !important;
  border: 1px solid rgba(23, 103, 239, .12) !important;
  box-shadow: 0 18px 42px rgba(6, 26, 68, .07) !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.compare-centered .steps-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 103, 239, .22) !important;
  box-shadow: 0 24px 58px rgba(6, 26, 68, .11) !important;
}

.compare-centered .steps-list article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, rgba(23, 103, 239, .42), transparent);
  opacity: .65;
}

.step-icon {
  width: 62px !important;
  height: 62px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--blue-700) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.9), transparent 44%),
    linear-gradient(135deg, rgba(23, 103, 239, .14), rgba(10, 53, 140, .08)) !important;
  border: 1px solid rgba(23, 103, 239, .14) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 30px rgba(13, 76, 198, .10) !important;
}

.step-icon svg {
  width: 31px;
  height: 31px;
}

.compare-centered .steps-list h3 {
  font-size: 20px !important;
  line-height: 1.12 !important;
  letter-spacing: -.03em !important;
}

.compare-centered .steps-list p {
  margin-top: 10px !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.compare-centered .btn-secondary {
  margin-inline: auto;
}

.compare-visual,
.cars-stack {
  display: none !important;
}

@media (max-width: 1050px) {
  .compare-centered .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .compare-centered .steps-list article {
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  .compare-centered .compare-copy {
    text-align: left;
  }

  .compare-centered .compare-copy > p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .compare-centered .steps-list {
    grid-template-columns: 1fr !important;
  }

  .compare-centered .steps-list article {
    min-height: auto;
    text-align: left;
    justify-items: start;
    padding: 22px !important;
  }

  .compare-centered .btn-secondary {
    margin-inline: 0;
  }
}



/* ===== Ajuste experiência: foto institucional no lugar dos cards ===== */
.experience-grid {
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr) !important;
  gap: 38px !important;
  align-items: center !important;
}

.experience-copy h2 {
  max-width: 620px !important;
  font-size: clamp(30px, 2.65vw, 42px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
}

.experience-photo-wrap {
  display: flex;
  justify-content: flex-end;
}

.experience-photo-card {
  width: min(100%, 500px);
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(23, 103, 239, .12);
  background: linear-gradient(145deg, #ffffff, #eef5ff);
  box-shadow: var(--shadow-md);
}

.experience-photo-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 980px) {
  .experience-copy h2 {
    max-width: 760px !important;
    font-size: clamp(30px, 5.2vw, 40px) !important;
  }

  .experience-photo-wrap {
    justify-content: center;
  }

  .experience-photo-card {
    width: min(100%, 460px);
  }
}

@media (max-width: 720px) {
  .experience-copy h2 {
    font-size: clamp(28px, 7.2vw, 34px) !important;
    line-height: 1.1 !important;
  }

  .experience-photo-card {
    border-radius: 26px;
  }
}



/* ===== Logos oficiais das seguradoras: hero e seção de seguradoras ===== */
.insurer-logo-line {
  align-items: center !important;
  gap: 10px !important;
}

.insurer-logo-pill {
  width: auto;
  min-width: 78px;
  height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .88) !important;
  border: 1px solid rgba(10, 53, 140, .12) !important;
  box-shadow: 0 10px 24px rgba(6, 26, 68, .055) !important;
}

.insurer-logo-pill img {
  width: auto;
  max-width: 104px;
  height: auto;
  max-height: 24px;
  object-fit: contain;
}

.insurer-logo-pill:nth-child(2) img {
  max-width: 110px;
  max-height: 25px;
}

.insurer-logo-pill:nth-child(4) img {
  max-width: 112px;
  max-height: 25px;
}

.insurer-logo-pill:nth-child(5) img {
  max-width: 92px;
  max-height: 26px;
}

.insurer-board {
  padding: 34px !important;
}

.insurer-board .insurer-logo-board {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.insurer-board .insurer-logo-board li {
  min-height: 112px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  border-radius: 26px !important;
  background: rgba(255, 255, 255, .94) !important;
  border: 1px solid rgba(255, 255, 255, .72) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .12) !important;
}

.insurer-board .insurer-logo-board li:last-child {
  grid-column: 1 / -1;
}

.insurer-board .insurer-logo-board img {
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 46px;
  object-fit: contain;
}

.insurer-board .insurer-logo-board li:nth-child(2) img {
  max-width: 86%;
  max-height: 54px;
}

.insurer-board .insurer-logo-board li:nth-child(4) img {
  max-width: 84%;
  max-height: 54px;
}

.insurer-board .insurer-logo-board li:nth-child(5) img {
  max-width: 58%;
  max-height: 64px;
}

@media (max-width: 980px) {
  .insurer-logo-line {
    gap: 8px !important;
  }

  .insurer-logo-pill {
    height: 40px;
    min-width: 72px;
    padding: 8px 11px !important;
  }

  .insurer-logo-pill img {
    max-width: 94px;
    max-height: 22px;
  }
}

@media (max-width: 720px) {
  .insurer-logo-line {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insurer-logo-pill {
    width: 100%;
    min-width: 0;
  }

  .insurer-logo-pill:last-child {
    grid-column: 1 / -1;
    width: min(100%, 180px);
  }

  .insurer-board .insurer-logo-board {
    grid-template-columns: 1fr !important;
  }

  .insurer-board .insurer-logo-board li:last-child {
    grid-column: auto;
  }

  .insurer-board .insurer-logo-board li {
    min-height: 96px !important;
  }
}


/* ===== Ajuste final: headline da hero mais enxuta e voltada à conversão ===== */
.hero-copy h1 {
  max-width: 540px !important;
  font-size: clamp(32px, 3vw, 48px) !important;
  line-height: 1.04 !important;
  letter-spacing: -.045em !important;
  text-wrap: balance;
}

@media (max-width: 980px) {
  .hero-copy h1 {
    max-width: 720px !important;
    font-size: clamp(30px, 6vw, 42px) !important;
  }
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: clamp(29px, 8vw, 38px) !important;
    line-height: 1.08 !important;
  }
}


/* ===== Ajuste hero: Tokio Marine ao lado de Azul na linha de baixo ===== */
.hero-insurer-logos {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  margin: 22px 0 26px !important;
}

.hero-logo-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.hero-logo-row-top {
  justify-content: flex-start;
}

.hero-logo-row-bottom {
  justify-content: flex-start;
}

.hero-logo-row-bottom .insurer-logo-pill {
  min-width: 128px;
}

.hero-logo-row-bottom .insurer-logo-pill:first-child img {
  max-width: 118px !important;
  max-height: 26px !important;
}

.hero-logo-row-bottom .insurer-logo-pill:last-child img {
  max-width: 94px !important;
  max-height: 28px !important;
}

@media (max-width: 720px) {
  .hero-insurer-logos {
    display: grid !important;
    gap: 9px !important;
  }

  .hero-logo-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .hero-logo-row-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-logo-row-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-logo-row .insurer-logo-pill,
  .hero-logo-row-bottom .insurer-logo-pill:last-child {
    width: 100% !important;
    min-width: 0 !important;
  }
}


