:root {
  --brand-on-green: #18a06a;
  --color-navy: #182f4d;
  --color-blue: #177eb3;
  --color-gray: #76787a;
  --color-gray-2: #b8b8b7;
  --color-orange: #f7a600;
  --color-yellow: #ffcc00;
  --color-primary: var(--color-orange);
  --color-secondary: var(--color-blue);
  --color-tertiary: var(--color-navy);
  --color-bg: #0e2036;
  --color-white: #fff;
  --color-text: #e8eef5;
  --radius: 16px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.brand-on {
  color: var(--brand-on-green);
  font-weight: 800;
}

.brand-on--caps {
  letter-spacing: 0.04em;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font: 400 16px/1.5 Nunito Sans, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
}

.global-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  --bg-img: url("https://www.pedagiopay.com/assets/faa756af-79a6-46cf-899d-83ba45475e56-DINip8dj.png");
  --bg-color: #0b2239;
}

.global-bg-layer {
  position: absolute;
  inset: -8% -4%;
  background: var(--bg-color) var(--bg-img) center / cover no-repeat;
  filter: saturate(105%);
  will-change: transform;
  animation: bgFloat 20s ease-in-out infinite alternate;
}

.global-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 80vh;
  padding: 48px clamp(20px, 5vw, 64px);
}

.grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #182f4d;
  background-image: url("https://www.pedagiopay.com/assets/faa756af-79a6-46cf-899d-83ba45475e56-B435nTyL.png");
  background-repeat: no-repeat;
  background-position: center top !important;
  background-size: cover;
}

.hero__left,
.hero__right {
  position: relative;
  z-index: 2;
}

.hero__left {
  max-width: 760px;
}

.hero__left .brand {
  margin-bottom: 0;
}

.hero__left .brand__logo,
.hero__left .brand img {
  display: block;
  max-width: min(70%, 360px);
  width: auto;
  height: auto;
  margin: 0 0 clamp(14px, 2.2vw, 20px);
}

.hero__title {
  color: #fff;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.12;
  margin: 0 0 12px;
}

.hero__subtitle {
  color: var(--color-text);
  font-size: 32px;
  margin: 0 0 28px;
  opacity: 0.95;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px !important;
  border-radius: 12px !important;
  font-size: 12.5px !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em !important;
  background: #ff9f1c29 !important;
  color: #f7a600 !important;
  border: 1px solid #f7a600 !important;
  box-shadow: none !important;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.08s ease, box-shadow 0.2s ease, filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  height: 40px;
}

.btn:hover {
  background: #fff !important;
  color: var(--color-primary) !important;
}

.btn:active {
  transform: translateY(1px);
}

/* Hero: primário sólido e contorno azul (como no layout original) */
main.hero .btn--primary {
  background: var(--color-primary) !important;
  color: #fff !important;
  border: 2px solid var(--color-primary) !important;
}

main.hero .btn--primary:hover {
  background: transparent !important;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary) !important;
}

main.hero .btn--outline {
  background: transparent !important;
  border: 2px solid var(--color-secondary) !important;
  color: var(--color-secondary) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

main.hero .btn--outline:hover {
  background: rgba(0, 0, 0, 0.08) !important;
  border: 2px solid #fff !important;
  color: #fff !important;
}

.btn--outline,
.btn--ghost {
  background: transparent !important;
  border: 2px solid var(--color-secondary) !important;
  color: var(--color-secondary) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  height: 42px;
}

.btn--outline:hover,
.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.08) !important;
  border: 2px solid #fff !important;
  color: #fff !important;
}

.btn--primary {
  padding: 14px !important;
}

.benefits .btn--primary {
  background: transparent !important;
}

.benefits a.btn--primary:hover {
  background-color: #ff9f1c29 !important;
}

.hero__right {
  display: flex;
  justify-content: flex-start;
}

