:root {
  --unit: 4px;
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-48: 48px;
  --spacing-96: 96px;
  --radius-4: 4px;
  --radius-8: 8px;
  --radius-12: 12px;
  --radius-16: 16px;
  --radius-full: 999px;
  --color-primary-main: #034EA2;
  --color-primary-dark: #233254;
  --color-primary-light: #E8F4FC;
  --color-primary-hover: #005992;
  --color-secondary-main: #4297D3;
  --color-success: #0B9247;
  --color-error: #FF161F;
  --color-warning: #FBB900;
  --color-neutral-0: #FFFFFF;
  --color-neutral-50: #F5F7FA;
  --color-neutral-200: #DDE3EC;
  --color-neutral-500: #6B7280;
  --color-neutral-700: #4A5568;
  --color-neutral-900: #1A2332;
  --blue-dark: var(--color-primary-dark);
  --blue-mid: var(--color-primary-main);
  --blue-darker: #0D1F3C;
  --blue-light: var(--color-primary-light);
  --detran-accent: var(--color-secondary-main);
  --detran-accent-dark: #357ABD;
  --gray-light: var(--color-neutral-50);
  --gray-mid: var(--color-neutral-200);
  --text-dark: var(--color-neutral-900);
  --text-mid: var(--color-neutral-700);
  --white: var(--color-neutral-0);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --r: var(--radius-8);
  --r-lg: 24px;
  --container-max: 1200px;
  --header-height: 72px;
  --Family-label: "Open Sans";
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--Family-label, "Open Sans");
  color: var(--text-dark);
  line-height: 1.65;
  background: #fff;
}

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

a {
  text-decoration: none !important;
}

/* ─── BARRA GOVERNO SP ─── */
.gov-bar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  padding: var(--spacing-8) var(--spacing-24);
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-8);
  align-items: center;
}

.gov-bar a {
  color: #fff;
  font-weight: 600;
  transition: opacity .2s;
}

.gov-bar a:hover {
  opacity: .85;
}

/* ─── HEADER ─── */
header {
  background: #fff;
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: none;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

header img {
  height: 44px;
}

.btn-header {
  background: var(--blue-mid);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--Primitives-unit-999, 999px);
  font-family: var(--Family-label, "Open Sans");
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--blue-dark);
}

