/* ============================================================
   bucomaxilo.css — estrutura inspirada em drguilhermebucomaxilo.com.br
   Prefixo: vf- (Victor Falcone)
   Carregado APÓS layout-2.css. Override pontual onde necessário.
   ============================================================ */

/* ===== HELPERS COMUNS (vf-) ===== */
/* TODAS as section-head centralizadas por padrão (sem precisar de modifier) */
.vf-section-head {
  display: block;
  width: 100%;
  max-width: 860px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: var(--s-7);
  text-align: center !important;
}
.vf-section-head .vf-eyebrow,
.vf-section-head .vf-section-title,
.vf-section-head .vf-section-lede {
  text-align: center !important;
  width: 100%;
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* --center é alias retrocompat (já é o default agora) */
.vf-section-head--center { /* noop */ }

.vf-eyebrow {
  font-size: 0.95rem;                    /* +20% (era 0.78) */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-10);
  font-weight: 600;
  margin-bottom: var(--s-3);
  display: block;
}
.vf-eyebrow--gold { color: var(--gold-9); }

.vf-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.2rem + 3.6vw, 3.9rem);  /* +20% no clamp */
  line-height: 1.08;
  color: var(--deep-12);
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: var(--s-4);
  text-wrap: balance;
}
.vf-section-title--inverse { color: var(--cream-50); }

.vf-section-lede {
  font-size: 1.26rem;                    /* +20% (era 1.05) */
  color: var(--ink-600);
  line-height: 1.6;
  max-width: 70ch;                       /* aumenta proporcionalmente */
}


/* ============================================
   1. HERO — foto BG full + overlay deep + rating
   ============================================ */
.vf-hero {
  position: relative;
  min-height: clamp(640px, 80vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-12);
}
.vf-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vf-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.vf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(3, 21, 15, 0.94) 0%, rgba(8, 41, 33, 0.78) 45%, rgba(14, 61, 51, 0.42) 75%, rgba(14, 61, 51, 0.15) 100%),
    radial-gradient(circle at 100% 100%, rgba(63, 126, 123, 0.25) 0%, transparent 55%);
  pointer-events: none;
}
.vf-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: var(--s-9);   /* NÃO usar shorthand padding — zeraria padding-inline do .container */
  color: var(--cream-50);
  max-width: 680px;
}

.vf-hero__eyebrow {
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-7);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgba(212, 178, 100, 0.35);
  display: inline-block;
}

.vf-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 1.4rem + 4.8vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream-50);
  font-weight: 500;
  margin-bottom: var(--s-5);
  text-wrap: balance;
}

.vf-hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 0.9rem + 0.8vw, 1.55rem);
  line-height: 1.45;
  color: rgba(246, 247, 242, 0.92);
  max-width: 56ch;
  margin-bottom: var(--s-6);
}

.vf-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}

.vf-hero__crm {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  border: 1px solid rgba(212, 178, 100, 0.45);
  border-radius: var(--r-full);
  font-size: 0.92rem;
  color: var(--cream-50);
  background: rgba(14, 61, 51, 0.45);
  backdrop-filter: blur(8px);
}
.vf-hero__crm i { color: var(--gold-9); font-size: 1.2em; }
.vf-hero__crm strong { color: var(--gold-7); font-weight: 700; letter-spacing: 0.04em; }

.vf-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  background: rgba(246, 247, 242, 0.96);
  color: var(--deep-12);
  border-radius: var(--r-full);
  text-decoration: none;
  font-size: 0.92rem;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.vf-hero__rating:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(212, 178, 100, 0.45);
}
.vf-hero__rating-stars { color: var(--gold-9); font-size: 1rem; letter-spacing: 0.08em; }
.vf-hero__rating-value { font-weight: 700; font-size: 1rem; color: var(--deep-11); }
.vf-hero__rating-source { color: var(--ink-600); font-size: 0.84rem; }

