:root {
  --ink: #092c37;
  --ink-2: #164652;
  --petrol: #0b5962;
  --petrol-2: #08767c;
  --mint: #dbf5eb;
  --lime: #c7f45b;
  --lime-dark: #a8dc38;
  --cream: #f7f7f1;
  --white: #ffffff;
  --text: #18383f;
  --muted: #657a80;
  --line: #dce7e6;
  --warning: #fff4d8;
  --shadow-sm: 0 12px 30px rgba(9, 44, 55, 0.08);
  --shadow: 0 24px 70px rgba(9, 44, 55, 0.14);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(8, 118, 124, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 104px 0;
}

.section-sm {
  padding: 68px 0;
}

.section-white {
  background: var(--white);
}

.section-ink {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.section-ink::before {
  position: absolute;
  inset: -30% auto auto 55%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 244, 91, 0.12), transparent 68%);
  content: "";
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--petrol-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-dark);
  box-shadow: 0 0 0 5px rgba(199, 244, 91, 0.18);
  content: "";
}

.section-ink .eyebrow,
.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.6vw, 5.25rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.22rem, 2vw, 1.6rem);
}

.section-ink h1,
.section-ink h2,
.section-ink h3,
.hero h1,
.hero h2,
.hero h3 {
  color: var(--white);
}

.lead {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.section-ink .lead,
.hero .lead {
  color: #bed0d1;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-heading > div:first-child {
  max-width: 760px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 25px rgba(199, 244, 91, 0.2);
}

.btn-primary:hover {
  background: #d4ff69;
  box-shadow: 0 16px 32px rgba(199, 244, 91, 0.28);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--petrol-2);
  font-weight: 800;
}

