/* ==============================================================
   VITALIS CENTRO MÉDICO — TEMA CLARO / BRANCO / SAGE
   Direção visual: saúde humanizada, suave, premium e acessível
   ============================================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* Paleta clara */
  --v-bg: #fbfaf8;
  --v-bg-soft: #f4f1ec;
  --v-bg-warm: #fff;
  --v-ink: #1a2421;
  --v-ink-2: #3d4a47;
  --v-ink-3: #4a5551;
  --v-line: #e8e4dd;
  --v-line-soft: #efebe3;

  /* Sage + mint primária */
  --v-primary: #2e7d5f;
  --v-primary-dark: #1f5842;
  --v-primary-soft: #d7ebdf;
  --v-primary-faint: #ecf6ef;

  /* Acentos quentes (botões, destaques) */
  --v-accent: #c97f3a; /* terracota suave */
  --v-accent-soft: #f5e6d6;
  --v-accent-faint: #fbf2e7;

  /* Coral / coração */
  --v-coral: #d96b5b;

  /* Tipografia */
  --v-font-serif: 'Fraunces', 'Cormorant Garamond', georgia, serif;
  --v-font-sans: 'Inter', -apple-system, blinkmacsystemfont, sans-serif;
  --v-font-mono: 'JetBrains Mono', monospace;

  /* Escala */
  --v-step--1: clamp(0.85rem, 0.83rem + 0.1vw, 0.9rem);
  --v-step-0: clamp(1rem, 0.95rem + 0.2vw, 1.075rem);
  --v-step-1: clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  --v-step-2: clamp(1.45rem, 1.3rem + 0.6vw, 1.75rem);
  --v-step-3: clamp(1.85rem, 1.55rem + 1.2vw, 2.4rem);
  --v-step-4: clamp(2.4rem, 1.9rem + 2vw, 3.4rem);
  --v-step-5: clamp(3rem, 2.3rem + 3vw, 4.6rem);

  /* Espaçamento */
  --v-gutter: clamp(1.5rem, 8vw, 10vw);
  --v-section-y: clamp(4rem, 3rem + 4vw, 7rem);
  --v-radius: 14px;
  --v-radius-lg: 22px;
  --v-radius-xl: 32px;

  /* Motion */
  --v-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--v-font-sans);
  font-size: var(--v-step-0);
  line-height: 1.65;
  color: var(--v-ink);
  background: var(--v-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

::selection {
  background: var(--v-primary);
  color: white;
}

/* Foco visível global (teclado) */
:focus-visible {
  outline: 2px solid var(--v-primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip Link */
.v-skip-link {
  position: absolute;
  left: -9999px;
  background: var(--v-ink);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 999;
}
.v-skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Reading progress */
.v-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--v-primary), var(--v-accent));
  width: 0;
  z-index: 100;
  transition: width 0.15s var(--v-ease);
}

/* ---------- Container ---------- */
.v-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 8vw, 10vw);
}

/* ---------- Navigation ---------- */
.v-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.5rem, 8vw, 10vw);
  background: rgba(251, 250, 248, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--v-ease);
}
.v-nav--scrolled {
  background: rgba(251, 250, 248, 0.92);
  border-bottom-color: var(--v-line);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  box-shadow: 0 8px 24px -16px rgba(46, 125, 95, 0.18);
}

.v-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--v-font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--v-ink);
}
.v-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--v-primary);
  color: white;
  border-radius: 50%;
  box-shadow: 0 8px 20px -8px rgba(46, 125, 95, 0.4);
}
.v-logo-accent {
  color: var(--v-accent);
}

.v-nav-links {
  display: flex;
  gap: 0.4rem;
}
.v-nav-links a {
  position: relative;
  padding: 0.45rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--v-ink-2);
  border-radius: 10px;
  transition: all 0.25s var(--v-ease);
}
.v-nav-links a:hover {
  color: var(--v-primary);
  background: var(--v-primary-faint);
}
.v-nav-links a.active {
  color: var(--v-primary);
}
.v-nav-links a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 4px;
  height: 4px;
  background: var(--v-primary);
  border-radius: 50%;
  transform: translateX(-50%);
}

.v-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.v-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--v-ink-2);
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  transition: color 0.25s;
}
.v-nav-phone:hover {
  color: var(--v-primary);
}