.vf-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
}
.vf-hero__btn-primary {
  font-size: 1.05rem;
  padding: var(--s-4) var(--s-6);
}
.vf-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--cream-50);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(246, 247, 242, 0.35);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.vf-hero__phone i { color: var(--gold-9); font-size: 1.3em; }
.vf-hero__phone:hover { color: var(--gold-7); border-bottom-color: var(--gold-7); }

@media (max-width: 720px) {
  .vf-hero { min-height: clamp(560px, 90vh, 720px); }
  .vf-hero__inner { padding-block: var(--s-7) var(--s-6); }   /* preserva padding-inline do .container */
  .vf-hero__title { line-height: 1.05; }
  .vf-hero__cta { gap: var(--s-3); }
  .vf-hero__btn-primary { width: 100%; justify-content: center; }
  .vf-hero__phone { font-size: 1rem; }
}


/* ============================================
   2. FORMAÇÃO
   ============================================ */
.vf-formacao {
  padding: var(--section-y) 0;
  background: var(--cream-50);
}
.vf-formacao__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (min-width: 960px) {
  .vf-formacao__grid { grid-template-columns: 0.85fr 1.15fr; gap: var(--s-8); }
}
.vf-formacao__photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  background: var(--cream-200);
  aspect-ratio: 4 / 5;
  position: relative;
}
.vf-formacao__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.vf-formacao__body { display: flex; flex-direction: column; gap: var(--s-5); }
.vf-formacao__lead {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--deep-12);
  font-weight: 500;
  font-style: italic;
  max-width: 60ch;
}
.vf-formacao__body p { color: var(--ink-700); line-height: 1.7; max-width: 64ch; }

.vf-formacao__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-4);
}
@media (min-width: 640px) {
  .vf-formacao__cards { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
}
.vf-formacao__card {
  padding: var(--s-5);
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.vf-formacao__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-card);
  background: var(--cream-50);
}
.vf-formacao__card-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sage-2);
  color: var(--deep-11);
  border-radius: var(--r-sm);
  font-size: 1.3rem;
  margin-bottom: var(--s-2);
}
.vf-formacao__card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep-12);
  margin: 0;
}
.vf-formacao__card-text {
  font-size: 0.9rem;
  color: var(--ink-600);
  line-height: 1.5;
  margin: 0;
}


/* ============================================
   QUANDO PROCURAR — grid 5 cards (último centralizado)
   Reusa vf-diff__* mas em desktop ajusta pra 3+2 centralizado
   ============================================ */
@media (min-width: 1024px) {
  .vf-quando__grid {
    grid-template-columns: repeat(6, 1fr) !important;
  }
  .vf-quando__grid > .vf-diff__card { grid-column: span 2; }
  /* Linha 2: cards 4 e 5 centralizados (col 2-3 e col 4-5; col 1 e 6 vazias) */
  .vf-quando__grid > .vf-diff__card:nth-child(4) { grid-column: 2 / span 2; }
  .vf-quando__grid > .vf-diff__card:nth-child(5) { grid-column: 4 / span 2; }
}

/* ============================================
   3. DIFERENCIAIS — grid 6 cards com ícones
   ============================================ */
.vf-diff {
  padding: var(--section-y) 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(63, 126, 123, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 92% 95%, rgba(162, 188, 133, 0.08) 0%, transparent 50%),
    var(--cream-100);
}
.vf-diff__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) { .vf-diff__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vf-diff__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }

.vf-diff__card {
  padding: var(--s-6);
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.vf-diff__card::before {
  content: "";
  position: absolute;
  top: 0; left: var(--s-6); right: var(--s-6);
  height: 2px;
  background: linear-gradient(90deg, var(--teal-9), var(--sage-8));
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.vf-diff__card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-5);
  box-shadow: var(--sh-card-hover);
}
.vf-diff__card:hover::before { opacity: 1; }

