/* ==========================================================================
   Veruh — Landing Page
   CSS próprio (complementa o Bootstrap 5.3)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens de design
   -------------------------------------------------------------------------- */
:root {
  /* Cores da marca */
  --vh-blue: #433efc;
  --vh-blue-600: #3730e8;
  --vh-blue-700: #2b25c9;
  --vh-blue-050: #eeedff;
  --vh-blue-100: #dedcfd;

  --vh-orange: #f18f53;
  --vh-orange-600: #e07a3a;
  --vh-orange-050: #fdf0e7;

  --vh-green: #01944e;
  --vh-green-050: #e6f5ed;

  --vh-ink: #2b2f38;
  --vh-gray: #5d6167;
  --vh-gray-400: #8b8f96;
  --vh-line: #e9e8f0;
  --vh-bg: #f9f9fb;
  --vh-white: #fff;

  /* Tipografia */
  --vh-font: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Métricas */
  --vh-radius: 14px;
  --vh-radius-lg: 22px;
  --vh-navbar-h: 74px;

  /* Sombras */
  --vh-shadow-sm: 0 1px 2px rgba(43, 47, 56, 0.06),
    0 2px 8px rgba(43, 47, 56, 0.04);
  --vh-shadow: 0 4px 12px rgba(43, 47, 56, 0.07),
    0 12px 32px rgba(43, 47, 56, 0.06);
  --vh-shadow-lg: 0 12px 28px rgba(67, 62, 252, 0.13),
    0 32px 64px rgba(43, 47, 56, 0.1);
  --vh-shadow-blue: 0 10px 24px rgba(67, 62, 252, 0.28);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  /* compensa a navbar fixa ao pular para as âncoras */
  scroll-padding-top: var(--vh-navbar-h);
}

body {
  font-family: var(--vh-font);
  color: var(--vh-gray);
  background: var(--vh-white);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--vh-font);
  color: var(--vh-ink);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1,
.h1 {
  font-size: clamp(2.1rem, 1.35rem + 2.6vw, 3.5rem);
}
h2,
.h2 {
  font-size: clamp(1.7rem, 1.2rem + 1.7vw, 2.6rem);
}
h3,
.h3 {
  font-size: clamp(1.2rem, 1.05rem + 0.55vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--vh-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--vh-blue-700);
}

img {
  max-width: 100%;
  height: auto;
}

strong,
b {
  font-weight: 700;
  color: var(--vh-ink);
}

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

/* Foco visível para navegação por teclado */
:focus-visible {
  outline: 3px solid var(--vh-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* --------------------------------------------------------------------------
   3. Componentes reutilizáveis
   -------------------------------------------------------------------------- */
.vh-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  position: relative;
}

.vh-section--tint {
  background: var(--vh-bg);
}

.vh-section--blue {
  background: linear-gradient(150deg, #3a35f0 0%, var(--vh-blue) 45%, #5b46ff 100%);
  color: #fff;
}
.vh-section--blue h2,
.vh-section--blue h3,
.vh-section--blue .vh-title {
  color: #fff;
}

/* Rótulo pequeno acima do título */
.vh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--vh-blue);
  background: var(--vh-blue-050);
  border-radius: 100px;
  padding: 0.4rem 0.95rem;
  margin-bottom: 1.1rem;
}
.vh-eyebrow--orange {
  color: var(--vh-orange-600);
  background: var(--vh-orange-050);
}
.vh-eyebrow--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.vh-title {
  margin-bottom: 1rem;
}

.vh-lead {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  color: var(--vh-gray);
  max-width: 62ch;
}
.vh-section--blue .vh-lead {
  color: rgba(255, 255, 255, 0.9);
}

