/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --bb:      #00bbee;   /* Bright Blue — Dürr primary */
  --db:      #007baf;   /* Dark Blue */
  --navy:    #002d48;
  --ink:     #0d1f2d;
  --white:   #ffffff;
  --snow:    #f5f8fa;
  --mist:    #e8f1f6;
  --gray:    #8099a8;
  --border:  #d4e3ec;
  --red:     #e03636;
  --green:   #25D366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── HEADER ─────────────────────────────────────── */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(0, 18, 32, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,187,238,0.12);
  transition: background .3s;
}

.hd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.hd-wordmark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hd-sub {
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
  letter-spacing: .5px;
}

/* Dürr logo mark — pure CSS */
.hd-mark {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: var(--db);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hd-mark::before, .hd-mark::after {
  content: '';
  position: absolute;
  background: var(--bb);
}

.hd-mark::before {
  width: 2px;
  height: 14px;
  left: 9px;
  top: 8px;
  transform: skewX(-8deg);
}

.hd-mark::after {
  width: 2px;
  height: 10px;
  left: 14px;
  top: 10px;
  transform: skewX(-8deg);
}

.hd-cta {
  background: var(--bb);
  color: var(--navy);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 2px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.hd-cta:hover { background: #22d4ff; transform: translateY(-1px); }

/* ─── HERO ────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: var(--ink);
  background-image: url('/assets/images/produtos/imagem/vistascan/nano/sensor_placaIQ2.png');
  background-size: cover;
  background-position: center 40%;
}

/* overlay: topo quase limpo, escurece só na metade inferior */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,18,32,.15) 0%,
      rgba(0,18,32,.08) 25%,
      rgba(0,18,32,.50) 58%,
      rgba(0,18,32,.93) 100%);
  z-index: 1;
}

/* horizontal scan line */
.hero-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,187,238,.5) 40%, rgba(0,187,238,.5) 60%, transparent 100%);
  animation: scan 4s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  from { top: 15%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { top: 88%; opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,187,238,.18);
  border: 1px solid rgba(0,187,238,.7);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0,187,238,.2), inset 0 1px 0 rgba(255,255,255,.15);
  margin-bottom: 28px;
  animation: fadeUp .7s ease both;
}

.hero-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bb);
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}

#hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 28px;
  animation: fadeUp .8s .1s ease both;
}

#hero h1 strong {
  font-style: normal;
  font-weight: 600;
  color: var(--bb);
  display: block;
}

.hero-lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.8;
  font-weight: 300;
  animation: fadeUp .8s .22s ease both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bb);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 18px 44px;
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(0,187,238,.3);
  transition: transform .25s, box-shadow .25s;
  animation: fadeUp .8s .34s ease both;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(0,187,238,.42);
}

.hero-note {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  letter-spacing: .4px;
  animation: fadeUp .8s .46s ease both;
}

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

/* ─── TWO PATHS ───────────────────────────────────── */
#dois-caminhos {
  background: var(--snow);
  padding: 80px 24px;
  text-align: center;
}

.paths-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--db);
  margin-bottom: 12px;
}

.paths-title {
  font-family: 'Lora', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 48px;
  line-height: 1.2;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,45,72,.1), 0 0 0 1px var(--border);
}

@media (max-width: 640px) {
  .paths-grid { grid-template-columns: 1fr; }
  .paths-divider { display: none; }
}

.path-card {
  background: #fff;
  padding: 44px 36px;
  text-align: left;
  position: relative;
  transition: background .25s;
}

.path-card:first-child {
  border-right: 1px solid var(--border);
}

@media (max-width: 640px) {
  .path-card:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

.path-card:hover { background: #fafcff; }

.path-emoji {
  font-size: 36px;
  margin-bottom: 16px;
}

.path-headline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bb);
  margin-bottom: 10px;
}

.path-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.path-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
}

.path-pains {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.path-pains li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #3a5060;
  line-height: 1.5;
}

.pain-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(224,54,54,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-top: 1px;
}

.path-arrow {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--db);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.paths-bottom {
  margin-top: 28px;
  font-size: 14px;
  color: var(--gray);
}

.paths-bottom strong {
  color: var(--navy);
  font-weight: 700;
}

