:root {
  --ink: #0d0e0f;
  --ink-soft: #25272a;
  --graphite: #404247;
  --muted: #686b70;
  --paper: #ffffff;
  --warm: #f5f4f0;
  --warm-2: #eceae4;
  --line: #deddd8;
  --line-dark: rgba(255, 255, 255, 0.13);
  --whatsapp: #1caf5d;
  --whatsapp-dark: #128b49;
  --danger: #bd3039;
  --shadow-sm: 0 8px 24px rgba(13, 14, 15, 0.06);
  --shadow-md: 0 20px 55px rgba(13, 14, 15, 0.1);
  --shadow-lg: 0 32px 90px rgba(13, 14, 15, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1240px;
  --header: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body,
h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

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

body {
  overflow-x: hidden;
  padding-bottom: 68px;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: linear-gradient(135deg, #f8f7f4 0%, #efeee9 100%);
  text-align: center;
}

.error-page main {
  width: min(100%, 620px);
}

.error-page .eyebrow {
  justify-content: center;
}

.error-page p {
  margin: 20px auto 28px;
  color: var(--muted);
}

::selection {
  background: var(--ink);
  color: #fff;
}

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

.section {
  padding: 78px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

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

:focus-visible {
  outline: 3px solid #5c5f65;
  outline-offset: 3px;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(2.5rem, 10vw, 4.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 8vw, 3.25rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
  color: var(--graphite);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #d0d1d2;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p {
  max-width: 600px;
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 14, 15, 0.18);
}

.button-primary:hover {
  background: #292b2e;
  box-shadow: 0 17px 34px rgba(13, 14, 15, 0.22);
}

.button-outline {
  border-color: #c7c6c1;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 12px 28px rgba(28, 175, 93, 0.22);
}

.button-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.text-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 800;
}

.text-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header);
  border-bottom: 1px solid rgba(13, 14, 15, 0.07);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  transition: height 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  height: 66px;
  box-shadow: 0 9px 28px rgba(13, 14, 15, 0.07);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  image-rendering: auto;
}

.brand > span {
  max-width: 150px;
  line-height: 1.15;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--warm);
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--ink);
  transition: 0.2s ease;
}

.menu-toggle.active span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 16px;
  left: 16px;
  display: none;
  flex-direction: column;
  gap: 3px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.main-nav.open {
  display: flex;
}

.main-nav > a:not(.button) {
  padding: 11px 10px;
  color: #414348;
  font-size: 0.87rem;
  font-weight: 650;
}

.nav-whatsapp {
  color: var(--whatsapp-dark) !important;
  font-weight: 800 !important;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 64px;
  background: linear-gradient(135deg, #f8f7f4 0%, #efeee9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -220px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(13, 14, 15, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.2), 0 0 0 160px rgba(255, 255, 255, 0.15);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 38px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 span {
  display: inline-block;
  color: #414348;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 620px;
  margin-top: 22px;
  color: #5c5f63;
  font-size: 1rem;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 9px;
  margin-top: 23px;
  list-style: none;
  color: #36383c;
  font-size: 0.87rem;
}

.check-list li {
  display: flex;
  align-items: center;
}

.check-list li::before {
  content: "✓";
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.microcopy {
  margin-top: 13px;
  color: #76787b;
  font-size: 0.74rem;
  text-align: center;
}

.microcopy span {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-carousel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 365px;
  border: 1px solid rgba(13, 14, 15, 0.1);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 42%, #fff 0%, #eeeeea 52%, #d8d7d2 100%);
  box-shadow: var(--shadow-lg);
}

.hero-carousel::before {
  content: "MODELOS EM DESTAQUE";
  position: absolute;
  z-index: 2;
  top: 21px;
  left: 24px;
  color: #777974;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.hero-carousel::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: 17%;
  left: 8%;
  height: 9%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2), transparent 68%);
  filter: blur(11px);
}

.carousel-slides {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  margin: 0;
  padding: 48px 38px 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6%);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  max-height: 270px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 15px rgba(0, 0, 0, 0.21));
}

.carousel-slide figcaption {
  align-self: end;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(13, 14, 15, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  font-size: 0.73rem;
  backdrop-filter: blur(10px);
}

.carousel-slide figcaption span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(13, 14, 15, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.87);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  transform: translateY(-50%);
  transition: 0.22s ease;
}

.carousel-arrow:hover {
  background: var(--ink);
  color: #fff;
}

.carousel-prev {
  left: 11px;
}

.carousel-next {
  right: 11px;
}

.carousel-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #aaa9a5;
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel-dots button.active {
  width: 23px;
  background: var(--ink);
}