.vf-diff__icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sage-2) 0%, var(--teal-2) 100%);
  color: var(--deep-10);
  border-radius: var(--r-md);
  font-size: 1.7rem;
  flex-shrink: 0;
}
.vf-diff__title {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--deep-12);
  line-height: 1.2;
  margin: 0;
}
.vf-diff__text {
  color: var(--ink-600);
  line-height: 1.6;
  font-size: 0.96rem;
  margin: 0;
}


/* ============================================
   4. ESPECIALIDADES (Procedimentos) — 4 cards com badges
   ============================================ */
.vf-proc {
  padding: var(--section-y) 0;
  background: var(--cream-50);
}
.vf-proc__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) { .vf-proc__grid { grid-template-columns: repeat(2, 1fr); } }

.vf-proc__card {
  padding: var(--s-6) var(--s-6) var(--s-7);
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.vf-proc__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-card-hover);
}
.vf-proc__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--deep-9);
  color: var(--cream-50);
  border-radius: var(--r-md);
  font-size: 1.8rem;
}
.vf-proc__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--deep-12);
  margin: 0;
}
.vf-proc__text {
  color: var(--ink-600);
  line-height: 1.6;
  font-size: 0.98rem;
  margin: 0;
  flex: 1;
}

.vf-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--sage-2);
  color: var(--sage-12);
  border: 1px solid var(--sage-4);
  margin-top: var(--s-3);
}
.vf-badge--alt {
  background: var(--teal-2);
  color: var(--teal-12);
  border-color: var(--teal-4);
}


/* ============================================
   5. ONDE ATENDO — endereços + mapa Leaflet
   ============================================ */
.vf-locais {
  padding: var(--section-y) 0;
  background: var(--cream-100);
}
.vf-locais__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}
@media (min-width: 720px) { .vf-locais__grid { grid-template-columns: repeat(2, 1fr); } }

.vf-local {
  padding: var(--s-6);
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.vf-local:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-card);
}
.vf-local__head { display: flex; align-items: center; gap: var(--s-4); }
.vf-local__icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal-9), var(--deep-10));
  color: var(--cream-50);
  border-radius: var(--r-md);
  font-size: 1.7rem;
}
.vf-local__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-10);
  font-weight: 600;
  margin: 0 0 2px;
}
.vf-local__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--deep-12);
  margin: 0;
}
.vf-local__address {
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0;
}
.vf-local__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-2);
}
.vf-local__map-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--teal-11);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.vf-local__map-link:hover { color: var(--deep-11); border-color: var(--gold-9); }
.vf-local__map-link i { color: var(--gold-10); font-size: 1.1em; }

.vf-locais__map-wrap {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
}
.vf-locais__map {
  height: clamp(360px, 50vh, 520px);
  width: 100%;
  background: var(--cream-200);
}


/* ============================================
   6. AVALIAÇÕES — rating destaque + 3 cards
   ============================================ */
.vf-reviews {
  padding: var(--section-y) 0;
  background: var(--cream-50);
}

.vf-reviews__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  padding: var(--s-6) var(--s-5);
  margin: 0 auto var(--s-4);
  max-width: 560px;
  background: linear-gradient(180deg, var(--cream-50), var(--cream-100));
  border: 1px solid var(--cream-300);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
}
.vf-reviews__rating-value {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 2rem + 4vw, 5rem);
  line-height: 0.95;
  color: var(--deep-12);
  font-weight: 600;
  letter-spacing: -0.04em;
}
.vf-reviews__rating-meta {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.vf-reviews__rating-stars {
  color: var(--gold-9);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.vf-reviews__rating-source {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--ink-700);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.vf-reviews__rating-source:hover { color: var(--deep-11); border-color: var(--gold-9); }
.vf-reviews__rating-source i { font-size: 1.2em; color: var(--teal-9); }

.vf-reviews__note {
  max-width: 640px;
  margin: 0 auto var(--s-7);
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-500);
  line-height: 1.55;
  font-style: italic;
}

.vf-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) { .vf-reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.vf-review {
  padding: var(--s-6);
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.vf-review:hover { transform: translateY(-2px); box-shadow: var(--sh-card-hover); }
.vf-review__head { display: flex; gap: var(--s-3); align-items: center; }
.vf-review__avatar {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal-9), var(--deep-10));
  color: var(--cream-50);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.vf-review__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-12);
  margin: 0;
}
.vf-review__meta {
  font-size: 0.82rem;
  color: var(--ink-500);
  margin: 0;
}
.vf-review__meta span { color: var(--gold-9); letter-spacing: 0.06em; }
.vf-review__text {
  color: var(--ink-700);
  line-height: 1.6;
  font-size: 0.96rem;
  margin: 0;
  font-style: italic;
  flex: 1;
}
.vf-review__source {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--teal-11);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  align-self: flex-start;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.vf-review__source:hover { color: var(--deep-11); border-color: var(--gold-9); }


