/* ============================================================
   Village Óptica — Landing Page
   Consultoria óptica no Tatuapé
   ------------------------------------------------------------
   Paleta
     #08283d  azul profundo (fundos escuros)
     #0b2c42  texto principal
     #0a6ba8 / #0a5c8f  azul de apoio (links, eyebrow)
     #29a8df / #7fd0f5  azul claro (destaque / hover)
     #f4f9fc / #f9fcfe  fundos claros
     #446478  texto secundário
     #e3edf5 / #cddeea / #dbe8f1  bordas
     #25d366  verde WhatsApp
   Tipografia: Sora (títulos, rótulos, botões) · Karla (texto)
   ------------------------------------------------------------
   Sumário
     1.  Tokens
     2.  Reset e base
     3.  Utilitários (shell, eyebrow, títulos, botões)
     4.  Header
     5.  Hero
     6.  Benefícios e diferenciais
     7.  Como funciona (faixa escura)
     8.  Produtos
     9.  Prova social
     10. CTA intermediário
     11. Formulário
     12. FAQ
     13. Rodapé
     14. Botão flutuante de WhatsApp
   ============================================================ */

/* ------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------ */
:root {
  --vo-dark: #08283d;
  --vo-ink: #0b2c42;
  --vo-blue: #0a6ba8;
  --vo-blue-deep: #0a5c8f;
  --vo-blue-light: #29a8df;
  --vo-blue-soft: #7fd0f5;
  --vo-muted: #446478;
  --vo-bg-light: #f4f9fc;
  --vo-bg-soft: #f9fcfe;
  --vo-border: #e3edf5;
  --vo-border-input: #cddeea;
  --vo-whatsapp: #25d366;

  --vo-font-head: 'Sora', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --vo-font-body: 'Karla', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --vo-gradient: linear-gradient(135deg, #29a8df, #0a5c8f);
  --vo-shell: 1180px;
}

/* ------------------------------------------------------------
   2. RESET E BASE
   ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--vo-font-body);
  color: var(--vo-ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

body * {
  box-sizing: border-box;
}

body a {
  color: var(--vo-blue);
  text-decoration: none;
}

body a:hover {
  color: var(--vo-blue-light);
}

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

/* ------------------------------------------------------------
   3. UTILITÁRIOS
   ------------------------------------------------------------ */
.vo-shell {
  max-width: var(--vo-shell);
  margin: 0 auto;
}

.vo-eyebrow {
  font-family: var(--vo-font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vo-blue);
  margin: 0;
}

.vo-eyebrow--on-dark {
  color: var(--vo-blue-soft);
}

/* Títulos de seção (fundo claro) */
.vo-h2 {
  font-family: var(--vo-font-head);
  font-weight: 700;
  font-size: clamp(27px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: pretty;
}

.vo-h2--on-dark {
  color: #ffffff;
}

/* Botões */
.vo-btn-grad {
  font-family: var(--vo-font-head);
  font-weight: 600;
  color: #ffffff;
  background: var(--vo-gradient);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-block;
  transition: filter 0.2s ease;
}

.vo-btn-grad:hover {
  color: #ffffff;
  filter: brightness(1.08);
}

.vo-btn-white {
  font-family: var(--vo-font-head);
  font-weight: 600;
  color: var(--vo-dark);
  background: #ffffff;
  border: 0;
  border-radius: 999px;
  display: inline-block;
  transition: background 0.2s ease;
}

.vo-btn-white:hover {
  color: var(--vo-dark);
  background: #eaf6fd;
}

/* ------------------------------------------------------------
   4. HEADER
   ------------------------------------------------------------ */
.vo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000f22;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.vo-header__inner {
  max-width: var(--vo-shell);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vo-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vo-header__logo img {
  height: 58px;
  width: auto;
}

.vo-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vo-header__cta {
  font-size: 14px;
  padding: 13px 22px;
  box-shadow: 0 8px 20px -8px rgba(10, 92, 143, 0.7);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .vo-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 16px;
    gap: 10px;
  }

  .vo-header__logo img {
    height: 42px;
  }

  .vo-header__actions {
    width: 100%;
    justify-content: center;
  }

  .vo-header__cta {
    font-size: 13px;
    padding: 11px 18px;
    white-space: normal;
    text-align: center;
  }
}

/* ------------------------------------------------------------
   5. HERO
   ------------------------------------------------------------ */
.vo-hero {
  position: relative;
  overflow: hidden;
  background: var(--vo-dark);
}

.vo-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.vo-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
}

.vo-hero__content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 84px 20px 92px;
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.vo-hero__title {
  font-family: var(--vo-font-head);
  font-weight: 700;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
  text-wrap: pretty;
}

.vo-hero__lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: #dcecf7;
  margin: 0;
  max-width: 560px;
}