.login {
  width: min(440px, 92vw);
  margin-left: auto;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
  box-shadow: 0 8px 25px rgba(11, 35, 57, 0.12);
  border-radius: 12px;
  padding: 30px;
  color: #eaf1f8;
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.login.login--cta-only {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(300px, 52vh);
  padding: 40px 28px;
}

.login__cta-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn--pay-toll {
  width: 100%;
  max-width: 380px;
  min-height: 60px !important;
  height: auto !important;
  padding: 20px 40px !important;
  font-size: clamp(15px, 3.2vw, 19px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.login__title {
  margin: 0 0 18px;
  text-align: center;
  color: #fff;
  font-weight: 800;
}

.login__tabs {
  display: flex;
  gap: 0;
  background: transparent;
  padding: 0;
  border-radius: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.tab {
  flex: 1;
  padding: 12px 16px;
  border: 0;
  background: var(--color-secondary);
  color: #d7e6f4;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
}

.tab:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.tab.is-active {
  background: var(--color-tertiary);
  color: #fff;
}

.tab:hover {
  background: #fff;
  color: var(--color-secondary);
}

.tab.is-active:hover {
  background: var(--color-tertiary);
  color: #fff;
  cursor: default;
}

.tab:not(.is-active):hover {
  color: var(--color-secondary);
}

.field {
  position: relative;
  margin-bottom: 12px;
}

.field label {
  font-weight: 800 !important;
  color: #cbd5e1 !important;
}

.login .field input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(234, 241, 248, 0.35);
  background: rgba(0, 0, 0, 0.35) !important;
  color: #eaf1f8 !important;
  -webkit-text-fill-color: #eaf1f8 !important;
  font-size: 15px;
  padding: 14px 0 14px 40px;
  outline: 0;
  transition: background-color 9999s ease-in-out 0s !important;
}

.login .field input::placeholder {
  color: #eaf1f8;
  opacity: 0.75;
}

.login .field input:focus,
.login .field input:active,
.login .field input:not(:placeholder-shown) {
  background: rgba(0, 0, 0, 0.35) !important;
  color: #eaf1f8 !important;
}

.field--user:before,
.field--password:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.9;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.field--user:before {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23eaf1f8' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5Zm0 2c-5 0-9 2.5-9 5.5V22h18v-2.5C21 16.5 17 14 12 14Z'/></svg>");
}

.field--password:before {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23eaf1f8' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17 8V7a5 5 0 0 0-10 0v1H5v14h14V8Zm-8 0V7a3 3 0 0 1 6 0v1Z'/></svg>");
}

.field--password input {
  position: relative;
  z-index: 1;
  padding-right: 56px;
}

.field.field--password .toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  overflow: hidden;
}

.field.field--password .toggle-password:active {
  transform: translateY(-50%) scale(0.98);
}

.field.field--password .toggle-password svg {
  width: 20px;
  height: 20px;
}

.field.field--password .toggle-password .icon-eye-off {
  display: none;
}

.field--password.is-revealed .toggle-password .icon-eye {
  display: none;
}

.field--password.is-revealed .toggle-password .icon-eye-off {
  display: block;
}

.btn--submit {
  width: 100%;
  background: var(--color-primary) !important;
  color: #fff !important;
  margin-top: 6px;
  height: 40px;
  border: 1px solid var(--color-primary) !important;
}

.btn--submit:hover:not(:disabled) {
  background: #fff !important;
  color: var(--color-primary) !important;
}

.btn--submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.login .btn--ghost {
  display: flex;
  text-align: center;
  border: 2px solid var(--color-secondary) !important;
  border-radius: 12px;
  padding: 10px 16px;
  margin-top: 10px;
  color: var(--color-secondary) !important;
  text-decoration: none;
  background: transparent !important;
  height: 40px;
}

.login .btn--ghost:hover {
  border: 2px solid #fff !important;
  color: #fff !important;
}

.login__hint {
  margin: 12px 0 0;
  font-size: 14px;
}

.login__hint a {
  color: var(--color-secondary);
  font-weight: 700;
  text-decoration: underline;
}

.login__hint a:hover {
  color: var(--color-primary);
}

.login__form .forgot {
  display: flex;
  justify-content: flex-end;
  margin: 6px 0 8px;
}

.login__form .forgot a {
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: underline;
}

.highlight {
  background: linear-gradient(to bottom, #dedede 0% 50%, #fff 50% 100%);
  padding: clamp(48px, 7vw, 88px) 60px 60px;
}

.highlight__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.highlight__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.highlight__content {
  padding: clamp(24px, 4vw, 48px);
}

.highlight__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #76787a;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.highlight__eyebrow .brand-on {
  color: var(--brand-on-green);
}

.highlight__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #0b2239;
  margin-bottom: 14px;
  line-height: 1.2;
}

.highlight__text {
  font-size: 18px;
  line-height: 1.5;
  color: #5a6a7a;
  max-width: 420px;
}

.highlight__text .is-accent {
  color: var(--color-primary);
  font-weight: 700;
}

.benefits {
  --c-title: #1f6c8f;
  --c-icon: #0f4d6a;
  --c-card-title: var(--color-primary, #f59e0b);
  --c-text: #5e6a75;
  padding: clamp(24px, 6vw, 48px) 0;
  background: #fff;
}

.benefits__container {
  width: min(1100px, 92vw);
  margin-inline: auto;
  text-align: center;
}

.benefits__title {
  font-weight: 800;
  color: var(--color-tertiary);
  font-size: clamp(22px, 3.4vw, 32px);
  margin: 0 0 clamp(16px, 3vh, 28px);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2.2vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefit {
  background: #fff;
  border: 1px solid rgba(15, 77, 106, 0.12);
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  padding: clamp(16px, 2.6vw, 24px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.7s ease;
}

.benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border-color: rgba(15, 77, 106, 0.22);
}

.benefit__icon {
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: var(--color-tertiary);
  transition: color 0.2s ease;
}

.benefit:hover .benefit__icon {
  color: var(--color-secondary);
}

.benefit__title {
  margin: 0;
  font-weight: 800;
  color: var(--c-card-title);
  font-size: clamp(14px, 1.6vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.benefit__text {
  margin: 6px 0 0;
  color: var(--c-text);
  font-weight: 600;
  font-size: clamp(12px, 1.4vw, 14px);
}

.benefits__cta {
  margin-top: clamp(16px, 3.5vh, 28px);
}

.benefits__btn {
  padding-inline: 22px;
  font-weight: 800;
  border-radius: 8px;
}

#highlights,
.highlights {
  --slides: 4;
  --slide-h: clamp(104px, 16vh, 148px);
  --hero-pt: clamp(20px, 4.5vh, 56px);
  --overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  position: relative;
  margin: 0;
  min-height: calc(var(--slide-h) * (1 + var(--slides)));
  color: #fff;
  text-align: center;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-image: linear-gradient(180deg, rgba(11, 34, 57, 0.75), rgba(11, 34, 57, 0.85)),
    url("https://www.pedagiopay.com/assets/faa756af-79a6-46cf-899d-83ba45475e56-CnsWj-L4.jpg");
}

#highlights .highlights__overlay {
  position: absolute;
  inset: 0;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.highlights__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  pointer-events: none;
  z-index: 0;
}

.highlights__container {
  width: min(1100px, 92vw);
  margin-inline: auto;
  padding-inline: clamp(12px, 2vw, 24px);
}

.highlights__hero {
  min-height: var(--slide-h);
  display: grid;
  align-content: center;
  z-index: 1;
  position: relative;
  padding-top: var(--hero-pt);
}

.highlights__title {
  font-size: 24px;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.highlights__title b {
  color: var(--color-primary);
}

.highlights__title b .brand-on {
  color: var(--brand-on-green);
}

.highlights__slides {
  position: relative;
  z-index: 1;
}

.slide {
  min-height: var(--slide-h);
  display: grid;
  align-content: center;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.slide.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.slide__headline {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.15px;
  margin: 0 0 2px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.slide__subline {
  font-size: 20px;
  font-weight: 800;
  color: #e8eef5;
  margin: 0;
  text-transform: uppercase;
}

.slide__subline .brand-on {
  color: #4ade80;
}

.highlights + * {
  margin-top: 0 !important;
  position: relative;
  z-index: 1;
}

* + .highlights {
  margin-top: 0 !important;
}

.faq {
  background: linear-gradient(to top, #dedede 0% 50%, #fff 50% 100%);
}

.faq__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  column-gap: 56px;
  align-items: flex-start;
}

.faq__title {
  line-height: 1.1;
  font-weight: 800;
  color: var(--color-tertiary);
  font-size: clamp(22px, 3.4vw, 32px);
  margin: 0 0 8px;
}

.faq__intro {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6d7279;
  max-width: 440px;
  margin: 0 0 12px;
}

.faq__list {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.faq__item + .faq__item {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq__question {
  width: 100%;
  padding: 18px 0;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--color-navy);
  text-align: left;
  cursor: pointer;
}

.faq__question span:first-child {
  flex: 1;
}

.faq__icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translate(-50%, -60%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq__item.is-open .faq__icon::before {
  transform: translate(-50%, -20%) rotate(-135deg);
}

.faq__answer {
  font-size: 0.9rem;
  color: #5a6a7a;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-bottom: 0;
}

.faq__item.is-open .faq__answer {
  max-height: 800px;
}

.faq__answer p {
  margin: 0 0 18px;
}

.faq__media {
  display: flex;
  justify-content: center;
}

.faq__figure {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  background-color: #d8dee5;
  max-width: 420px;
}

.faq__figure img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  filter: brightness(1.05);
}

.site-footer {
  background: var(--color-tertiary, #0f3558);
  color: #fff;
  padding: 24px 0;
  font-size: 14px;
}

.footer__container {
  width: min(1100px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.footer__logo {
  display: block;
  width: min(90vw, 260px);
  height: 78px;
  flex-shrink: 0;
  background: url("../logoonpay.png") no-repeat center / contain;
}

.footer__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.btn-to-top {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 6px 12px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.25s ease;
}

.btn-to-top:hover {
  background: var(--color-primary, #f7a600);
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__bg {
    animation: heroBgZoom 18s ease-in-out infinite alternate;
    transform-origin: center center;
  }

  .hero .brand__logo,
  .hero .hero__title,
  .hero .hero__subtitle,
  .hero .hero__actions {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s forwards ease-out;
  }

  .hero .brand__logo {
    animation-delay: 0.1s;
  }

  .hero .hero__title {
    animation-delay: 0.3s;
  }

  .hero .hero__subtitle {
    animation-delay: 0.5s;
  }

  .hero .hero__actions {
    animation-delay: 0.7s;
  }

  .btn--primary,
  .btn--outline {
    position: relative;
    overflow: hidden;
    z-index: 0;
  }

  .btn--primary::after,
  .btn--outline::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80px 80px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: -1;
  }

  .btn--primary:hover::after,
  .btn--outline:hover::after {
    opacity: 1;
  }

  .benefits__title,
  .benefit {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
  }

  .benefits__grid .benefit:nth-child(1) {
    transition-delay: 0.1s;
  }

  .benefits__grid .benefit:nth-child(2) {
    transition-delay: 0.22s;
  }

  .benefits__grid .benefit:nth-child(3) {
    transition-delay: 0.34s;
  }

  .benefits__title.is-visible,
  .benefit.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .benefit .benefit__icon svg {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    transition: stroke-dashoffset 0.9s ease, transform 0.25s ease;
  }

  .benefit.is-visible .benefit__icon svg {
    stroke-dashoffset: 0;
  }

  .benefit:hover .benefit__icon svg {
    transform: translateY(-1px);
  }

  .benefits .benefits__btn {
    position: relative;
    overflow: hidden;
    z-index: 0;
  }

  .benefits .benefits__btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(90px 90px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: -1;
  }

  .benefits .benefits__btn:hover::after {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefits__title,
  .benefit {
    opacity: 1 !important;
    transform: none !important;
  }

  .slide {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 1300px) {
  .highlights {
    --slide-h: clamp(96px, 14vh, 132px);
    --hero-pt: clamp(18px, 4vh, 48px);
  }
}

@media (max-width: 960px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
    text-align: center;
  }

  .hero__right {
    margin: 0 auto;
    justify-content: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__left .brand__logo,
  .hero__left .brand img {
    max-width: min(50%, 280px);
    margin: 0 auto clamp(12px, 2vw, 18px);
  }

  .highlights {
    --slide-h: clamp(90px, 12vh, 118px);
    --hero-pt: clamp(16px, 3.5vh, 44px);
  }

  .faq__inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding: 56px 16px 64px;
  }

  .faq__media {
    order: -1;
  }

  .faq__figure {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .highlight__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .highlight__content {
    padding: 28px 20px;
  }

  .highlight__text {
    margin: 0 auto;
  }

  .highlight {
    padding: clamp(40px, 8vw, 64px) 30px 30px;
  }

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

  .benefit {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero__left .brand__logo,
  .hero__left .brand img {
    max-width: min(40%, 260px);
    margin: 0 auto clamp(12px, 2vw, 18px);
  }

  .hero__actions {
    text-align: center;
    justify-content: center;
  }

  .grid {
    gap: 20px;
    text-align: left;
    padding-top: 20px;
  }

  .btn--outline,
  .btn--primary {
    width: 250px;
  }

  main.hero .btn--pay-toll {
    width: 100% !important;
    max-width: min(92vw, 360px) !important;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .highlights {
    --slide-h: clamp(84px, 11vh, 108px) !important;
    --hero-pt: clamp(14px, 3vh, 40px);
  }

  .slide__headline {
    font-size: 32px;
  }

  .slide__subline {
    font-size: 16px;
  }

  .hero__left {
    text-align: center;
  }

  .site-footer {
    padding: 20px 12px;
  }

  .footer__logo {
    width: min(85vw, 220px);
    height: 66px;
  }

  .btn-to-top {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 8px;
  }
}

@media (max-width: 640px) {
  .faq__title {
    font-size: 2.1rem;
  }

  .faq__list {
    padding: 16px 18px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 14px;
    font-size: 10px !important;
  }

  .btn--pay-toll {
    padding: 18px 24px !important;
    font-size: 14px !important;
    min-height: 54px !important;
  }

  .login {
    padding: 24px;
  }

  .login.login--cta-only {
    min-height: 240px;
    padding: 32px 20px;
  }

  .hero__left .brand__logo,
  .hero__left .brand img {
    max-width: min(70%, 300px);
    margin: 0 auto clamp(12px, 2.5vw, 18px);
  }

  .tab {
    padding: 10px 12px;
  }

  .footer__logo {
    width: min(88vw, 200px);
    height: 60px;
  }
}

@media (max-width: 992px) {
  .footer__container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    row-gap: 12px;
  }

  .footer__brand {
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  .footer__actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

@keyframes heroBgZoom {
  0% {
    transform: scale(1) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-2%);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bgFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px) scale(1.02);
  }
  to {
    transform: translateY(24px);
  }
}

/* Rodapé — links legais */
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.footer__legal a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.footer__legal a:hover {
  color: var(--color-primary, #f7a600);
}

.footer__legal a[aria-current="page"] {
  color: var(--color-primary, #f7a600);
  text-decoration: none;
  cursor: default;
}

/* Páginas legais (termos / privacidade) */
body.page-legal {
  color: #1a2a3a;
  background: #e8ecf2;
  min-height: 100%;
}

.legal-wrap {
  width: min(760px, 94vw);
  margin: 0 auto;
  padding: 20px 0 8px;
}

.legal-header {
  margin-bottom: 12px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-tertiary);
  text-decoration: none;
}

.legal-back:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

main.legal-doc {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 36px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(11, 35, 57, 0.08);
  color: #1a2a3a;
  line-height: 1.65;
}

.legal-doc h1 {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  margin: 0 0 8px;
  color: var(--color-tertiary);
  font-weight: 800;
}

.legal-doc .legal-updated {
  font-size: 14px;
  color: var(--color-gray);
  margin: 0 0 28px;
}

.legal-doc h2 {
  font-size: 1.08rem;
  margin: 1.65em 0 0.45em;
  color: var(--color-tertiary);
  font-weight: 800;
}

.legal-doc p,
.legal-doc li {
  margin: 0 0 12px;
  font-size: 15px;
  color: #3a4a5a;
}

.legal-doc ul {
  padding-left: 1.25em;
  margin: 0 0 12px;
}

.legal-doc a {
  color: var(--color-secondary);
  font-weight: 600;
}

.legal-doc a:hover {
  text-decoration: underline;
}

body.page-legal .site-footer {
  margin-top: 32px;
}