/* ============================================
   7. FAQ — accordion 6 perguntas
   ============================================ */
.vf-faq {
  padding: var(--section-y) 0;
  background: var(--cream-100);
}
.vf-faq__list { display: flex; flex-direction: column; gap: var(--s-3); }

.vf-faq__item {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.vf-faq__item[open] {
  border-color: var(--teal-5);
  box-shadow: var(--sh-card);
}
.vf-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--deep-12);
  user-select: none;
  transition: background var(--dur-fast) var(--ease-out);
}
.vf-faq__q::-webkit-details-marker { display: none; }
.vf-faq__q:hover { background: var(--cream-100); }
.vf-faq__q:focus-visible {
  outline: none;
  background: var(--cream-100);
  box-shadow: inset 0 0 0 2px var(--teal-9);
}

.vf-faq__toggle {
  font-size: 1.4rem;
  color: var(--teal-9);
  transition: transform var(--dur-base) var(--ease-out), color var(--dur-fast) var(--ease-out);
  flex-shrink: 0;
}
.vf-faq__item[open] .vf-faq__toggle {
  transform: rotate(45deg);
  color: var(--deep-10);
}

.vf-faq__a {
  padding: 0 var(--s-6) var(--s-5);
  color: var(--ink-700);
  line-height: 1.7;
  font-size: 0.98rem;
}
.vf-faq__a p { margin: 0; max-width: none; }
.vf-faq__a strong { color: var(--deep-11); font-weight: 600; }


/* ============================================
   8. CTA FINAL — bloco motivacional deep
   ============================================ */
.vf-cta-final {
  padding: var(--section-y) 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(63, 126, 123, 0.40) 0%, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(162, 188, 133, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, var(--deep-12) 0%, var(--deep-10) 60%, var(--deep-9) 100%);
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.vf-cta-final::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-9) 45%, var(--gold-9) 55%, transparent);
  opacity: 0.30;
}
.vf-cta-final::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-9) 45%, var(--gold-9) 55%, transparent);
  opacity: 0.30;
}
.vf-cta-final__inner { position: relative; z-index: 1; }
.vf-cta-final .vf-section-head { margin-bottom: var(--s-6); }
.vf-cta-final .vf-section-title { color: var(--cream-50); }
.vf-cta-final__lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(246, 247, 242, 0.85);
  max-width: 56ch;
  margin-inline: auto;
}

.vf-cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  margin: var(--s-7) 0 var(--s-6);
}
.vf-cta-final__btn {
  background: var(--cream-50) !important;
  color: var(--deep-11) !important;
  font-size: 1.05rem;
  padding: var(--s-4) var(--s-7);
  box-shadow: 0 12px 32px -8px rgba(212, 178, 100, 0.35);
  transition: background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
}
.vf-cta-final__btn span,
.vf-cta-final__btn i { color: var(--deep-11) !important; }
.vf-cta-final__btn:hover {
  background: var(--gold-9) !important;
  color: var(--deep-12) !important;
  box-shadow: 0 16px 40px -8px rgba(212, 178, 100, 0.60);
  transform: translateY(-2px);
}
.vf-cta-final__btn:hover span,
.vf-cta-final__btn:hover i { color: var(--deep-12) !important; }