.btn-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled,
.site-header.inner-header {
  border-color: rgba(9, 44, 55, 0.08);
  background: rgba(247, 247, 241, 0.93);
  box-shadow: 0 10px 35px rgba(9, 44, 55, 0.06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 850;
  line-height: 1;
}

.site-header.scrolled .brand,
.site-header.inner-header .brand {
  color: var(--ink);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 20px 20px 20px 7px;
  background: var(--lime) url("logo-marcas-express-hd.png") center / contain no-repeat;
  box-shadow: 0 9px 22px rgba(199, 244, 91, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.brand-mark svg {
  display: none;
}

.brand-mark::before {
  display: none;
  content: "";
}

.brand-mark::after {
  display: none;
  content: "";
}

.brand > span:not(.brand-mark):not(.brand-wordmark) {
  color: transparent;
  background: linear-gradient(90deg, var(--white) 0 53%, var(--lime) 53% 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header.scrolled .brand > span:not(.brand-mark):not(.brand-wordmark),
.site-header.inner-header .brand > span:not(.brand-mark):not(.brand-wordmark) {
  background-image: linear-gradient(90deg, var(--ink) 0 53%, var(--petrol-2) 53% 100%);
}

.brand small {
  display: none;
}

.brand-wordmark {
  display: grid;
  gap: 2px;
  color: currentColor;
  font-size: 1.03rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 0.92;
}

.brand-wordmark strong {
  color: inherit;
  font: inherit;
}

.brand-wordmark strong:last-child {
  color: var(--lime);
  letter-spacing: 0.11em;
}

.site-header.scrolled .brand-wordmark strong:last-child,
.site-header.inner-header .brand-wordmark strong:last-child {
  color: var(--petrol-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > a {
  position: relative;
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-header.scrolled .nav-links > a,
.site-header.inner-header .nav-links > a {
  color: #536b70;
}

.nav-links > a:hover,
.nav-links > a[aria-current="page"],
.site-header.scrolled .nav-links > a:hover,
.site-header.scrolled .nav-links > a[aria-current="page"],
.site-header.inner-header .nav-links > a:hover,
.site-header.inner-header .nav-links > a[aria-current="page"] {
  color: var(--petrol-2);
}

.nav-links > a[aria-current="page"]::after {
  position: absolute;
  right: 12px;
  bottom: 3px;
  left: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--lime-dark);
  content: "";
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header:not(.scrolled):not(.inner-header) .nav-cta .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .menu-toggle,
.site-header.inner-header .menu-toggle {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 810px;
  padding: 148px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(20, 151, 151, 0.45), transparent 32%),
    linear-gradient(128deg, #062832 0%, #0a4852 65%, #0b6268 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 78%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -150px;
  bottom: -310px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 95px rgba(255, 255, 255, 0.025), inset 0 0 0 190px rgba(255, 255, 255, 0.025);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 1.1fr) minmax(370px, 0.72fr);
}

.hero-copy h1 {
  max-width: 800px;
}

.hero-copy h1 em {
  position: relative;
  color: var(--lime);
  font-style: normal;
}

.hero-copy .lead {
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d2e2e3;
  font-size: 0.93rem;
  font-weight: 650;
}

.check {
  display: inline-grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.74rem;
  font-weight: 900;
}

.lead-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  color: var(--text);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.lead-card::before {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ecf8e;
  box-shadow: 0 0 0 5px rgba(62, 207, 142, 0.14);
  content: "";
}

.lead-card h2,
.lead-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
}

.lead-card h2 {
  padding-right: 30px;
  font-size: 1.65rem;
}

.lead-card > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.field label {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cfdddd;
  border-radius: 12px;
  color: var(--ink);
  background: #fbfcfa;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--petrol-2);
  box-shadow: 0 0 0 4px rgba(8, 118, 124, 0.1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #ba3f3f;
}

.form-grid .btn {
  width: 100%;
  margin-top: 2px;
}

.form-note,
.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
  text-align: center;
}

.form-status {
  display: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--mint);
  font-size: 0.85rem;
  font-weight: 700;
}

.form-status.visible {
  display: block;
}

.authority-bar {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.authority-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(4, 1fr);
}

.authority-item {
  min-height: 120px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.authority-item:last-child {
  border-right: 0;
}

.authority-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.authority-item span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo-row .tavares-lockup {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.logo-row .tavares-lockup::before {
  width: 6px;
  height: 32px;
  border-radius: 6px;
  background: #e2403d;
  content: "";
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(9, 44, 55, 0.035);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  border-color: #bfd5d3;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.card p:last-child {
  margin-bottom: 0;
}

.icon-box {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 15px;
  color: var(--petrol-2);
  background: var(--mint);
}

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

.step-card {
  position: relative;
  padding-top: 84px;
}

.step-number {
  position: absolute;
  top: 25px;
  left: 28px;
  color: var(--petrol-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-card::before {
  position: absolute;
  top: 62px;
  right: 28px;
  left: 28px;
  height: 1px;
  background: var(--line);
  content: "";
}

.step-card::after {
  position: absolute;
  top: 58px;
  left: 28px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime-dark);
  content: "";
}

.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 32px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
}

.audience-card:nth-child(2) {
  background: var(--petrol);
}

.audience-card:nth-child(3) {
  color: var(--ink);
  background: var(--mint);
}

.audience-card h3 {
  color: inherit;
}

.audience-card p {
  color: inherit;
  opacity: 0.75;
}

.audience-card .btn-link {
  position: absolute;
  bottom: 28px;
  left: 32px;
  color: inherit;
}

.audience-card .audience-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 60px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.audience-card:nth-child(3) .audience-symbol {
  border-color: rgba(9, 44, 55, 0.12);
  background: rgba(9, 44, 55, 0.05);
}

.split {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-visual {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(199, 244, 91, 0.9), rgba(199, 244, 91, 0.1) 48%),
    var(--petrol);
  box-shadow: var(--shadow);
}

.feature-visual::before {
  position: absolute;
  inset: 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
}

.feature-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 205px;
  border-radius: 28px 28px 60px 60px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 30px 50px rgba(9, 44, 55, 0.18);
  clip-path: polygon(50% 0, 94% 16%, 88% 72%, 50% 100%, 12% 72%, 6% 16%);
  content: "";
  transform: translate(-50%, -50%);
}

.radar-ring,
.radar-ring::before,
.radar-ring::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(9, 89, 98, 0.35);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.radar-ring {
  width: 75px;
  height: 75px;
}

.radar-ring::before {
  width: 40px;
  height: 40px;
}

.radar-ring::after {
  width: 10px;
  height: 10px;
  border: 0;
  background: var(--lime-dark);
}

.visual-badge {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 28px;
  left: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: var(--white);
  background: rgba(9, 44, 55, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.visual-badge strong {
  display: block;
  margin-bottom: 2px;
}

.visual-badge span {
  font-size: 0.82rem;
  opacity: 0.75;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list .check {
  margin-top: 2px;
}

.quote-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  color: var(--petrol-2);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
}

.quote-card blockquote {
  margin: 20px 0 30px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.6;
}

.placeholder-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #76590f;
  background: var(--warning);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.avatar-placeholder {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--petrol-2);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.quote-author strong,
.quote-author span {
  display: block;
}

.quote-author span {
  color: var(--muted);
  font-size: 0.78rem;
}

.quote-author > .avatar-placeholder {
  display: grid;
  color: var(--petrol-2);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-question::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--petrol-2);
  background: var(--mint);
  content: "+";
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p,
.faq-answer ul {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-answer ul {
  padding-left: 42px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-group + .faq-group {
  margin-top: 55px;
}

.faq-layout {
  align-items: start;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
}

.faq-sidebar {
  position: sticky;
  top: 105px;
}

.faq-group h2 {
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 66px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.cta-panel::before {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 95px solid rgba(199, 244, 91, 0.08);
  border-radius: 50%;
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 800px;
  color: var(--white);
}

.cta-panel p {
  max-width: 660px;
  color: #bed0d1;
}

.site-footer {
  padding: 70px 0 28px;
  color: #bed0d1;
  background: #061f27;
}

.footer-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
}

.site-footer .brand {
  color: var(--white);
}

.footer-intro p {
  max-width: 360px;
  margin: 20px 0 0;
  font-size: 0.88rem;
}

.footer-col h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 10px;
  color: #bed0d1;
  font-size: 0.86rem;
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--cream);
  border-radius: 50%;
  color: var(--white);
  background: #22b967;
  box-shadow: 0 14px 28px rgba(20, 113, 67, 0.26);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float span {
  position: absolute;
  right: 65px;
  width: max-content;
  padding: 8px 11px;
  border-radius: 9px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 175px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(25, 145, 149, 0.45), transparent 34%),
    var(--ink);
}

.inner-hero::after {
  position: absolute;
  right: -180px;
  bottom: -320px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 90px rgba(255, 255, 255, 0.025), inset 0 0 0 180px rgba(255, 255, 255, 0.025);
  content: "";
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.inner-hero .lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: #bed0d1;
}

.inner-hero .eyebrow {
  color: var(--lime);
}

.breadcrumb {
  margin-bottom: 30px;
  color: #9fb9bc;
  font-size: 0.8rem;
  font-weight: 750;
}

.breadcrumb a:hover {
  color: var(--lime);
}

.story-stat {
  padding: 34px;
  border-left: 4px solid var(--lime-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.story-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 45px;
}

.timeline-item {
  position: relative;
  padding: 0 0 34px 42px;
  border-left: 1px solid #bcd3d1;
}

.timeline-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline-item::before {
  position: absolute;
  top: 2px;
  left: -8px;
  width: 15px;
  height: 15px;
  border: 4px solid var(--cream);
  border-radius: 50%;
  background: var(--petrol-2);
  box-shadow: 0 0 0 1px var(--petrol-2);
  content: "";
}

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.service-card p {
  flex: 1;
}

.service-card .btn-link {
  margin-top: 20px;
}

.service-detail {
  display: grid;
  gap: 32px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  grid-template-columns: 0.85fr 1.15fr;
}

.service-detail + .service-detail {
  margin-top: 20px;
}

.service-detail p:last-child {
  margin-bottom: 0;
}

.price-wrap {
  display: grid;
  align-items: start;
  gap: 30px;
  grid-template-columns: 1.1fr 0.9fr;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.price-card::after {
  position: absolute;
  right: -130px;
  bottom: -190px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(199, 244, 91, 0.08);
  border-radius: 50%;
  content: "";
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card h2,
.price-card h3 {
  color: var(--white);
}

.price-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-value {
  display: block;
  margin: 22px 0 6px;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price-subtitle {
  margin-bottom: 28px;
  color: #bed0d1;
}

.price-card .feature-list {
  margin-bottom: 32px;
}

.payment-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.payment-card + .payment-card {
  margin-top: 20px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.payment-icons span {
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--ink);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
}

.comparison-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table th {
  color: var(--ink);
  background: #eef7f4;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:last-child {
  color: var(--petrol-2);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 45px;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
}

.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item .icon-box {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin: 0;
}

.contact-item strong,
.contact-item span,
.contact-item a {
  display: block;
}

.contact-item span,
.contact-item a {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form-card {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legal-note {
  padding: 18px 20px;
  border-left: 3px solid var(--lime-dark);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  background: #f2f5ed;
  font-size: 0.82rem;
}

.map-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, transparent 49%, rgba(9, 44, 55, 0.09) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(9, 44, 55, 0.09) 50%, transparent 51%),
    #dfede7;
  background-size: 60px 60px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.85);
  border-radius: 50% 50% 50% 0;
  color: var(--white);
  background: var(--petrol-2);
  box-shadow: var(--shadow-sm);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin svg {
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
}

.map-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 14px 17px;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label span {
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1060px) {
  .nav-links > a {
    padding-inline: 7px;
    font-size: 0.84rem;
  }

  .nav-cta .btn {
    display: none;
  }

  .hero-grid {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority-item:nth-child(2) {
    border-right: 0;
  }

  .authority-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.7fr);
  }

  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 78px 0;
  }

  .nav-wrap {
    height: 84px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 18px 18px 18px 6px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: 1001;
    top: 84px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 22px 20px 40px;
    overflow-y: auto;
    background: #f7f7f1;
    box-shadow: 0 20px 35px rgba(9, 44, 55, 0.12);
    isolation: isolate;
    overscroll-behavior: contain;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links > a,
  .site-header:not(.scrolled):not(.inner-header) .nav-links > a {
    padding: 15px 12px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }

  .nav-links > a[aria-current="page"]::after {
    display: none;
  }

  .nav-links::after {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    content: "Consulte grátis";
    font-weight: 850;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero-grid,
  .split,
  .price-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split {
    gap: 48px;
  }

  .hero-copy h1 {
    max-width: 650px;
  }

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

  .audience-card {
    min-height: 300px;
  }

  .feature-visual {
    min-height: 440px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .btn-link,
  .section-heading .btn {
    margin-top: 22px;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    padding: 140px 0 75px;
  }

  .contact-grid {
    gap: 28px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }
}

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

  .section {
    padding: 66px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(2.38rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-bottom: 70px;
  }

  .hero-points {
    display: grid;
  }

  .lead-card,
  .contact-form-card,
  .price-card {
    padding: 24px;
    border-radius: var(--radius);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .authority-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .authority-item:last-child {
    border-bottom: 0;
  }

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

  .card {
    padding: 24px;
  }

  .step-card {
    padding-top: 84px;
  }

  .step-number {
    top: 24px;
    left: 24px;
    line-height: 1.2;
  }

  .step-card::before {
    right: 24px;
    left: 24px;
  }

  .step-card::after {
    left: 24px;
  }

  .feature-visual {
    min-height: 380px;
  }

  .cta-panel {
    padding: 38px 24px;
  }

  .footer-grid {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-intro,
  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
    gap: 6px;
    font-size: clamp(0.64rem, 2.7vw, 0.75rem);
  }

  .footer-bottom span {
    display: block;
    margin: 0;
    line-height: 1.35;
    white-space: nowrap;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float span {
    display: none;
  }

  .story-stat {
    padding: 25px;
  }

  .service-detail {
    padding: 24px;
  }

  .contact-card {
    padding: 24px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