.v-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}
.v-nav-toggle span {
  height: 2px;
  background: var(--v-ink);
  border-radius: 2px;
  transition: all 0.3s var(--v-ease);
}
.v-nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.v-nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.v-nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.v-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: all 0.3s var(--v-ease);
  position: relative;
  white-space: nowrap;
}
.v-btn--small {
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
}
.v-btn--primary {
  background: var(--v-ink);
  color: white;
  box-shadow: 0 12px 24px -10px rgba(26, 36, 33, 0.4);
}
.v-btn--primary:hover {
  background: var(--v-primary);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -10px rgba(46, 125, 95, 0.45);
}
.v-btn--ghost {
  background: transparent;
  color: var(--v-ink);
  border: 1px solid var(--v-line);
}
.v-btn--ghost:hover {
  border-color: var(--v-primary);
  color: var(--v-primary);
}
.v-btn--outline {
  background: white;
  color: var(--v-primary);
  border: 1.5px solid var(--v-primary);
}
.v-btn--outline:hover {
  background: var(--v-primary);
  color: white;
}
.v-btn--block {
  width: 100%;
  justify-content: center;
}
.v-btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: v-spin 0.8s linear infinite;
}
.v-btn.loading .v-btn-text {
  opacity: 0;
}
.v-btn.loading .v-btn-spinner {
  display: inline-block;
  position: absolute;
}

@keyframes v-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Sections ---------- */
.v-section {
  position: relative;
  padding: var(--v-section-y) 0;
}
.v-section--light {
  background: var(--v-bg-warm);
}
.v-section--soft {
  background: var(--v-bg-soft);
}
.v-section--accent {
  background: linear-gradient(180deg, var(--v-primary-dark) 0%, var(--v-primary) 100%);
  color: white;
}
.v-section--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.v-root {
  outline: none;
}

/* ---------- Hero ---------- */
.v-hero {
  padding-top: clamp(7rem, 6rem + 4vw, 9rem);
  padding-bottom: clamp(3rem, 2rem + 3vw, 5rem);
  overflow: hidden;
  position: relative;
}
.v-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.v-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(46, 125, 95, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(46, 125, 95, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
}
.v-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: v-float 12s ease-in-out infinite;
}
.v-hero-blob--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--v-primary-soft), transparent 70%);
  top: -10%;
  left: -8%;
}
.v-hero-blob--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--v-accent-soft), transparent 70%);
  bottom: -15%;
  right: 10%;
  animation-delay: -4s;
}
.v-hero-blob--3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #c8e6c9, transparent 70%);
  top: 40%;
  right: -5%;
  animation-delay: -7s;
}

@keyframes v-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.v-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}

.v-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  background: white;
  border: 1px solid var(--v-line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--v-ink-2);
  box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.06);
}
.v-badge--soft {
  background: var(--v-primary-faint);
  border-color: var(--v-primary-soft);
  color: var(--v-primary-dark);
}
.v-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--v-primary);
  border-radius: 50%;
  animation: v-pulse 2s ease-in-out infinite;
}

@keyframes v-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.v-title {
  font-family: var(--v-font-serif);
  font-size: var(--v-step-5);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 1.4rem 0 1.5rem;
  color: var(--v-ink);
}
.v-title-line {
  display: block;
}
.v-title-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--v-primary);
  position: relative;
}
.v-title-italic::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50%;
  height: 6px;
  background: var(--v-accent-soft);
  border-radius: 6px;
  z-index: -1;
}

.v-subtitle {
  font-size: var(--v-step-1);
  color: var(--v-ink-3);
  max-width: 56ch;
  margin: 0 0 2rem;
}

.v-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.v-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--v-line);
}
.v-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--v-ink-2);
}
.v-trust-item svg {
  color: var(--v-primary);
}
.v-trust-divider {
  width: 4px;
  height: 4px;
  background: var(--v-line);
  border-radius: 50%;
}