/* ─── HERO ─── */
.hero {
  background:
    linear-gradient(to right, rgba(8, 22, 54, .82) 0%, rgba(8, 22, 54, .65) 55%, rgba(8, 22, 54, .30) 100%),
    url('../images/hero-bg.png') center/cover no-repeat;
  color: #fff;
  padding: 90px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(91, 163, 204, .12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(91, 163, 204, .18);
  color: var(--detran-accent);
  border: 1px solid rgba(91, 163, 204, .4);
  padding: 5px 18px;
  border-radius: 50px;
  font-family: var(--Family-label, "Open Sans");
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--Family-label, "Open Sans");
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero h1 em {
  color: var(--detran-accent);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(.98rem, 2.2vw, 1.18rem);
  color: rgba(255, 255, 255, .82);
  max-width: 680px;
  margin: 0 auto 42px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  border-radius: var(--Primitives-unit-999, 999px);
  background: var(--Brand-Base, #0058AF);
  color: #fff;
  padding: var(--padding-m, 16px) var(--size-24, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--gap-xs, 8px);
  font-family: var(--Family-label, "Open Sans");
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  transition: background .2s;
}

.btn-primary:hover {
  border-radius: var(--Primitives-unit-999, 999px);
  background: var(--Brand-Dark, #014076);

  /* Button/Hover/Primary */
  box-shadow: 0 0 1px 5px var(--Primitives-Cyan-400, #E6F0FC);
}

.btn-ghost {
  border-radius: var(--Primitives-unit-999, 999px);
  border: 1.5px solid var(--Stroke-Card-e-Divider, #D3D8DB);
  background: var(--Background-Main, #FFF);
  padding: var(--padding-m, 16px) var(--size-24, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--gap-xs, 8px);
  font-family: var(--Family-label, "Open Sans");
  color: var(--Text-Title, #111414);
  font-weight: 600;
  font-size: .98rem;
  transition: all .2s;
}

.btn-ghost:hover {
  border-radius: var(--Primitives-unit-999, 999px);
  border: 1.5px solid var(--Stroke-Card-e-Divider, #D3D8DB);
  background: var(--Background-Main, #FFF);
  color: var(--Text-Title, #111414);

  /* Button/Hover/Secondary */
  box-shadow: 0 0 1px 5px var(--Primitives-Neutral-300, #EAECEE);
}

.hero-scroll {
  margin-top: 58px;
  color: rgba(255, 255, 255, .35);
  font-size: .78rem;
  letter-spacing: .5px;
  animation: bob 2s infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(7px)
  }
}

/* ─── SHARED SECTION ─── */
section {
  padding: 80px 24px;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sec-label {
  font-family: var(--Family-label, "Open Sans");
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 10px;
}

.sec-title {
  font-family: var(--Family-label, "Open Sans");
  font-size: clamp(2.25rem, 3.2vw, 2.1rem);
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 14px;
}

.sec-desc {
  font-size: 1.02rem;
  color: var(--text-mid);
  margin-bottom: 48px;
}

#precos .sec-desc {
  max-width: none;
}

.subsec-porque {
  margin-top: 40px;
}

.subsec-porque-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--blue-light);
  border-radius: 24px;
  border-left: 4px solid var(--blue-mid);
  padding: 22px 26px;
}

.subsec-porque-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 93, 169, .12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.subsec-porque-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-mid);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.subsec-porque-body h3 {
  font-family: var(--Family-label, "Open Sans");
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.subsec-porque-body p {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ─── FEATURES ─── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.feat-card {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue-mid);
  transform: scaleY(0);
  transition: transform .3s;
}

.feat-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-mid);
}

.feat-card:hover::before {
  transform: scaleY(1);
}

.feat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feat-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue-mid);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feat-title {
  font-family: var(--Family-label, "Open Sans");
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 9px;
}

.feat-desc {
  color: var(--text-mid);
  font-size: .93rem;
  line-height: 1.6;
}

/* ─── TIMELINE ─── */
.sec-timeline {
  background: var(--gray-light);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.timeline::after {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 3px;
  background: linear-gradient(to right, var(--blue-mid), var(--detran-accent));
  z-index: 0;
}

.tl-item {
  padding: 20px 20px 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tl-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.tl-item:nth-child(1) .tl-dot {
  background: var(--blue-mid);
}

.tl-item:nth-child(2) .tl-dot {
  background: var(--blue-mid);
}

.tl-item:nth-child(3) .tl-dot {
  background: var(--blue-mid);
}

.tl-date {
  font-family: var(--Family-label, "Open Sans");
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue-mid);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 8px;
}

.tl-title {
  font-family: var(--Family-label, "Open Sans");
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.tl-desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ─── PRICES ─── */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.price-card {
  background: #fff;
  border: 2px solid var(--gray-mid);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  text-align: center;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--blue-mid);
  position: relative;
}

.price-card.featured::before {
  content: 'Mais comum';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-mid);
  color: #fff;
  padding: 4px 18px;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
}

.price-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.price-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue-mid);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.price-card.featured .price-icon {
  background: rgba(0, 93, 169, .1);
}

.price-card.featured .price-icon svg {
  stroke: var(--blue-mid);
}

.price-cat {
  font-family: var(--Family-label, "Open Sans");
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.price-name {
  font-family: var(--Family-label, "Open Sans");
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.price-val {
  font-family: var(--Family-label, "Open Sans");
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1;
}

.price-val sup {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
}

.price-when {
  font-size: .82rem;
  color: var(--text-mid);
  margin-top: 12px;
}

.price-note {
  border-radius: 20px;
  background: var(--Feedback-Warning-Light, #FFF1C9);
  padding: 24px;
  font-size: .89rem;
  color: #57595A;
  vertical-align: middle;
}

/* ─── STEPS (dark) ─── */
.sec-steps {
  background: var(--blue-dark);
  color: #fff;
}


.sec-steps .sec-title {
  color: #fff;
}

.sec-steps .sec-desc {
  color: rgba(255, 255, 255, .82);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step-item {
  background: #fff;
  border: 1px solid #D3D8DB;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 93, 169, 0.08);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.step-num {
  font-family: var(--Family-label, "Open Sans");
  font-size: 1.5rem;
  font-weight: 600;
  color: #111414;
}

.step-arrow {
  display: flex;
  align-items: center;
}

.step-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #0058AF;
}

.step-divider {
  border: 0;
  border-top: 1.5px solid #F0F4FA;
  margin: 0 0 20px 0;
  opacity: 1;
}

.step-title {
  font-family: var(--Family-label, "Open Sans");
  font-size: 1.05rem;
  font-weight: 600;
  color: #111414;
  line-height: 1.4;
  margin-bottom: 12px;
}

.step-desc {
  font-family: var(--Family-label, "Open Sans");
  font-size: 0.95rem;
  color: #57595A;
  line-height: 1.6;
  margin-bottom: 0px !important;
}

.steps-cta {
  margin-top: 48px;
  text-align: center;
}

/* ─── TYPES ─── */
.type-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--color-neutral-200);
}

.type-tab {
  padding: 10px 22px;
  border-radius: 8px 8px 0 0;
  border: 2px solid var(--gray-mid);
  border-bottom: none;
  background: #fff;
  font-family: var(--Family-label, "Open Sans");
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .2s;
}

.type-tab.active,
.type-tab:hover {
  border-color: var(--blue-mid);
  background: var(--blue-mid);
  color: #fff;
}

@media (max-width: 700px) {

  .type-tabs {
    border-bottom: 0;
  }

  .type-tab {
    padding: 10px 12px;
    border-radius: 8px;
    border: 2px solid var(--gray-mid);
  }

  .type-tab.active,
  .type-tab:hover {
    border-color: var(--blue-mid);
    background: var(--blue-mid);
    color: #fff;
  }
}

.type-panel {
  display: none;
}

.type-panel.active {
  display: block;
}

.type-head {
  background-color: var(--blue-light);
  border-radius: 8px;
  padding: 22px 26px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.type-head-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.type-head-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--blue-mid);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.type-tab svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
  flex-shrink: 0;
}

.type-head-text {
  flex: 1;
}

.type-head-name {
  font-family: var(--Family-label, "Open Sans");
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.type-head-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  background: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid var(--gray-mid);
}

.type-desc {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 1rem;
}

.mod-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  align-items: start;
}

.mod-list li {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: .88rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.mod-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005DA9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.mod-list li.hl {
  border-color: var(--detran-accent);
  background: #F6FAFE;
}

.mod-list li.hl::before {
  display: none;
}

/* Accordion — itens clicáveis */
.mod-list li:not(.hl) {
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.li-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.li-name {
  font-size: .98rem;
  color: var(--text-dark);
}

.li-desc {
  display: none;
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #dce7f5;
}

.mod-list li.open {
  border-color: var(--blue-mid);
}

.mod-list li.open .li-desc {
  display: block;
}

.mod-list li.open::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005DA9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

/* Layout destaque + grade — Segurança Veicular */
.mod-layout {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 12px;
  align-items: stretch;
}

.mod-featured {
  display: grid;
  grid-template-columns: 1fr;
}

.mod-featured li.hl {
  height: 100%;
  padding: 22px 18px;
  border-radius: 8px;
  border-width: 2px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.mod-featured li.hl::before {
  display: none;
}

.hl-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 93, 169, .1);
}

.hl-star svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary-main);
  stroke: none;
}

.mod-featured li.hl .hl-title {
  font-size: .97rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.mod-featured li.hl .hl-desc {
  font-size: .83rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.mod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

@media (max-width: 700px) {
  .mod-layout {
    grid-template-columns: 1fr;
  }

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

/* ─── POR QUE MUDAMOS ─── */
.sec-porque {
  background: #fff;
}

.porque-intro {
  font-size: .98rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 740px;
}

.porque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.porque-card {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-left: 4px solid #E2E8F0;
  border-radius: 8px;
  padding: 20px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.porque-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(0, 93, 169, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.porque-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-mid);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.porque-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.porque-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: .9rem;
}

.porque-desc {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.porque-cta-box {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, .9);
  border-radius: 8px;
  padding: 28px 36px;
  text-align: center;
  font-size: .98rem;
  line-height: 1.7;
}

.porque-cta-box strong {
  color: var(--detran-accent);
  font-weight: 600;
}

/* ─── FAQ ─── */
.sec-faq {
  background: var(--gray-light);
}

.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--r);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--Family-label, "Open Sans");
  font-weight: 600;
  color: var(--blue-dark);
  font-size: 1rem;
  gap: 14px;
  transition: background .2s;
  user-select: none;
}

.faq-q:hover {
  background: #F0F4FA;
}

.faq-tog {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s;
}

.faq-tog svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue-mid);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform .3s;
}