/* ─── COMPARATIVO ─────────────────────────────────── */
#comparativo {
  background: var(--white);
  padding: 88px 24px;
  overflow: hidden;
  position: relative;
}

.comp-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 240px;
  font-weight: 700;
  color: rgba(0,123,175,.035);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.comp-header-block {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--db);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-title strong { font-style: normal; font-weight: 600; }

.section-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* Table */
.comp-wrap {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 40px rgba(0,45,72,.09), 0 0 0 1px var(--border);
  position: relative;
  z-index: 1;
}

.comp-thead {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  background: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.comp-thead .col { padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.08); }
.comp-thead .col:last-child {
  background: var(--bb);
  color: var(--navy);
  border-right: none;
  font-weight: 800;
}

.comp-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  background: #fff;
  border-bottom: 1px solid var(--mist);
  font-size: 13.5px;
  transition: background .15s;
}

.comp-row:last-child { border-bottom: none; }
.comp-row:nth-child(even) { background: var(--snow); }
.comp-row:hover { background: #eef6fc; }

.comp-row .col {
  padding: 16px 22px;
  border-right: 1px solid var(--mist);
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.comp-row .col:last-child { border-right: none; }

.comp-row .col-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 13px;
}

.comp-row .col-bad {
  color: #b94040;
  font-size: 12.5px;
  gap: 7px;
}

.col-bad-icon {
  flex-shrink: 0;
  color: var(--red);
  font-size: 14px;
}

.comp-row .col-good {
  color: var(--db);
  font-weight: 600;
  font-size: 12.5px;
  gap: 7px;
}

.col-good-icon {
  flex-shrink: 0;
  color: var(--bb);
  font-size: 16px;
}

/* responsive table */
@media (max-width: 900px) {
  .comp-thead, .comp-row { grid-template-columns: 1fr 1fr; }
  .comp-thead .col:first-child, .comp-row .col:first-child { display: none; }
  .comp-thead .col-label, .comp-row .col-label { display: none; }
}

/* ─── DEPOIMENTOS ─────────────────────────────────── */
#depoimentos {
  background: var(--navy);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#depoimentos::before {
  content: '\201C';
  position: absolute;
  top: -60px; left: 24px;
  font-family: 'Lora', serif;
  font-size: 280px;
  color: rgba(0,187,238,.06);
  line-height: 1;
  pointer-events: none;
}

#depoimentos .section-tag { color: var(--bb); }
#depoimentos .section-title { color: #fff; }
#depoimentos .section-sub { color: rgba(255,255,255,.45); }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}

.dep-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 30px 26px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .25s, border-color .25s, transform .25s;
}

.dep-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,187,238,.25);
  transform: translateY(-3px);
}

.dep-destaque {
  grid-column: 1 / -1;
  max-width: 740px;
  margin: 0 auto;
  width: 100%;
  background: rgba(0,187,238,.06);
  border-color: rgba(0,187,238,.2);
}

.dep-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
  position: relative;
}

.dep-text::before {
  content: '\201C';
  font-size: 36px;
  color: var(--bb);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 2px;
  opacity: .6;
}

.dep-autor {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bb);
}

/* ─── FORMULÁRIO ──────────────────────────────────── */
#formulario {
  background: var(--mist);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#formulario::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,187,238,.1) 0%, transparent 70%);
  pointer-events: none;
}

#formulario .section-tag { color: var(--db); }
#formulario .section-title { color: var(--navy); }

.form-box {
  background: #fff;
  border-radius: 10px;
  padding: 48px 44px;
  max-width: 520px;
  margin: 48px auto 0;
  box-shadow: 0 20px 60px rgba(0,45,72,.1), 0 0 0 1px rgba(0,45,72,.05);
  position: relative;
  z-index: 1;
  border-top: 3px solid var(--bb);
}

@media (max-width: 480px) { .form-box { padding: 32px 22px; } }

.form-box-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.25;
}

.form-box-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--bb);
  box-shadow: 0 0 0 3px rgba(0,187,238,.12);
}

/* radio cards */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 7px;
}

.radio-input { display: none; }

.radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 10px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  transition: all .2s;
  line-height: 1.3;
}