.vo-hero__text {
  font-size: 16px;
  line-height: 1.7;
  color: #b9d5e7;
  margin: 0;
  max-width: 560px;
}

.vo-hero__highlights {
  font-family: var(--vo-font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #eaf6fd;
  margin: 0;
}

.vo-hero__highlights span {
  color: var(--vo-blue-soft);
  margin: 0 10px;
}

.vo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
}

.vo-hero__cta {
  font-size: 17px;
  padding: 18px 30px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.8);
}

/* ------------------------------------------------------------
   6. BENEFÍCIOS E DIFERENCIAIS
   ------------------------------------------------------------ */
.vo-benefits {
  background: var(--vo-bg-light);
  padding: 76px 20px;
}

.vo-benefits__inner {
  max-width: var(--vo-shell);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.vo-benefits__head {
  display: grid;
  gap: 12px;
  max-width: 620px;
}

.vo-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.vo-benefit-card {
  background: #ffffff;
  border: 1px solid var(--vo-border);
  border-radius: 20px;
  padding: 30px 26px;
  display: grid;
  gap: 14px;
  align-content: start;
  transition: border-color 0.2s ease;
}

.vo-benefit-card:hover {
  border-color: var(--vo-blue-light);
}

.vo-benefit-card__icon {
  width: 56px;
  height: 56px;
}

.vo-benefit-card__title {
  font-family: var(--vo-font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}

.vo-benefit-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--vo-muted);
  margin: 0;
}

/* ------------------------------------------------------------
   7. COMO FUNCIONA (faixa escura)
   ------------------------------------------------------------ */
.vo-steps-section {
  position: relative;
  overflow: hidden;
  background: var(--vo-dark);
  padding: 84px 20px;
}

.vo-steps-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vo-steps-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.55));
}

.vo-steps-section__content {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
  justify-items: center;
  text-align: center;
}

.vo-steps-section__inner {
  display: grid;
  gap: 26px;
  justify-items: center;
}

.vo-steps-section__head {
  display: grid;
  gap: 12px;
}

.vo-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  text-align: left;
  max-width: 620px;
  width: 100%;
}

.vo-steps__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.vo-steps__num {
  font-family: var(--vo-font-head);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  background: var(--vo-gradient);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.vo-steps__text {
  font-size: 17px;
  line-height: 1.6;
  color: #e7f2f9;
  margin: 7px 0 0;
}

.vo-steps-section__cta {
  font-size: 17px;
  padding: 18px 30px;
  justify-self: center;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.7);
}

/* ------------------------------------------------------------
   8. PRODUTOS
   ------------------------------------------------------------ */
.vo-products {
  background: var(--vo-bg-light);
  padding: 80px 20px;
}

.vo-products__inner {
  max-width: var(--vo-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px;
  align-items: center;
}

.vo-products__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.vo-products__body {
  display: grid;
  gap: 20px;
}

.vo-products__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--vo-muted);
  margin: 0;
}

.vo-products__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vo-tag {
  font-family: var(--vo-font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--vo-blue-deep);
  background: #e4f2fa;
  border-radius: 999px;
  padding: 10px 18px;
}

/* ------------------------------------------------------------
   8.1 LENTES MULTIFOCAIS
   ------------------------------------------------------------ */
.vo-multifocal {
  background: #ffffff;
  padding: 80px 20px;
}

.vo-multifocal__inner {
  max-width: var(--vo-shell);
  margin: 0 auto;
  display: grid;
  gap: 36px;
}

.vo-multifocal__head {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.vo-multifocal__intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--vo-muted);
  margin: 0;
}

.vo-multifocal__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  background: linear-gradient(135deg, #0a5c8f, #08283d);
  border-radius: 24px;
  padding: 44px 40px;
}

.vo-multifocal__criteria {
  display: grid;
  gap: 18px;
  align-content: start;
}

.vo-multifocal__criteria-title {
  font-family: var(--vo-font-head);
  font-weight: 600;
  font-size: 16px;
  color: #eaf6fd;
}

.vo-multifocal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.vo-multifocal__list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.55;
  color: #dcecf7;
}