.vh-section-head {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.vh-section-head .vh-lead {
  margin-inline: auto;
}

/* Texto com gradiente da marca */
.vh-grad {
  background: linear-gradient(100deg, var(--vh-blue) 0%, #7b5cff 45%, var(--vh-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--vh-blue);
}

/* --------------------------------------------------------------------------
   4. Botões
   -------------------------------------------------------------------------- */
.btn {
  font-weight: 700;
  border-radius: 100px;
  padding: 0.72rem 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  border-width: 2px;
}

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

.vh-btn-primary {
  background: var(--vh-blue);
  border-color: var(--vh-blue);
  color: #fff;
  box-shadow: var(--vh-shadow-blue);
}
.vh-btn-primary:hover,
.vh-btn-primary:focus {
  background: var(--vh-blue-700);
  border-color: var(--vh-blue-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(67, 62, 252, 0.36);
}

.vh-btn-outline {
  background: transparent;
  border-color: var(--vh-line);
  color: var(--vh-ink);
}
.vh-btn-outline:hover,
.vh-btn-outline:focus {
  background: var(--vh-ink);
  border-color: var(--vh-ink);
  color: #fff;
  transform: translateY(-2px);
}

.vh-btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--vh-blue);
}
.vh-btn-light:hover,
.vh-btn-light:focus {
  background: var(--vh-blue-050);
  border-color: var(--vh-blue-050);
  color: var(--vh-blue-700);
  transform: translateY(-2px);
}

.vh-btn-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.vh-btn-ghost-light:hover,
.vh-btn-ghost-light:focus {
  background: #fff;
  border-color: #fff;
  color: var(--vh-blue);
  transform: translateY(-2px);
}

.vh-btn-whats {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}
.vh-btn-whats:hover,
.vh-btn-whats:focus {
  background: #1eb955;
  border-color: #1eb955;
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.0625rem;
}

/* --------------------------------------------------------------------------
   5. Navbar
   -------------------------------------------------------------------------- */
.vh-navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  min-height: var(--vh-navbar-h);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.vh-navbar.is-stuck {
  border-bottom-color: var(--vh-line);
  box-shadow: 0 2px 18px rgba(43, 47, 56, 0.07);
  background: rgba(255, 255, 255, 0.95);
}

.vh-navbar .navbar-brand img {
  height: 28px;
  width: auto;
  display: block;
}

.vh-navbar .nav-link {
  color: var(--vh-ink);
  font-weight: 600;
  font-size: 0.975rem;
  padding: 0.5rem 0.95rem !important;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s ease;
}

.vh-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--vh-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.vh-navbar .nav-link:hover,
.vh-navbar .nav-link.active {
  color: var(--vh-blue);
}
.vh-navbar .nav-link:hover::after,
.vh-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.vh-navbar .navbar-toggler {
  border: 1px solid var(--vh-line);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
}
.vh-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: 3px solid var(--vh-blue-100);
  outline-offset: 2px;
}
.vh-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232b2f38' stroke-linecap='round' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.4em;
  height: 1.4em;
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.vh-hero {
  position: relative;
  padding: calc(var(--vh-navbar-h) + clamp(2.5rem, 2rem + 4vw, 5rem)) 0
    clamp(3.5rem, 3rem + 4vw, 6rem);
  background: linear-gradient(178deg, #f4f3ff 0%, #fbfaff 42%, #fff 100%);
  overflow: hidden;
}

/* Brilhos decorativos de fundo */
.vh-hero::before,
.vh-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.vh-hero::before {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -130px;
  background: radial-gradient(circle, rgba(67, 62, 252, 0.22), transparent 68%);
}
.vh-hero::after {
  width: 400px;
  height: 400px;
  bottom: -170px;
  left: -140px;
  background: radial-gradient(circle, rgba(241, 143, 83, 0.2), transparent 68%);
}
.vh-hero > .container {
  position: relative;
  z-index: 1;
}

.vh-hero h1 {
  margin-bottom: 1.1rem;
}

.vh-badge-price {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--vh-line);
  border-radius: 100px;
  padding: 0.45rem 1.1rem 0.45rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vh-ink);
  box-shadow: var(--vh-shadow-sm);
  margin-bottom: 1.5rem;
}
.vh-badge-price .vh-badge-price__tag {
  background: var(--vh-green-050);
  color: var(--vh-green);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}

.vh-hero__trust {
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vh-line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
}

.vh-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vh-gray);
}
.vh-trust-item svg {
  color: var(--vh-blue);
  flex-shrink: 0;
}

/* Moldura da imagem do hero */
.vh-hero__media {
  position: relative;
}

.vh-hero__frame {
  position: relative;
  border-radius: var(--vh-radius-lg);
  overflow: hidden;
  box-shadow: var(--vh-shadow-lg);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.vh-hero__frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Cartão flutuante sobre a imagem */
.vh-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--vh-radius);
  box-shadow: var(--vh-shadow);
  padding: 0.85rem 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vh-ink);
  animation: vh-float 5s ease-in-out infinite;
}
.vh-float-card small {
  display: block;
  font-weight: 500;
  font-size: 0.76rem;
  color: var(--vh-gray-400);
  line-height: 1.3;
}
.vh-float-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.vh-float-card--ia {
  bottom: 1.5rem;
  left: -1.25rem;
}
.vh-float-card--ia .vh-float-card__icon {
  background: var(--vh-blue-050);
  color: var(--vh-blue);
}
.vh-float-card--vend {
  top: 1.5rem;
  right: -1.25rem;
  animation-delay: -2.5s;
}
.vh-float-card--vend .vh-float-card__icon {
  background: var(--vh-green-050);
  color: var(--vh-green);
}

@keyframes vh-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* --------------------------------------------------------------------------
   7. Cards de funcionalidades
   -------------------------------------------------------------------------- */