.radio-label .rl-icon { font-size: 22px; }

.radio-input:checked + .radio-label {
  border-color: var(--bb);
  background: rgba(0,187,238,.06);
  color: var(--navy);
}

.err {
  color: #d43838;
  font-size: 11px;
  margin-top: 5px;
  display: none;
}

.err.show { display: block; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #22c35e, #1a9e4e);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 17px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity .2s, transform .2s;
  letter-spacing: .2px;
}

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

.form-privacy {
  font-size: 11px;
  color: var(--gray);
  margin-top: 14px;
  text-align: center;
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.3);
  padding: 36px 24px;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.8;
  border-top: 1px solid rgba(0,187,238,.08);
}

footer strong { color: rgba(255,255,255,.7); }
footer a { color: var(--bb); opacity: .7; }
footer a:hover { opacity: 1; }

/* ─── STICKY / FLOAT WA ────────────────────────────── */
.sticky-wa {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ink);
  border-top: 1px solid rgba(0,187,238,.15);
  padding: 14px 20px;
  text-align: center;
}

.sticky-wa a {
  color: var(--bb);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .2px;
}

@media (max-width: 640px) { .sticky-wa { display: block; } }

.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 250;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
}

.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
}

@media (max-width: 640px) { .float-wa { bottom: 72px; } }


/* ─── CARROSSEL PRODUTO ───────────────────────────── */
#produto {
  background: var(--ink);
  padding: 88px 0 0;
  text-align: center;
  overflow: hidden;
}

#produto .section-tag { color: var(--bb); }
#produto .section-title { color: #fff; margin-bottom: 8px; }
#produto .section-sub { color: rgba(255,255,255,.45); margin-bottom: 52px; }

.carr-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carr-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.carr-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .carr-slide { aspect-ratio: 4/3; }
}

.carr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carr-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(to top, rgba(0,18,32,.85) 0%, transparent 100%);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .3px;
  text-align: left;
}

.carr-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  line-height: 1;
}

.carr-btn:hover {
  background: rgba(0,187,238,.35);
  transform: translateY(-50%) scale(1.08);
}

.carr-prev { left: 16px; }
.carr-next { right: 16px; }

.carr-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 20px 0 72px;
}

.carr-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}

.carr-dot.on {
  background: var(--bb);
  width: 22px;
  border-radius: 3px;
}

/* ─── SCROLL REVEALS ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* PATH CARDS — imagens reais */
.path-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}
.path-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ─── MOBILE FIXES ────────────────────────────────────
   Adicionar ao final do vistascan.css
   ─────────────────────────────────────────────────── */

/* Subtítulo das seções — linha-height menor no mobile evita quebra excessiva */
@media (max-width: 640px) {
  /* Reduzir padding vertical das seções */
  #dois-caminhos,
  #comparativo,
  #depoimentos,
  #produto,
  #formulario {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-sub {
    font-size: 16px;
    line-height: 1.55;
    max-width: 100%;
  }

  /* Bullets dos cards de caminho — um pouco maiores */
  .path-pains li {
    font-size: 14px;
    line-height: 1.55;
  }

  /* Texto do parágrafo nos cards */
  .path-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  /* paths-bottom — texto de fechamento da seção */
  .paths-bottom {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
  }

  /* Comparativo — células mais legíveis */
  .comp-row {
    font-size: 14px;
  }
  .comp-row .col-label { font-size: 14px; }
  .comp-row .col-bad   { font-size: 14px; }
  .comp-row .col-good  { font-size: 14px; }
  .comp-row .col       { padding: 14px 14px; }
  .comp-thead .col     { padding: 14px 14px; font-size: 11px; }

  /* Depoimentos — autor mais legível */
  .dep-autor {
    font-size: 12px;
    letter-spacing: 1px;
  }

  /* Texto do depoimento */
  .dep-text {
    font-size: 15px;
    line-height: 1.7;
  }

  /* Formulário — labels e radio legíveis */
  .form-group label {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .radio-label {
    font-size: 13px;
  }

  .form-privacy {
    font-size: 12px;
    line-height: 1.6;
  }

  /* Footer */
  footer {
    font-size: 13px;
    line-height: 1.9;
  }
}