/* Hero card preview */
.v-hero-card {
  background: white;
  border: 1px solid var(--v-line);
  border-radius: var(--v-radius-xl);
  padding: 1.6rem;
  box-shadow:
    0 32px 64px -32px rgba(46, 125, 95, 0.18),
    0 12px 24px -16px rgba(0, 0, 0, 0.04);
  position: relative;
  transform: rotate(2deg);
  transition: transform 0.5s var(--v-ease);
}
.v-hero-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.v-hero-card-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed var(--v-line);
}
.v-hero-card-head strong {
  display: block;
  font-size: 0.95rem;
}
.v-hero-card-head span {
  display: block;
  font-size: 0.78rem;
  color: var(--v-ink-3);
}
.v-hero-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v-primary), var(--v-primary-dark));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.v-hero-card-status {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  background: var(--v-primary-faint);
  color: var(--v-primary-dark);
  border-radius: 999px;
  white-space: nowrap;
}

.v-hero-card-body {
  padding: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.v-hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.v-hero-card-row span {
  color: var(--v-ink-3);
}
.v-hero-card-row strong {
  font-weight: 500;
}

.v-hero-card-foot {
  padding-top: 1.2rem;
  border-top: 1px dashed var(--v-line);
}
.v-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.v-stars {
  color: #e8a93c;
  letter-spacing: 0.05em;
}
.v-rating-num {
  font-weight: 600;
  color: var(--v-ink);
}
.v-rating-count {
  color: var(--v-ink-3);
}

.v-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--v-ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0.7;
}
.v-scroll-arrow {
  width: 1px;
  height: 28px;
  background: var(--v-ink-3);
  position: relative;
  animation: v-scroll-down 2s ease-in-out infinite;
}

@keyframes v-scroll-down {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1.4);
    opacity: 1;
  }
}

/* ---------- Eyebrow ---------- */
.v-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v-primary-dark);
  margin-bottom: 1rem;
}
.v-eyebrow-mark {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--v-primary);
  position: relative;
}
.v-eyebrow-mark::after {
  content: '';
  position: absolute;
  left: -3px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v-primary);
}
.v-eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}
.v-eyebrow--light .v-eyebrow-mark {
  background: var(--v-accent-soft);
}
.v-eyebrow--light .v-eyebrow-mark::after {
  background: var(--v-accent-soft);
}

/* ---------- Heading ---------- */
.v-heading {
  font-family: var(--v-font-serif);
  font-size: var(--v-step-4);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--v-ink);
  margin: 0 0 1.4rem;
}
.v-heading--light {
  color: white;
}
.v-heading-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--v-primary);
}
.v-heading-accent--light {
  color: var(--v-accent-soft);
}

.v-body {
  font-size: var(--v-step-1);
  color: var(--v-ink-2);
  max-width: 60ch;
  margin: 0 0 1.2rem;
  line-height: 1.7;
}
.v-body--light {
  color: rgba(255, 255, 255, 0.78);
}
.v-body strong {
  color: var(--v-ink);
  font-weight: 600;
}

.v-section-header {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.v-section-header .v-eyebrow {
  justify-content: center;
}
.v-section-header .v-heading {
  margin-bottom: 1rem;
}
.v-section-desc {
  font-size: var(--v-step-1);
  color: var(--v-ink-3);
  margin: 0;
  line-height: 1.65;
}

.v-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.v-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  background: white;
  border: 1px solid var(--v-line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--v-ink-2);
}
.v-pill--light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Stats ---------- */
.v-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  margin-top: 1rem;
  border-top: 1px solid var(--v-line);
}
.v-stat {
  display: flex;
  flex-direction: column;
}
.v-stat-num {
  font-family: var(--v-font-serif);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--v-primary);
  letter-spacing: -0.02em;
  display: inline;
}
.v-stat-suffix {
  font-family: var(--v-font-serif);
  font-size: clamp(1.4rem, 1rem + 1vw, 1.8rem);
  color: var(--v-accent);
  margin-left: 2px;
  font-weight: 500;
}
.v-stat-label {
  font-size: 0.82rem;
  color: var(--v-ink-3);
  margin-top: 0.5rem;
}

/* ---------- Grid ---------- */
.v-grid {
  display: grid;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
}
.v-grid--about {
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}
.v-grid--why {
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
}