.vh-card {
  background: #fff;
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius);
  padding: 1.7rem 1.5rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.vh-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vh-shadow);
  border-color: var(--vh-blue-100);
}

.vh-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--vh-blue-050);
  color: var(--vh-blue);
  margin-bottom: 1.1rem;
}
.vh-card__icon--orange {
  background: var(--vh-orange-050);
  color: var(--vh-orange-600);
}
.vh-card__icon--green {
  background: var(--vh-green-050);
  color: var(--vh-green);
}

.vh-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.vh-card p {
  font-size: 0.94rem;
  margin-bottom: 0;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   8. Seções com imagem + texto
   -------------------------------------------------------------------------- */
.vh-media {
  border-radius: var(--vh-radius-lg);
  overflow: hidden;
  box-shadow: var(--vh-shadow);
  position: relative;
}
.vh-media img {
  display: block;
  width: 100%;
  height: auto;
}

.vh-media--flush {
  box-shadow: none;
}

/* Lista com marcação de check */
.vh-checklist {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}
.vh-checklist li {
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: 0.85rem;
  font-size: 0.97rem;
  line-height: 1.6;
}
.vh-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--vh-green-050)
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2301944e' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'/%3e%3c/svg%3e")
    center / 12px no-repeat;
}
.vh-section--blue .vh-checklist li::before {
  background-color: rgba(255, 255, 255, 0.18);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'/%3e%3c/svg%3e");
}
.vh-section--blue .vh-checklist li {
  color: rgba(255, 255, 255, 0.92);
}

/* --------------------------------------------------------------------------
   9. Faixa de estatísticas
   -------------------------------------------------------------------------- */
.vh-stat {
  text-align: center;
  padding: 1rem 0.5rem;
}
.vh-stat__num {
  font-size: clamp(2rem, 1.5rem + 1.6vw, 2.9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}
.vh-stat__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. Planos
   -------------------------------------------------------------------------- */
.vh-plan {
  background: #fff;
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius-lg);
  padding: 2rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.vh-plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--vh-shadow);
}

.vh-plan--featured {
  border: 2px solid var(--vh-blue);
  box-shadow: var(--vh-shadow-lg);
}
.vh-plan--featured:hover {
  box-shadow: 0 18px 40px rgba(67, 62, 252, 0.22), 0 40px 72px rgba(43, 47, 56, 0.12);
}

.vh-plan__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vh-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 1.05rem;
  border-radius: 100px;
  white-space: nowrap;
}

.vh-plan__name {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.vh-plan__desc {
  font-size: 0.88rem;
  color: var(--vh-gray-400);
  margin-bottom: 1.3rem;
  min-height: 2.6em;
}

.vh-plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid var(--vh-line);
}
.vh-plan__currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vh-gray);
  align-self: flex-start;
  margin-top: 0.45rem;
}
.vh-plan__amount {
  font-size: clamp(2.2rem, 1.8rem + 1.4vw, 2.9rem);
  font-weight: 900;
  color: var(--vh-ink);
  line-height: 1;
  letter-spacing: -0.035em;
}
.vh-plan__period {
  font-size: 0.9rem;
  color: var(--vh-gray-400);
  font-weight: 600;
}

.vh-plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.7rem;
  flex-grow: 1;
}
.vh-plan__features li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.7rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--vh-gray);
}
.vh-plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--vh-blue-050)
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23433efc' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'/%3e%3c/svg%3e")
    center / 11px no-repeat;
}
.vh-plan--featured .vh-plan__features li::before {
  background-color: var(--vh-blue);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'/%3e%3c/svg%3e");
}

.vh-plan .btn {
  width: 100%;
}

/* Bloco de plano personalizado */
.vh-plan-custom {
  background: linear-gradient(135deg, var(--vh-ink) 0%, #3c4250 100%);
  border-radius: var(--vh-radius-lg);
  padding: clamp(2rem, 1.5rem + 2vw, 3rem);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 3rem;
}
.vh-plan-custom h3 {
  color: #fff;
}
.vh-plan-custom p {
  margin-bottom: 0;
  max-width: 70ch;
  font-size: 0.97rem;
}

/* --------------------------------------------------------------------------
   11. FAQ (accordion)
   -------------------------------------------------------------------------- */
.vh-faq .accordion-item {
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius) !important;
  margin-bottom: 0.85rem;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.vh-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--vh-blue-100);
  box-shadow: var(--vh-shadow-sm);
}