.vo-multifocal__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--vo-blue-soft);
  font-weight: 700;
}

.vo-multifocal__closing {
  display: grid;
  gap: 22px;
  align-content: start;
}

.vo-multifocal__closing p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  font-style: italic;
  color: #ffffff;
}

.vo-multifocal__cta {
  font-size: 15px;
  padding: 15px 26px;
  justify-self: start;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.6);
}

/* ------------------------------------------------------------
   9. PROVA SOCIAL
   ------------------------------------------------------------ */
.vo-proof {
  background: #ffffff;
  padding: 72px 20px;
}

.vo-proof__inner {
  max-width: var(--vo-shell);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  justify-items: center;
  text-align: center;
}

.vo-proof__badge {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid var(--vo-border);
  border-radius: 22px;
  padding: 24px 34px;
  background: var(--vo-bg-soft);
}

.vo-proof__badge-icon {
  width: 64px;
  height: 64px;
}

.vo-proof__badge-info {
  display: grid;
  gap: 4px;
  text-align: left;
}

.vo-proof__score {
  font-family: var(--vo-font-head);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.vo-proof__stars {
  font-size: 15px;
  color: var(--vo-muted);
  letter-spacing: 0.2em;
}

.vo-proof__divider {
  width: 1px;
  height: 48px;
  background: #dbe8f1;
}

.vo-proof__badge-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--vo-muted);
  margin: 0;
  max-width: 320px;
  text-align: left;
}

.vo-proof__testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  width: 100%;
  text-align: left;
}

.vo-testimonial {
  background: var(--vo-bg-soft);
  border: 1px solid var(--vo-border);
  border-radius: 20px;
  padding: 26px 24px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.vo-testimonial__stars {
  font-size: 15px;
  color: #f2a900;
  letter-spacing: 0.15em;
}

.vo-testimonial__text {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--vo-ink);
  margin: 0;
}

.vo-testimonial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--vo-border);
}

.vo-testimonial__author {
  font-family: var(--vo-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--vo-ink);
}

.vo-testimonial__source {
  font-size: 12px;
  color: var(--vo-muted);
}

/* ------------------------------------------------------------
   10. CTA INTERMEDIÁRIO
   ------------------------------------------------------------ */
.vo-cta {
  position: relative;
  overflow: hidden;
}

.vo-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vo-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 45, 70, 0.92), rgba(10, 107, 168, 0.62));
}

.vo-cta__content {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 20px;
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.vo-cta__title {
  font-family: var(--vo-font-head);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0;
  max-width: 620px;
  text-wrap: pretty;
}

.vo-cta__text {
  font-size: 17px;
  line-height: 1.6;
  color: #dcecf7;
  margin: 0;
  max-width: 560px;
}

.vo-cta__btn {
  font-size: 17px;
  padding: 18px 30px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.7);
}

/* ------------------------------------------------------------
   10.1 ENDEREÇO E LOCALIZAÇÃO
   ------------------------------------------------------------ */
.vo-location {
  background: var(--vo-bg-light);
  padding: 80px 20px;
}

.vo-location__inner {
  max-width: var(--vo-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px;
  align-items: center;
}

.vo-location__map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--vo-border);
}

.vo-location__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.vo-location__body {
  display: grid;
  gap: 18px;
}

.vo-location__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--vo-muted);
  margin: 0;
}

.vo-location__details {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--vo-border);
  border-radius: 16px;
}

.vo-location__item {
  display: grid;
  gap: 2px;
}

.vo-location__label {
  font-family: var(--vo-font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-blue);
}

.vo-location__value {
  font-size: 16px;
  color: var(--vo-ink);
}

.vo-location__cta {
  font-size: 15px;
  padding: 15px 26px;
  justify-self: start;
}

/* ------------------------------------------------------------
   11. FORMULÁRIO
   ------------------------------------------------------------ */
.vo-form-section {
  background: var(--vo-bg-light);
  padding: 80px 20px;
}

.vo-form-section__inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.vo-form-section__head {
  display: grid;
  gap: 12px;
}

.vo-form-section__title {
  font-family: var(--vo-font-head);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin: 0;
}

.vo-form-section__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--vo-muted);
  margin: 0;
}

/* Formulário PHP herdado — apenas estilo visual */
.vo-form-card form {
  background: #ffffff;
  border: 1px solid var(--vo-border);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  gap: 18px;
}