.vf-cta-final__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--cream-50);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 247, 242, 0.35);
  padding-bottom: 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.vf-cta-final__phone i { color: var(--gold-9); font-size: 1.3em; }
.vf-cta-final__phone:hover { color: var(--gold-7); border-bottom-color: var(--gold-7); }

.vf-cta-final__channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(212, 178, 100, 0.18);
}
.vf-cta-final__channels a {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: rgba(246, 247, 242, 0.75);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.vf-cta-final__channels i { color: var(--gold-9); font-size: 1.2em; }
.vf-cta-final__channels a:hover { color: var(--cream-50); }


/* ============================================
   MOBILE TWEAKS
   ============================================ */
@media (max-width: 720px) {
  .vf-formacao__photo { aspect-ratio: 3 / 4; max-height: 480px; }
  .vf-diff__card,
  .vf-proc__card,
  .vf-local,
  .vf-review { padding: var(--s-5); }
  .vf-faq__q { padding: var(--s-4) var(--s-5); font-size: 1rem; }
  .vf-faq__a { padding: 0 var(--s-5) var(--s-5); }
  .vf-cta-final__actions { gap: var(--s-4); }
  .vf-cta-final__btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vf-diff__card,
  .vf-proc__card,
  .vf-local,
  .vf-review,
  .vf-formacao__card,
  .vf-cta-final__btn,
  .vf-hero__rating { transition: none !important; }
  .vf-diff__card:hover,
  .vf-proc__card:hover,
  .vf-local:hover,
  .vf-review:hover,
  .vf-formacao__card:hover,
  .vf-cta-final__btn:hover { transform: none; }
}

/* ============================================================
   MOBILE REFINEMENTS — REFERÊNCIA
   Targets: 320, 360, 375, 390, 414, 540, 720
   Princípios: touch ≥44px, body ≥16px, sem horizontal scroll,
               feedback < 100ms, sticky CTA mobile, fonts legíveis
   ============================================================ */

/* === GLOBAL MOBILE BASE === */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { -webkit-tap-highlight-color: rgba(14, 61, 51, 0.18); }

/* Tap optimization em TODOS os interativos */
a, button, [role="button"], summary, .btn, .vf-faq__q, .vf-local__map-link,
.vf-hero__rating, .vf-hero__phone, .vf-cta-final__phone,
.vf-review__source, .lp2-nav__link, .lp2-nav__cta, .wa-float {
  touch-action: manipulation;
}

/* === < 540px — phones pequenos / médios === */
@media (max-width: 540px) {

  /* ===== HERO mobile ===== */
  .vf-hero {
    min-height: clamp(620px, 92vh, 760px);
    align-items: flex-end;
    padding-bottom: var(--s-8);
  }
  .vf-hero__bg img { object-position: center 18%; }
  .vf-hero__overlay {
    background:
      linear-gradient(180deg, rgba(3, 21, 15, 0.40) 0%, rgba(3, 21, 15, 0.72) 50%, rgba(3, 21, 15, 0.94) 100%),
      radial-gradient(circle at 50% 100%, rgba(63, 126, 123, 0.22) 0%, transparent 60%);
  }
  .vf-hero__inner { padding-block: var(--s-5) var(--s-4); max-width: 100%; }
  .vf-hero__eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    line-height: 1.4;
    padding-bottom: var(--s-2);
    margin-bottom: var(--s-3);
  }
  .vf-hero__title {
    font-size: clamp(2.4rem, 8.5vw, 3.2rem);
    line-height: 1.04;
    margin-bottom: var(--s-3);
  }
  .vf-hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.45;
    margin-bottom: var(--s-5);
  }
  .vf-hero__meta {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
    margin-bottom: var(--s-5);
  }
  .vf-hero__crm,
  .vf-hero__rating {
    width: 100%;
    justify-content: center;
    padding: var(--s-3) var(--s-4);
    min-height: 44px;
    font-size: 0.9rem;
  }
  .vf-hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
  }
  /* Esconde 'Agendar consulta' do hero em mobile —
     o sticky bottom CTA já cobre essa função e evita redundância visual */
  .vf-hero__btn-primary { display: none !important; }
  .vf-hero__phone {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: var(--s-3) var(--s-4);
    min-height: 48px;
    border: 1px solid rgba(246, 247, 242, 0.30);
    border-radius: var(--r-full);
    background: rgba(14, 61, 51, 0.45);
    backdrop-filter: blur(6px);
  }
  .vf-hero__phone:hover { background: rgba(212, 178, 100, 0.18); }

  /* ===== SECTION HEADS mobile ===== */
  .vf-section-head { margin-bottom: var(--s-6); }
  .vf-section-title { font-size: clamp(2rem, 7.5vw, 2.6rem); line-height: 1.1; }
  .vf-section-lede { font-size: 1.05rem; }
  .vf-eyebrow { font-size: 0.84rem; letter-spacing: 0.16em; }

  /* ===== FORMAÇÃO mobile ===== */
  .vf-formacao__inner { padding-top: var(--s-2); }
  .vf-formacao__grid { gap: var(--s-6); }
  .vf-formacao__photo {
    aspect-ratio: 4 / 5;
    max-width: 340px;            /* respira nas laterais em mobile */
    max-height: 460px;
    border-radius: var(--r-md);
    display: block;
    margin-left: auto;            /* centraliza no container */
    margin-right: auto;
  }
  .vf-formacao__photo img { object-position: center center; }
  .vf-formacao__lead { font-size: 1.18rem; line-height: 1.4; }
  .vf-formacao__cards { grid-template-columns: 1fr; gap: var(--s-3); }
  .vf-formacao__card { padding: var(--s-4) var(--s-5); }

  /* ===== DIFERENCIAIS mobile ===== */
  .vf-diff__grid { gap: var(--s-3); }
  .vf-diff__card { padding: var(--s-5); }
  .vf-diff__title { font-size: 1.2rem; }
  .vf-diff__text { font-size: 0.95rem; line-height: 1.55; }
  .vf-diff__icon { width: 48px; height: 48px; font-size: 1.5rem; }

  /* ===== ESPECIALIDADES mobile ===== */
  .vf-proc__grid { gap: var(--s-4); }
  .vf-proc__card { padding: var(--s-5) var(--s-5) var(--s-6); }
  .vf-proc__icon { width: 52px; height: 52px; font-size: 1.65rem; }
  .vf-proc__title { font-size: 1.3rem; }
  .vf-proc__text { font-size: 0.96rem; }
  .vf-badge { font-size: 0.72rem; padding: 6px 12px; }

  /* ===== ONDE ATENDO mobile ===== */
  .vf-locais__grid { gap: var(--s-3); margin-bottom: var(--s-5); }
  .vf-local { padding: var(--s-5); gap: var(--s-3); }
  .vf-local__head { gap: var(--s-3); }
  .vf-local__icon { width: 48px; height: 48px; font-size: 1.5rem; }
  .vf-local__name { font-size: 1.2rem; }
  .vf-local__address { font-size: 0.95rem; }
  .vf-local__actions { flex-direction: column; align-items: stretch; gap: var(--s-3); }
  .vf-local__actions .btn { width: 100%; justify-content: center; min-height: 44px; }
  .vf-local__map-link {
    justify-content: center;
    text-align: center;
    min-height: 44px;
    align-items: center;
  }
  .vf-locais__map { height: 360px; }

  /* Leaflet zoom controls touch-friendly */
  .leaflet-bar a {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 1.2rem !important;
  }

  /* ===== AVALIAÇÕES mobile ===== */
  .vf-reviews__rating {
    flex-direction: column;
    gap: var(--s-3);
    padding: var(--s-5) var(--s-4);
    max-width: 100%;
  }
  .vf-reviews__rating-value { font-size: 3.5rem; }
  .vf-reviews__rating-stars { font-size: 1.4rem; }
  .vf-reviews__rating-meta { align-items: center; text-align: center; }
  .vf-reviews__rating-source {
    min-height: 36px;
    padding: 6px 0;
  }
  .vf-reviews__note { font-size: 0.86rem; padding: 0 var(--s-2); }
  .vf-reviews__grid { gap: var(--s-3); }
  .vf-review { padding: var(--s-5); }
  .vf-review__text { font-size: 0.96rem; }
  .vf-review__source { min-height: 36px; padding: 6px 0; }

  /* ===== FAQ mobile ===== */
  .vf-faq__list { gap: var(--s-2); }
  .vf-faq__item { border-radius: var(--r-sm); }
  .vf-faq__q {
    padding: var(--s-4) var(--s-5);
    font-size: 1rem;
    line-height: 1.4;
    min-height: 56px;
    align-items: center;
  }
  .vf-faq__a {
    padding: 0 var(--s-5) var(--s-5);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .vf-faq__toggle { font-size: 1.3rem; }

  /* ===== CTA FINAL mobile ===== */
  .vf-cta-final { padding: var(--s-8) 0; }
  .vf-cta-final__lede { font-size: 1.02rem; line-height: 1.6; padding: 0 var(--s-2); }
  .vf-cta-final__actions {
    flex-direction: column;
    gap: var(--s-3);
    margin: var(--s-6) 0 var(--s-5);
  }
  .vf-cta-final__btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 1.02rem;
  }
  .vf-cta-final__phone {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: var(--s-3) var(--s-4);
    min-height: 48px;
    border: 1px solid rgba(246, 247, 242, 0.30);
    border-radius: var(--r-full);
    background: rgba(14, 61, 51, 0.45);
  }
  .vf-cta-final__phone:hover { background: rgba(212, 178, 100, 0.18); }
  .vf-cta-final__channels {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
    padding-top: var(--s-4);
  }
  .vf-cta-final__channels a {
    justify-content: center;
    min-height: 44px;
    padding: 6px 12px;
    border-radius: var(--r-sm);
    font-size: 0.95rem;
  }
  .vf-cta-final__channels a:hover { background: rgba(246, 247, 242, 0.06); }
}