.vh-faq .accordion-button {
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--vh-ink);
  background: #fff;
  padding: 1.15rem 3.2rem 1.15rem 1.35rem;
  box-shadow: none !important;
  line-height: 1.45;
}
.vh-faq .accordion-button:not(.collapsed) {
  color: var(--vh-blue);
  background: var(--vh-blue-050);
}
.vh-faq .accordion-button::after {
  position: absolute;
  right: 1.35rem;
  width: 1.1rem;
  height: 1.1rem;
  background-size: 1.1rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23433efc'%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4'/%3e%3c/svg%3e");
}
.vh-faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23433efc'%3e%3cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8'/%3e%3c/svg%3e");
}
.vh-faq .accordion-body {
  padding: 0.35rem 1.35rem 1.35rem;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--vh-gray);
}
.vh-faq .accordion-body ul {
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}
.vh-faq .accordion-body li {
  margin-bottom: 0.35rem;
}

/* --------------------------------------------------------------------------
   12. Contato
   -------------------------------------------------------------------------- */
.vh-contact-card {
  background: #fff;
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.vh-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vh-shadow);
  border-color: var(--vh-blue-100);
}
.vh-contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: var(--vh-blue-050);
  color: var(--vh-blue);
}
.vh-contact-card__icon--whats {
  background: #e7f9ee;
  color: #1eb955;
}
.vh-contact-card__icon--mail {
  background: var(--vh-orange-050);
  color: var(--vh-orange-600);
}
.vh-contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.vh-contact-card p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.vh-contact-card .vh-contact-value {
  font-weight: 700;
  color: var(--vh-ink);
  font-size: 1rem;
  word-break: break-word;
}

.vh-social {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
}
.vh-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--vh-line);
  color: var(--vh-ink);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}
.vh-social a:hover {
  background: var(--vh-blue);
  border-color: var(--vh-blue);
  color: #fff;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   13. Rodapé
   -------------------------------------------------------------------------- */
.vh-footer {
  background: var(--vh-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3rem, 2.5rem + 2vw, 4.5rem) 0 0;
  font-size: 0.94rem;
}
.vh-footer h4 {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.vh-footer a {
  color: rgba(255, 255, 255, 0.7);
}
.vh-footer a:hover {
  color: #fff;
}
.vh-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vh-footer ul li {
  margin-bottom: 0.6rem;
}
.vh-footer .vh-footer__logo {
  height: 30px;
  width: auto;
  /* o logo é escuro; inverte para ficar legível no rodapé escuro */
  filter: brightness(0) invert(1);
  margin-bottom: 1.1rem;
}
.vh-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  font-size: 0.87rem;
}
.vh-footer__bottom p {
  margin: 0;
}
.vh-footer .vh-social a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.vh-footer .vh-social a:hover {
  background: var(--vh-blue);
  border-color: var(--vh-blue);
}

/* --------------------------------------------------------------------------
   14. Botão voltar ao topo
   -------------------------------------------------------------------------- */
.vh-totop {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--vh-blue);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--vh-shadow-blue);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease,
    background-color 0.2s ease;
  z-index: 1030;
}
.vh-totop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vh-totop:hover {
  background: var(--vh-blue-700);
}

/* --------------------------------------------------------------------------
   15. Animações de entrada
   -------------------------------------------------------------------------- */
.vh-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.vh-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   16. Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .vh-navbar {
    background: rgba(255, 255, 255, 0.97);
  }
  .vh-navbar .navbar-collapse {
    background: #fff;
    border: 1px solid var(--vh-line);
    border-radius: var(--vh-radius);
    padding: 1rem;
    margin-top: 0.75rem;
    box-shadow: var(--vh-shadow);
  }
  .vh-navbar .nav-link {
    padding: 0.65rem 0.75rem !important;
  }
  .vh-navbar .nav-link::after {
    display: none;
  }
  .vh-navbar .navbar-nav .btn {
    margin-top: 0.6rem;
    width: 100%;
  }

  .vh-hero {
    text-align: center;
  }
  .vh-hero .vh-lead {
    margin-inline: auto;
  }
  .vh-hero__actions,
  .vh-hero__trust {
    justify-content: center;
  }
  .vh-hero__media {
    margin-top: 3rem;
  }
  /* cartões flutuantes ficam dentro da moldura no mobile */
  .vh-float-card--ia {
    left: 0.75rem;
    bottom: 0.75rem;
  }
  .vh-float-card--vend {
    right: 0.75rem;
    top: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 1rem;
  }
  /* em telas estreitas os cartões flutuantes cobrem o rosto da modelo:
     esconde para a imagem do hero respirar */
  .vh-float-card {
    display: none;
  }
  .vh-hero__actions .btn {
    width: 100%;
  }
  .vh-plan-custom {
    text-align: center;
  }
  .vh-totop {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 42px;
    height: 42px;
  }
}

/* --------------------------------------------------------------------------
   17. Impressão
   -------------------------------------------------------------------------- */
@media print {
  .vh-navbar,
  .vh-totop,
  .vh-hero::before,
  .vh-hero::after {
    display: none !important;
  }
  .vh-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  body {
    color: #000;
  }
}