/* About frame */
.v-about-frame {
  position: relative;
  border-radius: var(--v-radius-xl);
  overflow: visible;
}
.v-about-illustration {
  border-radius: var(--v-radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 64px -32px rgba(46, 125, 95, 0.2);
}
.v-about-card-floating {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  background: white;
  border: 1px solid var(--v-line);
  border-radius: var(--v-radius-lg);
  padding: 1rem 1.2rem;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  animation: v-float-soft 6s ease-in-out infinite;
}
.v-about-card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--v-primary-faint);
  color: var(--v-primary);
  border-radius: 12px;
  flex-shrink: 0;
}
.v-about-card-floating strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}
.v-about-card-floating span {
  display: block;
  font-size: 0.78rem;
  color: var(--v-ink-3);
  line-height: 1.4;
}

@keyframes v-float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ---------- Specialties Grid ---------- */
.v-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.v-spec-card {
  position: relative;
  background: white;
  border: 1px solid var(--v-line);
  border-radius: var(--v-radius-lg);
  padding: 1.8rem 1.6rem;
  transition: all 0.4s var(--v-ease);
  overflow: hidden;
}
.v-spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--v-primary), var(--v-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--v-ease);
}
.v-spec-card:hover {
  border-color: var(--v-primary-soft);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(46, 125, 95, 0.2);
}
.v-spec-card:hover::before {
  transform: scaleX(1);
}

.v-spec-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--v-primary-faint);
  color: var(--v-primary);
  border-radius: 18px;
  margin-bottom: 1.2rem;
  transition: all 0.4s var(--v-ease);
}
.v-spec-card:hover .v-spec-icon {
  background: var(--v-primary);
  color: white;
  transform: rotate(-6deg) scale(1.05);
}

.v-spec-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--v-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--v-ink-3);
  letter-spacing: 0.1em;
}

.v-spec-title {
  font-family: var(--v-font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
  color: var(--v-ink);
}
.v-spec-desc {
  font-size: 0.9rem;
  color: var(--v-ink-3);
  margin: 0 0 1.2rem;
  line-height: 1.6;
}
.v-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--v-line);
}
.v-spec-tags li {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: var(--v-bg);
  color: var(--v-ink-2);
  border-radius: 6px;
  font-weight: 500;
}

.v-section-cta {
  margin-top: 3rem;
  text-align: center;
}
.v-section-cta p {
  font-size: var(--v-step-1);
  color: var(--v-ink-3);
  margin: 0 0 1.5rem;
}

/* ---------- Team ---------- */
.v-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.v-team-card {
  background: white;
  border: 1px solid var(--v-line);
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--v-ease);
}
.v-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(46, 125, 95, 0.25);
}

.v-team-photo {
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.v-team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.4));
}
.v-team-photo--1 {
  background: linear-gradient(135deg, #d7ebdf, #a5d6a7);
}
.v-team-photo--2 {
  background: linear-gradient(135deg, #f5e6d6, #e8c39e);
}
.v-team-photo--3 {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}
.v-team-photo--4 {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.v-team-initials {
  font-family: var(--v-font-serif);
  font-size: 4rem;
  font-weight: 500;
  color: white;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.02em;
  z-index: 1;
}
.v-team-body {
  padding: 1.5rem;
}
.v-team-name {
  font-family: var(--v-font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.3rem;
  color: var(--v-ink);
}
.v-team-role {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--v-primary);
  margin-bottom: 0.85rem;
}
.v-team-desc {
  font-size: 0.88rem;
  color: var(--v-ink-3);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.v-team-flag {
  display: inline-block;
  font-family: var(--v-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--v-ink-3);
  padding: 0.3rem 0.65rem;
  background: var(--v-bg-soft);
  border-radius: 6px;
  letter-spacing: 0.05em;
}

/* ---------- Differentials ---------- */
.v-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.v-diff-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v-radius-lg);
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--v-ease);
}
.v-diff-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.v-diff-num {
  display: inline-block;
  font-family: var(--v-font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--v-accent-soft);
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
}
.v-diff-title {
  font-family: var(--v-font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
  color: white;
}
.v-diff-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.v-test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.v-test-card {
  background: white;
  border: 1px solid var(--v-line);
  border-radius: var(--v-radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.4s var(--v-ease);
}
.v-test-card:hover {
  border-color: var(--v-primary-soft);
  transform: translateY(-4px);
}
.v-test-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-family: var(--v-font-serif);
  font-size: 5rem;
  color: var(--v-primary-soft);
  line-height: 1;
}
.v-test-quote {
  font-family: var(--v-font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--v-ink);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}
.v-test-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--v-line);
}
.v-test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--v-bg-soft);
  display: grid;
  place-items: center;
  font-family: var(--v-font-serif);
  font-weight: 600;
  color: var(--v-primary);
  flex-shrink: 0;
}
.v-test-author strong {
  display: block;
  font-size: 0.92rem;
}
.v-test-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--v-ink-3);
}