/* Trust strip */
.trust-strip {
  padding: 19px 0;
  background: var(--ink);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c6c7c8;
  font-size: 0.7rem;
  line-height: 1.3;
}

.trust-grid i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-style: normal;
}

.trust-grid strong {
  display: block;
  color: #fff;
}

/* Vehicle objectives */
.objectives {
  background: var(--warm);
}

.objective-grid {
  display: grid;
  gap: 17px;
}

.objective-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(13, 14, 15, 0.08);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.objective-card:hover {
  border-color: rgba(13, 14, 15, 0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.objective-card.selected {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--ink), var(--shadow-md);
}

.category-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--warm-2);
}

.category-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.16), transparent 45%);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 0.6s ease, filter 0.35s ease;
}

.objective-card:hover .category-image img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.045);
}

.objective-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.objective-content p {
  flex: 1;
  min-height: 50px;
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.objective-content .text-link {
  align-self: flex-start;
}

/* Brands */
.brand-section {
  background: #fff;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.brand-choice {
  position: relative;
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: #303237;
  font-size: 0.82rem;
  font-weight: 750;
  box-shadow: 0 5px 16px rgba(13, 14, 15, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.brand-choice img {
  width: auto;
  height: 48px;
  max-width: 112px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-choice:hover {
  border-color: #a6a6a1;
  background: #fafaf8;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.brand-choice:hover img {
  transform: scale(1.06);
}

.brand-choice.selected {
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 2px var(--ink), var(--shadow-sm);
}

.brand-choice.selected::after {
  content: "✓";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.62rem;
}

.brand-choice[data-brand="Renault"] img {
  height: 42px;
}

.brand-choice-text:hover,
.brand-choice-text.selected {
  background: var(--ink);
  color: #fff;
}

.section-action {
  margin-top: 30px;
  text-align: center;
}

/* How it works */
.how {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c0d0e, #202225);
  color: #fff;
}

.how::before {
  content: "";
  position: absolute;
  right: -240px;
  bottom: -330px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.025), 0 0 0 150px rgba(255, 255, 255, 0.015);
}

.how .container {
  position: relative;
}

.how h2,
.how h3 {
  color: #fff;
}

.how .eyebrow {
  color: #c4c5c5;
}

.how .section-heading p {
  color: #aeb0b2;
}

.steps {
  display: grid;
  gap: 11px;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.steps li:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.steps li > span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 800;
}

.steps p {
  margin-top: 9px;
  color: #afb1b3;
  font-size: 0.81rem;
}

/* Sales highlight */
.highlight {
  padding: 28px 0;
  background: var(--warm);
}

.highlight-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 25px;
  padding: 34px 24px;
  border-radius: 25px;
  background: linear-gradient(120deg, #111214, #2b2d30);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.highlight-inner::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025);
}

.highlight-inner > * {
  position: relative;
  z-index: 1;
}

.highlight h2 {
  max-width: 720px;
  color: #fff;
}

.highlight p {
  max-width: 670px;
  margin-top: 13px;
  color: #bec0c2;
}

/* Simulator */
.simulator {
  background: radial-gradient(circle at 12% 18%, #fff, transparent 34%), var(--warm-2);
}

.simulator-grid {
  display: grid;
  gap: 30px;
}

.simulator-copy > p {
  margin-top: 15px;
  color: var(--muted);
}

.privacy-note {
  display: flex;
  gap: 13px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(13, 14, 15, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.privacy-note > span {
  font-size: 1.25rem;
}

.privacy-note p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.77rem;
}

.simple-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin-top: 18px;
  list-style: none;
  color: #484b4f;
  font-size: 0.8rem;
}

.simple-list li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form {
  position: relative;
  overflow: hidden;
  padding: 25px 18px;
  border: 1px solid rgba(13, 14, 15, 0.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.lead-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ink), #8d8f91, var(--ink));
}

.website-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 21px;
  padding-bottom: 17px;
  border-bottom: 1px solid #ecece8;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.form-progress > div {
  height: 5px;
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  background: #e5e5e1;
}

.form-progress i {
  width: 42%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--ink), #77797c);
}

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

.field label {
  display: block;
  margin-bottom: 6px;
  color: #34363a;
  font-size: 0.75rem;
  font-weight: 750;
}

.optional {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0 13px;
  border: 1px solid #d0d0cb;
  border-radius: 10px;
  background: #fafaf8;
  color: var(--ink);
  font-size: 16px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input:hover,
.field select:hover {
  border-color: #aaa9a4;
}

.field input:focus,
.field select:focus {
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 14, 15, 0.08);
  outline: 0;
}

.field.invalid input,
.field.invalid select {
  border-color: var(--danger);
}

.field.valid input,
.field.valid select {
  border-color: #6f716f;
  background: #fbfbf9;
}

.field-hint {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.66rem;
}

.error {
  min-height: 16px;
  display: block;
  margin-top: 3px;
  color: var(--danger);
  font-size: 0.68rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
}

.consent input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--ink);
}