.vo-form-card .form-group {
  display: grid;
  gap: 7px;
  margin: 0;
}

.vo-form-card .form-group > label {
  font-family: var(--vo-font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--vo-ink);
  margin: 0;
}

.vo-form-card .form-control,
.vo-form-card .form-select {
  font-family: var(--vo-font-body);
  font-size: 16px;
  color: var(--vo-ink);
  padding: 13px 14px;
  border: 1px solid var(--vo-border-input);
  border-radius: 10px;
  background: #ffffff;
  width: 100%;
  line-height: 1.5;
}

.vo-form-card .form-control:focus,
.vo-form-card .form-select:focus {
  outline: none;
  border-color: var(--vo-blue-light);
  box-shadow: 0 0 0 3px rgba(41, 168, 223, 0.18);
}

/* Pergunta de receita (radio) */
.vo-form-card fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 22px;
}

.vo-form-card legend {
  flex-basis: 100%;
  float: none;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--vo-font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--vo-ink);
  line-height: 1.4;
}

.vo-form-card .form-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  min-height: 0;
  font-size: 16px;
}

.vo-form-card .form-check-input {
  -webkit-appearance: auto;
  appearance: auto;
  width: auto;
  height: auto;
  margin: 0;
  border: initial;
  background: initial;
  border-radius: 0;
  box-shadow: none;
  flex: none;
}

.vo-form-card .form-check label {
  margin: 0;
  font-family: var(--vo-font-body);
  font-size: 16px;
  color: var(--vo-ink);
}

/* Oculta o asterisco de obrigatório (o design não o utiliza) */
.vo-form-card .required {
  display: none;
}

/* Botão de envio */
.vo-form-card .btn-custom-primary {
  font-family: var(--vo-font-head);
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  background: var(--vo-gradient);
  border: 0;
  padding: 16px 26px;
  border-radius: 999px;
  cursor: pointer;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: filter 0.2s ease;
}

.vo-form-card .btn-custom-primary:hover:not(:disabled) {
  filter: brightness(1.08);
}

.vo-form-card .btn-custom-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vo-form-card .spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}

.vo-form-card .alert {
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 16px;
  margin: 0;
}

/* ------------------------------------------------------------
   12. FAQ
   ------------------------------------------------------------ */
.vo-faq {
  background: #ffffff;
  padding: 80px 20px;
}

.vo-faq__inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.vo-faq__head {
  display: grid;
  gap: 12px;
}

.vo-faq__title {
  font-family: var(--vo-font-head);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin: 0;
}

.vo-faq__list {
  display: grid;
  gap: 12px;
}

.vo-faq__item {
  border: 1px solid var(--vo-border);
  border-radius: 16px;
  background: var(--vo-bg-soft);
  overflow: hidden;
}

.vo-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--vo-font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--vo-ink);
}

.vo-faq__sign {
  font-family: var(--vo-font-head);
  font-size: 22px;
  font-weight: 400;
  color: var(--vo-blue);
  line-height: 1;
}

.vo-faq__answer {
  margin: 0;
}

.vo-faq__answer p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--vo-muted);
}

/* ------------------------------------------------------------
   13. RODAPÉ
   ------------------------------------------------------------ */
.vo-footer {
  background: #000f22;
  color: #cfe4f1;
  padding: 56px 20px 40px;
}

.vo-footer__inner {
  max-width: var(--vo-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: start;
}

.vo-footer__col {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.vo-footer__col--contact {
  gap: 10px;
}

.vo-footer__logo {
  height: 68px;
  width: auto;
}

.vo-footer__about {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #9dc2d8;
}

.vo-footer__heading {
  font-family: var(--vo-font-head);
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

.vo-footer__link {
  font-size: 16px;
  color: #cfe4f1;
  transition: color 0.2s ease;
}

.vo-footer__link:hover {
  color: var(--vo-blue-soft);
}

.vo-footer__plain {
  font-size: 16px;
  color: #9dc2d8;
}

.vo-footer__cta {
  font-size: 16px;
  padding: 16px 26px;
}

.vo-footer__bottom {
  max-width: var(--vo-shell);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  color: #7fa3ba;
}

/* ------------------------------------------------------------
   14. BOTÃO FLUTUANTE DE WHATSAPP
   ------------------------------------------------------------ */
.vo-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--vo-whatsapp);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.45);
  transition: filter 0.2s ease;
}

.vo-whatsapp-float:hover {
  filter: brightness(1.06);
}