/* === STICKY CTA BOTTOM BAR mobile (< 720) ===
   Substitui o WhatsApp float pequeno por uma barra fixa mais proeminente
   apenas em viewports pequenas — premium touch-first */
@media (max-width: 720px) {
  /* Esconde o float pequeno em mobile (substituído pela bottom bar) */
  .wa-float { display: none !important; }

  /* Reserva espaço global no fundo pra sticky CTA NÃO cobrir conteúdo */
  body { padding-bottom: calc(56px + 12px + 16px + env(safe-area-inset-bottom, 0px)); }
  html { scroll-padding-bottom: calc(56px + 16px); }

  /* Leaflet panes em mobile NÃO podem subir acima do sticky CTA */
  .vf-locais__map .leaflet-pane,
  .vf-locais__map .leaflet-top,
  .vf-locais__map .leaflet-bottom,
  .vf-locais__map .leaflet-control-container { z-index: 1 !important; }
  .vf-locais__map .leaflet-control { z-index: 2 !important; }

  .vf-mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 9999;            /* acima de qualquer pane do Leaflet */
    display: flex;
    align-items: center;
    gap: var(--s-2);
    padding: 8px 10px 8px 14px;
    background: linear-gradient(135deg, var(--deep-9) 0%, var(--deep-11) 100%);
    color: var(--cream-50);
    border-radius: var(--r-full);
    box-shadow: 0 12px 32px -8px rgba(11, 14, 12, 0.55), 0 0 0 1px rgba(212, 178, 100, 0.22);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.96rem;
    min-height: 56px;
    transition: transform 120ms var(--ease-out), box-shadow 120ms var(--ease-out);
  }
  .vf-mobile-cta:active {
    transform: scale(0.985);
    box-shadow: 0 8px 20px -6px rgba(11, 14, 12, 0.40);
  }
  .vf-mobile-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
  }
  .vf-mobile-cta__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    flex: 1;
  }
  .vf-mobile-cta__primary { font-size: 0.98rem; font-weight: 700; letter-spacing: 0.005em; }
  .vf-mobile-cta__secondary {
    font-size: 0.78rem;
    color: rgba(246, 247, 242, 0.72);
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .vf-mobile-cta__chevron {
    color: var(--gold-9);
    font-size: 1.2rem;
    margin-right: 4px;
    opacity: 0.85;
  }

  /* Não precisa de padding extra no CTA Final/Footer — body já tem padding-bottom global */
}