.consent label {
  color: var(--muted);
  font-size: 0.72rem;
}

.privacy-open {
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  min-height: 58px;
  margin-top: 14px;
  font-size: 0.71rem;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.form-safe {
  margin-top: 10px;
  color: #7d7f82;
  font-size: 0.66rem;
  text-align: center;
}

/* Testimonials */
.testimonials {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  gap: 15px;
}

.testimonial {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 20px;
  color: #e3e2dd;
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 1;
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.testimonial p {
  position: relative;
  min-height: 88px;
  color: #4f5256;
  font-size: 0.85rem;
  line-height: 1.78;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  margin-top: 16px;
  font-size: 0.82rem;
}

.testimonial span {
  color: #8b8d90;
  font-size: 0.66rem;
}

/* FAQ */
.faq {
  background: var(--warm);
}

.faq-grid {
  display: grid;
  gap: 30px;
}

.faq-intro p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.accordion {
  display: grid;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover,
.faq-item.active {
  border-color: #aaa9a4;
  box-shadow: var(--shadow-sm);
}

.faq-item > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 750;
}

.faq-item > button i {
  font-size: 1.32rem;
  font-style: normal;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-item.active > button i {
  transform: rotate(45deg);
}

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

.faq-answer p {
  overflow: hidden;
  padding: 0 19px;
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 19px;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #090a0b, #25272a);
  color: #fff;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -210px;
  left: 0;
  height: 360px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12), transparent 64%);
}

.final-cta .container {
  position: relative;
  max-width: 840px;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  margin: 17px auto 27px;
  color: #c4c5c7;
}

.final-cta .container > div {
  display: grid;
  gap: 10px;
}

/* Footer */
.footer {
  padding: 48px 0 95px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #070809;
  color: #aeb0b2;
}

.footer-main {
  display: grid;
  gap: 28px;
}

.brand-light {
  color: #fff;
}

.footer-logo {
  width: 68px;
  height: 68px;
}

.footer .brand > span {
  max-width: 210px;
}

.footer-main > div > p {
  max-width: 300px;
  margin-top: 13px;
  font-size: 0.8rem;
}

.footer nav {
  display: grid;
  gap: 10px;
}

.footer nav a,
.footer nav button {
  width: max-content;
  padding: 0;
  border: 0;
  background: none;
  color: #d3d4d5;
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.footer nav a:hover,
.footer nav button:hover {
  color: #fff;
}

.contact-placeholder {
  display: grid;
  gap: 6px;
  font-size: 0.74rem;
}

.contact-placeholder strong {
  color: #fff;
}

.contact-placeholder a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 1.4em;
  margin-top: 11px;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.form-status.success {
  color: var(--whatsapp-dark);
}

.form-status.error-message {
  color: var(--danger);
}

.legal {
  margin-top: 33px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.66rem;
  line-height: 1.72;
}

.copyright {
  margin-top: 17px;
  color: #76797c;
  font-size: 0.68rem;
}

/* Floating conversion elements */
.floating-whatsapp {
  position: fixed;
  z-index: 800;
  right: 15px;
  bottom: 78px;
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 15px 34px rgba(12, 100, 50, 0.31);
  animation: softPulse 3s infinite;
}

.floating-whatsapp span {
  font-size: 1.4rem;
}

.floating-whatsapp b {
  display: none;
}

.mobile-cta {
  position: fixed;
  z-index: 700;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px max(16px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -8px 24px rgba(13, 14, 15, 0.1);
  font-size: 0.76rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.mobile-cta a {
  padding: 10px 17px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.69rem;
  text-transform: uppercase;
}

/* Dialogs */
.privacy-modal {
  width: min(calc(100% - 28px), 650px);
  padding: 0 0 24px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.privacy-modal::backdrop {
  background: rgba(5, 6, 7, 0.72);
  backdrop-filter: blur(4px);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.modal-head h2 {
  font-size: 1.35rem;
}

.modal-head button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--warm);
  font-size: 1.4rem;
}

.modal-body {
  max-height: 60vh;
  overflow: auto;
  padding: 22px 24px;
}

.modal-body p {
  color: var(--muted);
  font-size: 0.84rem;
}

.modal-body p + p {
  margin-top: 14px;
}

.privacy-modal > .button {
  margin-left: 24px;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 15px 34px rgba(12, 100, 50, 0.31);
  }
  50% {
    box-shadow: 0 15px 34px rgba(12, 100, 50, 0.31), 0 0 0 8px rgba(28, 175, 93, 0.12);
  }
}

@media (min-width: 375px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

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

  .hero-actions .button {
    padding-inline: 10px;
    font-size: 0.67rem;
  }
}

@media (min-width: 430px) {
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-carousel {
    min-height: 420px;
  }

  .carousel-slide img {
    max-height: 325px;
  }

  .lead-form {
    padding: 29px 25px;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .section {
    padding: 96px 0;
  }

  .menu-toggle,
  .mobile-cta {
    display: none;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .footer-logo {
    width: 68px;
    height: 68px;
  }

  .brand > span {
    max-width: 190px;
    font-size: 0.88rem;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

  .main-nav > a:not(.button) {
    padding: 9px 8px;
    font-size: 0.74rem;
  }

  .hero {
    padding: 70px 0 76px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    align-items: center;
    gap: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 5.7vw, 4.65rem);
  }

  .hero-actions {
    display: flex;
  }

  .hero-actions .button {
    padding-inline: 20px;
    font-size: 0.72rem;
  }

  .microcopy {
    text-align: left;
  }

  .hero-carousel {
    min-height: 525px;
  }

  .carousel-slide {
    padding: 62px 53px 29px;
  }

  .carousel-slide img {
    max-height: 405px;
  }

  .carousel-prev {
    left: 15px;
  }

  .carousel-next {
    right: 15px;
  }

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

  .trust-grid div {
    justify-content: center;
    padding: 0 15px;
  }

  .trust-grid div + div {
    border-left: 1px solid var(--line-dark);
  }

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

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

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

  .steps li {
    min-height: 235px;
    padding: 20px 15px;
  }

  .steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 39px;
    right: -11px;
    width: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .highlight-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 44px;
  }

  .simulator-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: 52px;
  }

  .simulator-copy {
    position: sticky;
    top: 100px;
  }

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

  .field.full {
    grid-column: 1 / -1;
  }

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

  .faq-grid {
    grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr);
    gap: 62px;
  }

  .faq-intro {
    position: sticky;
    top: 100px;
    align-self: start;
  }

  .final-cta .container > div {
    display: flex;
    justify-content: center;
  }

  .footer {
    padding-bottom: 40px;
  }

  .footer-main {
    grid-template-columns: 1.25fr 0.75fr 1fr;
  }

  .floating-whatsapp {
    right: 23px;
    bottom: 23px;
    width: auto;
    height: 52px;
    display: flex;
    gap: 9px;
    padding: 0 17px;
    border-radius: 28px;
  }

  .floating-whatsapp b {
    display: block;
    font-size: 0.72rem;
  }
}

@media (min-width: 1024px) {
  .main-nav {
    gap: 10px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.8rem;
  }

  .hero-grid {
    gap: 72px;
  }

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

  .brand-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }

  .brand-choice {
    min-height: 84px;
  }

  .brand-choice img {
    height: 52px;
  }

  .steps {
    gap: 14px;
  }

  .steps li {
    padding: 24px 18px;
  }

  .steps li:not(:last-child)::after {
    right: -15px;
    width: 16px;
  }

  .lead-form {
    padding: 34px;
  }

  .testimonial {
    padding: 31px;
  }
}

@media (min-width: 1366px) {
  :root {
    --container: 1280px;
  }

  .section {
    padding: 108px 0;
  }

  .hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 64px 0;
  }

  .hero-carousel {
    min-height: 545px;
  }

  .carousel-slide img {
    max-height: 425px;
  }
}

@media (max-width: 767px) {
  .hero-copy h1 {
    max-width: 440px;
  }

  .highlight .button,
  .final-cta .button {
    width: 100%;
  }
}

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

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

  .hero h1 {
    font-size: 2.22rem;
  }

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

  .trust-grid div:nth-child(n + 3) {
    display: none;
  }

  .brand > span {
    max-width: 120px;
    font-size: 0.7rem;
  }

  .mobile-cta span {
    max-width: 165px;
    font-size: 0.7rem;
  }
}

@media (hover: none) {
  .objective-card:hover,
  .brand-choice:hover,
  .steps li:hover,
  .testimonial:hover {
    transform: none;
  }

  .objective-card:hover .category-image img,
  .brand-choice:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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