/* ---------- FAQ ---------- */
.v-faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.v-faq-item {
  background: white;
  border: 1px solid var(--v-line);
  border-radius: var(--v-radius);
  transition: all 0.3s var(--v-ease);
}
.v-faq-item[open] {
  border-color: var(--v-primary-soft);
  box-shadow: 0 12px 32px -16px rgba(46, 125, 95, 0.15);
}
.v-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  color: var(--v-ink);
  list-style: none;
}
.v-faq-item summary::-webkit-details-marker {
  display: none;
}
.v-faq-item summary svg {
  transition: transform 0.3s var(--v-ease);
  color: var(--v-primary);
}
.v-faq-item[open] summary svg {
  transform: rotate(180deg);
}
.v-faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--v-ink-2);
  font-size: 0.95rem;
  line-height: 1.7;
}
.v-faq-answer p {
  margin: 0;
}

/* ---------- Contact ---------- */
.v-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: start;
}
.v-contact-info .v-heading {
  margin-bottom: 1rem;
}

.v-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.v-contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  background: white;
  border: 1px solid var(--v-line);
  border-radius: var(--v-radius);
  transition: all 0.3s var(--v-ease);
}
.v-contact-item:hover {
  border-color: var(--v-primary-soft);
  transform: translateX(4px);
}
.v-contact-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--v-primary-faint);
  color: var(--v-primary);
  border-radius: 12px;
  flex-shrink: 0;
}
.v-contact-item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.v-contact-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--v-ink-3);
  line-height: 1.5;
}

.v-form-card {
  background: white;
  border: 1px solid var(--v-line);
  border-radius: var(--v-radius-xl);
  padding: 2.4rem;
  box-shadow: 0 24px 48px -24px rgba(46, 125, 95, 0.15);
}
.v-form-title {
  font-family: var(--v-font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--v-ink);
}
.v-form-subtitle {
  font-size: 0.9rem;
  color: var(--v-ink-3);
  margin: 0 0 1.8rem;
}

.v-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.v-form-group {
  margin-bottom: 1rem;
}
.v-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--v-ink-2);
  margin-bottom: 0.5rem;
}
.v-form-group input,
.v-form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--v-line);
  border-radius: 10px;
  background: var(--v-bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--v-ink);
  transition: all 0.25s var(--v-ease);
}
.v-form-group input:focus,
.v-form-group textarea:focus {
  outline: none;
  border-color: var(--v-primary);
  background: white;
  box-shadow: 0 0 0 4px var(--v-primary-faint);
}
.v-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.v-select-wrapper {
  position: relative;
}
.v-select-wrapper select {
  width: 100%;
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  border: 1.5px solid var(--v-line);
  border-radius: 10px;
  background: var(--v-bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--v-ink);
  appearance: none;
  cursor: pointer;
}
.v-select-wrapper select:focus {
  outline: none;
  border-color: var(--v-primary);
  box-shadow: 0 0 0 4px var(--v-primary-faint);
}
.v-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--v-ink-3);
}

/* ---------- Footer ---------- */
.v-footer {
  background: var(--v-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
}
.v-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.v-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--v-font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}
.v-footer-brand .v-logo-mark {
  box-shadow: none;
}
.v-footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0 0 1.2rem;
  max-width: 38ch;
}
.v-footer-oab {
  font-size: 0.75rem;
  font-family: var(--v-font-mono);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}