.faq-item.open .faq-tog {
  background: var(--blue-mid);
}

.faq-item.open .faq-tog svg {
  stroke: #fff;
  transform: rotate(-180deg);
}

.faq-a {
  display: none;
  padding: 16px 22px 20px;
  color: var(--text-mid);
  font-size: .92rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* ─── CTA FINAL ─── */
.sec-cta {
  background-image: url(../images/bg-gradiente-icon.png);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 90px 24px;
}

.sec-cta .sec-title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.sec-cta .sec-desc {
  color: rgba(255, 255, 255, .88);
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  border-radius: var(--Primitives-unit-999, 999px);
  border: 1.5px solid var(--Stroke-Card-e-Divider, #D3D8DB);
  background: var(--Background-Main, #FFF);
  padding: var(--padding-m, 16px) var(--size-24, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--gap-xs, 8px);
  font-family: var(--Family-label, "Open Sans");
  color: var(--Text-Title, #111414);
  font-weight: 600;
  font-size: .98rem;
  transition: all .2s;
}

.btn-white:hover {
  border-radius: var(--Primitives-unit-999, 999px);
  border: 1.5px solid var(--Stroke-Card-e-Divider, #D3D8DB);
  background: var(--Background-Main, #FFF);

  /* Button/Hover/Secondary */
  box-shadow: 0 0 1px 5px var(--Primitives-Neutral-300, #EAECEE);
}

.btn-outline-white {
  border-radius: var(--Primitives-unit-999, 999px);
  border: 1.5px solid var(--Stroke-Card-e-Divider, #D3D8DB);
  background: transparent;
  padding: var(--padding-m, 16px) var(--size-24, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--gap-xs, 8px);
  font-family: var(--Family-label, "Open Sans");
  color: #ffffff;
  font-weight: 600;
  font-size: .98rem;
  transition: all .2s;
}

.btn-outline-white:hover {
  border-radius: var(--Primitives-unit-999, 999px);
  border: 1.5px solid var(--Stroke-Card-e-Divider, #D3D8DB);
  color: #ffffff;
  /* Button/Hover/Secondary */
  box-shadow: 0 0 1px 5px var(--Primitives-Neutral-300, #EAECEE);
}

/* ─── FOOTER ─── */
footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, .7);
  padding: 44px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

footer img {
  height: 34px;
  margin: 0 auto 18px;
}

.footer-link {
  color: #fff;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--blue-light);
}

.footer-legal {
  font-size: .78rem;
  margin-top: 16px;
  color: rgba(255, 255, 255, .45);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  section {
    padding: 60px 16px;
  }

  .hero {
    padding: 64px 16px 56px;
  }

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

  .timeline::after {
    display: none;
  }

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

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

:focus-visible {
  outline: 3px solid var(--blue-mid);
  outline-offset: 2px;
}

/* SVG em badges e botões */
.type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.type-badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.btn-header,
.btn-white,
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-header svg,
.btn-white svg,
.btn-primary svg,
.btn-outline-white svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
}

/* ═══ UI KIT Detran-SP — Overrides ═══ */
header {
  padding: 0 var(--spacing-24);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: var(--container-max);
  width: 100%;
  gap: var(--spacing-24);
  flex-wrap: nowrap;
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

header img {
  height: 40px;
}

.header-nav {
  display: flex;
  gap: var(--spacing-24);
  align-items: center;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: var(--spacing-8) 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--color-primary-main);
  border-bottom-color: var(--color-primary-main);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  flex-shrink: 0;
}

.hero {
  background: var(--color-neutral-0) !important;
  color: var(--text-dark) !important;
  padding: var(--spacing-96) var(--spacing-24) !important;
  text-align: left !important;
}

.hero::before {
  background: radial-gradient(circle, rgba(3, 78, 162, .08) 0%, transparent 70%) !important;
  inset: auto;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  opacity: 1 !important;
}

.hero-inner {
  max-width: var(--container-max);
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

.breadcrumb {
  font-size: .85rem;
  color: var(--color-neutral-500);
  margin-bottom: var(--spacing-16);
  display: flex;
  gap: var(--spacing-8);
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-primary-main);
  font-weight: 600;
}

.breadcrumb .sep {
  color: var(--color-neutral-500);
}

.hero h1 {
  color: var(--color-primary-dark);
  text-align: left;
  max-width: 600px;
}

.hero h1 em {
  color: var(--color-primary-main);
}

.hero-sub {
  color: var(--text-mid);
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.hero-btns {
  justify-content: flex-start;
}

.hero-badge {
  background: var(--color-primary-light);
  color: var(--color-primary-main);
  border-radius: var(--radius-full);
  letter-spacing: .6px;
}


.hero-scroll {
  display: none !important;
}

.inner {
  max-width: var(--container-max);
}

.sec-label {
  color: #0058AF;
  border-radius: var(--Primitives-unit-20, 20px);
  border: 1.5px solid var(--Primitives-Blue-600, #0058AF);
  background: var(--Primitives-Cyan-400, #E6F0FC);
  padding: var(--spacing-4) var(--spacing-12);
  display: inline-block;
  letter-spacing: 1.2px;
}

.sec-steps {
  background-image: url(../images/bg-gradiente-icon.png);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}



footer {
  background: var(--color-primary-dark);
  border-top: 4px solid var(--color-primary-main);
  padding: var(--spacing-48) var(--spacing-24);
}

.footer-inner {
  max-width: var(--container-max);
}

.faq-item.open {
  border-color: var(--color-primary-main);
  box-shadow: var(--shadow);
}


.faq-item.open .faq-tog {
  background: var(--color-primary-main);
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

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

  .hero-visual {
    min-height: 220px;
  }
}

/* footer fixed on bottom css*/
.footer-fixed .site-footer {
  position: fixed;
  width: 100%;
  bottom: 0;
}

.footer-fixed .page-content {
  position: relative;
  z-index: 1;
  background-color: var(--Neutral-100);
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer h1 a,
footer h2 a,
footer h3 a,
footer h4 a,
footer h5 a,
footer h6 a {
  color: #b0b0b0;
}

footer p,
footer strong,
footer b,
footer {
  color: #b0b0b0;
}

footer h1 a,
footer h2 a,
footer h3 a,
footer h4 a,
footer h5 a,
footer h6 a,
footer p a {
  color: #b0b0b0;
}

footer a,
footer a:visited {
  color: #b0b0b0;
}

footer p a {
  color: #b0b0b0;
}

footer a:active,
footer a:focus,
footer a:hover {
  color: #b0b0b0;
}

/* widget color */
footer .widget_categories ul li a,
footer .widget_archive ul li a,
footer .widget_meta ul li a,
footer .widget_pages ul li a,
footer .widget_recent_comments ul li a,
footer .widget_nav_menu li a,
footer .widget_recent_entries ul li a,
footer .widget_services ul li a {
  color: #b0b0b0;
}

footer p {
  margin-bottom: var(--fs-10);
}

footer p,
footer li {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 16px;
}

footer li i {
  font-size: var(--fs-24);
  color: var(--Neutral-100);
  margin-right: var(--fs-40);
}

footer li:last-child i {
  margin-right: 0px !important;
}

@media only screen and (max-width: 780px) {

  footer li i {
    font-size: 18px;
    margin-right: var(--fs-24);
    margin-top: var(--fs-32);
  }
}

footer#footer {
  background-position: center;
  background-size: cover;
}

footer p {
  line-height: var(--fs-24);
  margin-bottom: var(--fs-10);
}

footer .widget ul {
  list-style: none;
  margin-top: 5px;
}

/*widget li in footer*/

footer .widget_categories ul li,
footer .widget_archive ul li,
footer .widget_meta ul li,
footer .widget_pages ul li,
footer .widget_recent_comments ul li,
footer .widget_nav_menu li,
footer .widget_recent_entries ul li,
footer .widget_services ul li {
  border-bottom: 1px dashed rgba(102, 102, 102, 0.3);
}

/*widget Getintuch*/
.footer-top {
  background: #000;
  background-size: cover;
  background-position: center;
  padding: 50px 0 var(--fs-20);
}

.footer-bottom {
  background-color: #000;
  padding: 25px 0;
  color: #b0b0b0;
  font-size: 14px;
}

.footer-bottom ul {
  margin: 0;
}

/* Footer Full */
.footer-full .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

@media only screen and (max-width: 991px) {
  .col-md-3.col-sm-6.footer-col-4:nth-child(3) {
    clear: both;
  }

  .footer-full .text-left,
  .footer-full .text-right,
  .footer-full .text-center {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-full .text-right {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {

  .mobile_none {
    display: none;
  }

  .footer-clear {
    display: block !important;
    clear: both;
  }

  #footer .footer-4-col {
    width: 100%;
  }

  .footer-bottom [class*="clo-"] {
    width: 100%;
  }
}

/* Custom Footer Override */
.site-footer {
  background-color: #000 !important;
  color: #fff !important;
  padding: 50px 0 20px 0 !important;
  text-align: left !important;
}

.site-footer a {
  transition: color 0.2s ease !important;
}

.site-footer .footer-top {
  background: #000 !important;
  padding-bottom: 30px !important;
}

.site-footer .footer-top h5 {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 20px !important;
}

.site-footer .footer-top ul {
  padding-left: 0 !important;
  list-style: none !important;
  margin: 0 !important;
}

.site-footer .footer-top li {
  margin-bottom: 12px !important;
  font-size: 14px !important;
  line-height: 22px !important;
}

.site-footer .footer-top a {
  color: #b0b0b0 !important;
  text-decoration: none !important;
}

.site-footer .footer-top a:hover {
  color: #fff !important;
}

.site-footer .footer-divider {
  border-top: 1px solid #333 !important;
  margin: 10px 0 20px 0 !important;
}

.site-footer .footer-bottom {
  background-color: #000 !important;
  padding: 10px 0 30px 0 !important;
}

.site-footer .social-icons {
  display: flex !important;
  gap: 20px !important;
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.site-footer .social-icons li {
  display: inline-block !important;
}

.site-footer .social-icons a {
  color: #fff !important;
  font-size: 20px !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease !important;
}

.site-footer .social-icons a:hover {
  opacity: 0.8 !important;
}

.site-footer .copyright-text {
  color: #888 !important;
  font-size: 13px !important;
  text-align: left !important;
  margin-top: 15px !important;
}