@media (min-width: 721px) {
  .vf-mobile-cta { display: none !important; }
}

/* === NAV mobile drawer touch-friendly === */
@media (max-width: 959px) {
  .lp2-nav__toggle {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
  }
  .lp2-nav__cta {
    min-height: 44px;
    padding: 0 var(--s-4);
    font-size: 0.92rem;
  }
}

@media (max-width: 540px) {
  .lp2-nav__inner { gap: var(--s-3); padding: var(--s-2) 0; }
  .lp2-nav__logo { height: 38px; }
  /* Esconde botão Agendar do header em mobile (já temos sticky bottom CTA) */
  .lp2-nav__cta { display: none; }
}

/* Drawer mobile — open from right, touch-friendly links */
.lp2-nav__drawer:not([hidden]) {
  display: flex;
  flex-direction: column;
  padding: var(--s-5) var(--s-4) var(--s-7);
  gap: var(--s-1);
  background: var(--cream-50);
  border-top: 1px solid var(--cream-300);
  box-shadow: 0 12px 32px -8px rgba(11, 14, 12, 0.15);
}
.lp2-nav__drawer .lp2-nav__link {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 var(--s-3);
  font-size: 1.05rem;
  color: var(--deep-12);
  font-weight: 500;
  border-radius: var(--r-sm);
  border-bottom: 1px solid var(--cream-200);
}
.lp2-nav__drawer .lp2-nav__link:last-of-type { border-bottom: none; }
.lp2-nav__drawer .lp2-nav__link:active { background: var(--cream-100); }
.lp2-nav__drawer .lp2-nav__link::after { display: none; }
.lp2-nav__drawer .btn {
  margin-top: var(--s-4);
  min-height: 52px;
  font-size: 1.02rem;
}

/* === FOOTER mobile === */
@media (max-width: 540px) {
  .lp2-footer { padding: var(--s-7) 0 var(--s-5); }
  .lp2-footer__inner { gap: var(--s-5); }
  .lp2-footer__brand { text-align: center; }
  .lp2-footer__heading { font-size: 0.86rem; }
  .lp2-footer__col li,
  .lp2-footer__col a { font-size: 1rem; min-height: 32px; display: inline-flex; align-items: center; }
  .lp2-footer__bottom { flex-direction: column; align-items: center; gap: var(--s-3); text-align: center; }
  .lp2-footer__bottom p { font-size: 0.86rem; }
  .lp2-footer__legal p { text-align: left; font-size: 0.86rem; line-height: 1.6; }
}

/* === Containers mobile gutter === */
@media (max-width: 540px) {
  .container { padding-inline: 18px; }
  :root { --gutter: 18px; }
}

/* === Imagens em mobile — evitar overflow + selection limpo === */
@media (max-width: 720px) {
  img { max-width: 100%; height: auto; }
}