.v-footer-col h4 {
  font-family: var(--v-font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: white;
  margin: 0 0 1.2rem;
}
.v-footer-col ul li {
  margin-bottom: 0.65rem;
}
.v-footer-col a {
  font-size: 0.88rem;
  transition: color 0.25s;
}
.v-footer-col a:hover {
  color: var(--v-accent-soft);
}

.v-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.82rem;
}
.v-footer-bottom-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.v-footer-bottom-links span {
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- Back to top ---------- */
.v-back-to-top {
  position: fixed;
  bottom: 2rem;
  bottom: calc(2rem + env(safe-area-inset-bottom));
  right: 2rem;
  right: calc(2rem + env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  background: var(--v-ink);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s var(--v-ease);
  z-index: 40;
}
.v-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.v-back-to-top:hover {
  background: var(--v-primary);
  transform: translateY(-4px);
}

/* ---------- Toast ---------- */
.v-toast {
  position: fixed;
  bottom: 2rem;
  bottom: calc(2rem + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--v-ink);
  color: white;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 60;
  transition: all 0.4s var(--v-ease);
  max-width: calc(100vw - 2rem);
  text-align: center;
}

@media (max-width: 640px) {
  .v-toast {
    border-radius: 14px;
  }
}
.v-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Reveal Animation ---------- */
.v-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--v-ease),
    transform 0.8s var(--v-ease);
}
.v-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* No-JS fallback: reveal content when JavaScript is unavailable. */
.no-js .v-reveal {
  opacity: 1;
  transform: none;
}
.v-reveal-delay-1 {
  transition-delay: 0.12s;
}
.v-reveal-delay-2 {
  transition-delay: 0.24s;
}
.v-reveal-delay-3 {
  transition-delay: 0.36s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .v-nav-links {
    display: none;
  }
  .v-nav-toggle {
    display: flex;
  }
  .v-nav-phone {
    /* Em telas pequenas mantém só o ícone com área de toque adequada */
    padding: 0.6rem;
  }
  .v-nav-phone span {
    display: none;
  }

  .v-nav-links.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
    background: var(--v-bg-warm);
    flex-direction: column;
    padding: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
    border-bottom: 1px solid var(--v-line);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
  }
  .v-nav-links.active a {
    padding: 0.75rem 1rem;
  }

  .v-hero-container {
    grid-template-columns: 1fr;
  }
  .v-hero-card {
    transform: rotate(0deg);
    max-width: 420px;
    margin: 0 auto;
  }
  .v-grid--about,
  .v-grid--why {
    grid-template-columns: 1fr;
  }
  .v-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .v-diff-grid {
    grid-template-columns: 1fr;
  }
  .v-contact-grid {
    grid-template-columns: 1fr;
  }
  .v-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .v-section {
    padding: 4rem 0;
  }
  .v-hero {
    padding-top: 7rem;
  }
  .v-hero-trust {
    gap: 0.5rem;
  }
  .v-trust-divider {
    display: none;
  }
  .v-stats {
    grid-template-columns: 1fr 1fr;
  }
  .v-form-row {
    grid-template-columns: 1fr;
  }
  .v-form-card {
    padding: 1.6rem;
  }
  .v-footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .v-footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  .v-about-card-floating {
    left: 0.5rem;
    bottom: 1rem;
    padding: 0.85rem 1rem;
  }
  .v-about-card-floating strong {
    font-size: 0.85rem;
  }
  .v-about-card-floating span {
    font-size: 0.72rem;
  }
  .v-scroll-hint {
    display: none;
  }

  /* Esconde o CTA textual no mobile; o menu e o telefone-ícone permanecem */
  .v-nav .v-btn--small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .v-hero-blob,
  .v-about-card-floating,
  .v-badge-dot {
    animation: none;
  }
  .v-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==============================================================
   LANGUAGE SWITCHER (pt-BR / en)
   ============================================================== */

.ff-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  border: 1px solid var(--v-line);
  border-radius: 999px;
  background: var(--v-bg-warm);
}

.ff-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: var(--v-bg-warm);
  cursor: pointer;
  transition: all 0.25s var(--v-ease);
}

.ff-lang-btn svg {
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  opacity: 0.45;
  transition: opacity 0.25s var(--v-ease);
  box-shadow: 0 1px 4px rgba(26, 36, 33, 0.18);
}

.ff-lang-btn:hover {
  transform: translateY(-1px);
}

.ff-lang-btn:hover svg {
  opacity: 0.85;
}

.ff-lang-btn:focus-visible {
  outline: 2px solid var(--v-primary);
  outline-offset: 2px;
}

.ff-lang-btn.is-active {
  border-color: var(--v-primary);
  box-shadow: 0 0 10px rgba(46, 125, 95, 0.35);
}

.ff-lang-btn.is-active svg {
  opacity: 1;
}

@media (max-width: 640px) {
  .ff-lang-btn {
    width: 40px;
    height: 40px;
  }
}
