/*
Theme Name: Fisalis
Theme URI: https://fisalis.pt
Description: Tema profissional para masaж terapêutico — fisalis.pt
Author: Fisalis Studio
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: fisalis
Tags: massage, therapy, wellness, portugal, light, gold
*/

/* ══════════════════════════════════════════════
   FONTS
══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px; /* sticky header height so anchor targets aren't hidden */
  -webkit-text-size-adjust: 100%;
  background: #1e2219; /* matches footer --bg-dark: no white gap on iOS overscroll */
  overflow-x: clip; /* safety net: no element should ever push the page wider than the viewport and reveal this dark bg as a side stripe. clip (not hidden) so this doesn't force overflow-y:auto and turn html into a nested scroll container, which breaks position:sticky descendants */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Lazy-load fade-in — only lazy images, never affects logos or inline SVG-replaced imgs */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded { opacity: 1; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  line-height: 1.65;
  color: var(--text-sec);
  background: var(--bg-main);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  overflow-x: clip; /* clip, not hidden — avoids forcing overflow-y:auto (which turns body into a nested scroll container and breaks position:sticky descendants like .art-sidebar) */
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ══════════════════════════════════════════════
   TYPOGRAPHY SCALE
══════════════════════════════════════════════ */
.t-display {
  font-family: var(--font-display);
  font-weight: 800; font-variation-settings: 'wght' 800;
  line-height: 1.05;
  color: var(--text-pri);
}

.t-h1 { font-size: clamp(28px, 3.2vw, 40px); }
.t-h2 { font-size: clamp(20px, 2.4vw, 28px); }
.t-h3 { font-size: clamp(17px, 1.8vw, 20px); }
.t-h4 { font-size: 18px; }
.t-price {
  font-family: var(--font-display);
  font-weight: 700; font-variation-settings: 'wght' 700;
  font-size: 26px;
  color: var(--gold);
}
.t-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.t-body-lg { font-size: 16px; font-weight: 400; font-variation-settings: 'wght' 400; line-height: 1.75; }
.t-body     { font-size: 16px; font-weight: 400; font-variation-settings: 'wght' 400; line-height: 1.65; }
.t-small    { font-size: 14px; }


/* ══════════════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section--white { background: var(--bg-card); }
.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section__head {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section__head--center { text-align: center; align-items: center; }
.section__head--center .section__label::before,
.section__head--center .section__label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
  vertical-align: middle;
  margin: 0 10px;
}

.section__label { display: block; }

.section__title {
  font-family: var(--font-display);
  font-weight: 800; font-variation-settings: 'wght' 800;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--text-pri);
  line-height: 1.1;
}

.section--dark .section__title { color: var(--text-on-dark); }

.section__desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-sec);
  max-width: 640px;
}
.section--dark .section__desc  { color: rgba(240,236,228,.65); }
.section--alt  .section__desc  { color: var(--text-sec); }
.section__head--center .section__desc { text-align: center; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--gold {
  background: var(--gold-gradient);
  color: #fff;
  border: none;
  font-weight: 600; font-variation-settings: 'wght' 600;
  letter-spacing: 0.05em;
}
.btn--gold:hover {
  background: var(--gold-gradient-h);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--ghost:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(201,169,110,0.4);
}
.btn--ghost-dark:hover {
  border-color: var(--gold-light);
  background: rgba(201,169,110,0.08);
  color: var(--gold-light);
}

.btn--wa {
  background: var(--wa);
  color: #fff;
  border: 1px solid var(--wa);
}
.btn--wa:hover {
  background: #1ead55;
  border-color: #1ead55;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  color: #fff;
}

.btn--sm { height: 38px; padding: 0 20px; font-size: 12px; }
.btn--lg { height: 56px; padding: 0 36px; font-size: 14px; }
.btn--full { width: 100%; }

/* ══════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-hover);
}
.card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 24px; }
.card__label { margin-bottom: 8px; }
.card__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-pri);
  margin-bottom: 10px;
  line-height: 1.2;
}
.card__desc { font-size: 16px; color: var(--text-sec); margin-bottom: 16px; line-height: 1.65; }
.card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.card__meta-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  font-weight: 600; font-variation-settings: 'wght' 600;
}
.card__meta-sep { color: var(--border); }

/* ══════════════════════════════════════════════
   HEADER — TOP BAR
══════════════════════════════════════════════ */
.site-topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  height: 58px;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  font-family: var(--font-body);
}

/* Logo */
.topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 32px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  min-width: 180px;
}
.topbar-logo__icon { width: 38px; height: 38px; flex-shrink: 0; }
.topbar-logo__img  { max-height: 44px; width: auto; display: block; filter: none; }
.topbar-logo__text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.topbar-logo__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  letter-spacing: 0.02em;
}
.topbar-logo__name span { color: var(--gold); }
.topbar-logo__sub {
  font-size: 10px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* Info items */
.topbar-info {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 0;
  padding: 0 16px;
}
.topbar-info__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  height: 58px;
  min-width: 0;
}
.topbar-info__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.topbar-info__item:hover .topbar-info__icon {
  border-color: var(--gold);
  color: var(--gold);
}
.topbar-info__icon svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.topbar-info__lines { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.topbar-info__main {
  font-size: 14px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.topbar-info__sub {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.topbar-info__mobile-note {
  font-size: 9px;
  line-height: 1.2;
  margin-top: 0;
}

/* Social icons */
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  height: 58px;
  flex-shrink: 0;
}
.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.social-icon:hover {
  border-color: var(--gold);
  background: #fdf9f4;
}
.social-icon svg { width: 14px; height: 14px; fill: var(--text-sec); transition: fill var(--transition); }
.social-icon:hover svg { fill: var(--gold); }

/* CTA */
.topbar-cta { padding-left: 12px; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   HEADER — MAIN NAV
══════════════════════════════════════════════ */
.site-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header {
  position: relative;
  top: auto;
  z-index: 2; /* above .site-bar; creates stacking context so mega-menu overflows correctly */
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
  padding: 10px 0 10px;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  gap: 8px;
}

/* Nav wrapper takes all remaining space */
.nav-inner > nav { flex: 1; min-width: 0; }

/* Nav links */
.nav-list {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 4px;
  flex-wrap: nowrap;
  width: 100%;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  height: 38px;
  width: 100%;
  font-size: 12px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-pri);
  white-space: nowrap;
  font-family: var(--font-body);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: transparent;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.nav-link::after { display: none; }

.nav-item:hover > .nav-link {
  border-color: #aaaaaa;
  background: rgba(0,0,0,0.03);
  color: var(--text-pri);
}
.nav-item.current-menu-item > .nav-link {
  /* no active highlight on scroll — only hover shows background */
}

.nav-arrow {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Nav search button */
.nav-search {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-pri);
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
}
.nav-search:hover {
  border-color: #aaaaaa;
  background: rgba(0,0,0,0.03);
}
.nav-search svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0 8px 8px 8px;
  min-width: 210px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(26,24,20,0.10);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-sec);
  font-weight: 400; font-variation-settings: 'wght' 400;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown a:hover {
  color: var(--gold-dark);
  background: #fdf9f4;
}

/* ── Mega dropdown (Serviços) ───────────────────── */
.nav-item--mega { position: relative; }

.nav-mega {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(26,24,20,.13);
  display: grid;
  grid-template-columns: 1fr 240px;
  min-width: 560px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  /* delay on close so mouse has time to reach the dropdown */
  transition: opacity .18s .12s, transform .18s .12s;
  z-index: 200;
}
/* Invisible bridge fills the gap between nav link and dropdown */
.nav-mega::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 14px; /* covers the 6px gap + safety margin */
}
.nav-item--mega:hover .nav-mega {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  /* no delay on open */
  transition: opacity .18s, transform .18s;
}

/* Main services — left column */
.nav-mega__main {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  padding-right: 8px;
  margin-right: 8px;
}
.nav-mega__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition);
}
.nav-mega__item:hover { background: #fdf9f4; }
.nav-mega__name {
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.nav-mega__sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400; font-variation-settings: 'wght' 400;
}

/* SEO services — right column */
.nav-mega__seo {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
}
.nav-mega__seo-label {
  font-size: 10px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  padding: 6px 12px;
  margin: 0;
}
.nav-mega__seo-link {
  display: block;
  font-size: 12.5px;
  color: var(--text-sec);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-mega__seo-link:hover { background: #fdf9f4; color: var(--gold-dark); }
.nav-mega__all-link {
  display: block;
  font-size: 11.5px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold-dark);
  text-decoration: none;
  padding: 8px 12px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mega__all-link:hover { color: var(--gold); }

/* On tablets the container is narrower than the 1200px design width, so
   centering the 560px mega dropdown under the leftmost nav item ("Serviços")
   pushes its left half off-screen (e.g. iPad 11" ~820-834px). Anchor it to
   the item's left edge instead in this range, where the desktop nav is still
   shown (mobile menu takes over at 768px, see max-width:768px below). */
@media (min-width: 769px) and (max-width: 1200px) {
  .nav-mega {
    left: 0;
    transform: translateY(-8px);
    min-width: 500px;
  }
  .nav-item--mega:hover .nav-mega {
    transform: translateY(0);
  }
}

/* Nav promo tag */
.nav-promo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 500; font-variation-settings: 'wght' 500;
  padding: 5px 14px;
  border: 1px solid rgba(184,146,79,0.3);
  border-radius: 5px;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}
.nav-promo:hover {
  background: rgba(184,146,79,0.05);
  border-color: var(--gold-light);
  color: var(--gold-dark);
}
.nav-promo__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.45; transform:scale(0.7); }
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 8px;
  cursor: pointer;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--text-pri);
  transition: all var(--transition);
}

/* Mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-mobile-overlay.is-open { display: flex; opacity: 1; }
.nav-mobile-overlay .nav-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border: 1px solid rgba(240,236,228,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  font-size: 20px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.nav-mobile-overlay .nav-close:hover { border-color: var(--gold-light); }
.nav-mobile-overlay a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  color: var(--text-on-dark);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  text-align: center;
}
.nav-mobile-overlay a:hover { color: var(--gold-light); }
.nav-mobile-overlay .mobile-cta {
  margin-top: 20px;
  padding: 0 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.nav-mobile-overlay .mobile-cta .btn {
  height: 44px;
  padding: 0 20px;
  font-size: 13px;
  width: 100%;
  justify-content: center;
}

.mobile-menu-logo {
  position: absolute;
  top: 20px;
  left: 24px;
}
.mobile-menu-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px !important;
  text-decoration: none;
}
.mobile-menu-logo .topbar-logo__icon { width: 32px; height: 32px; flex-shrink: 0; }
.mobile-menu-logo .mobile-menu-logo__img { max-height: 38px; width: auto; display: block; }
.mobile-menu-logo .topbar-logo__text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.mobile-menu-logo .topbar-logo__name { font-family: var(--font-display); font-size: 18px; font-weight: 500; font-variation-settings: 'wght' 500; color: var(--text-on-dark); letter-spacing: 0.04em; }
.mobile-menu-logo .topbar-logo__name span { color: var(--gold); }
.mobile-menu-logo .topbar-logo__sub { font-size: 10px; color: rgba(240,236,228,0.5); letter-spacing: 0.08em; text-transform: uppercase; }

.mobile-menu-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(240,236,228,0.12);
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}
.mobile-menu-contacts__item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body, sans-serif) !important;
  font-size: 14px !important;
  color: rgba(240,236,228,0.75) !important;
  text-decoration: none;
  letter-spacing: 0 !important;
}
.mobile-menu-contacts__item svg { flex-shrink: 0; opacity: 0.6; }
.mobile-menu-contacts__item--tel { flex-direction: column; align-items: center; gap: 1px; }
.mobile-menu-contacts__phone-row { display: flex; align-items: center; gap: 4px; }
.mobile-menu-contacts__item--addr { cursor: pointer; }
.mobile-menu-contacts__item:hover { color: var(--gold-light) !important; }
.mobile-menu-contacts__note { font-size: 10px !important; opacity: 0.5; letter-spacing: 0.01em; }

/* ══════════════════════════════════════════════
   HERO — full-width background photo
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 760px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

/* Full-bleed photo bg */
.hero__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: max(100%, 100vh);
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  video.hero__bg-img {
    display: none;
  }
  .hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-poster, none);
    background-size: cover;
    background-position: center 25%;
    transform: scaleX(-1);
  }
}

/* YouTube iframe background */
.hero__bg-yt {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: max(100%, calc(760px * 16 / 9));
  height: max(100%, calc(100vw * 9 / 16));
  pointer-events: none;
}
.hero__bg-yt iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Hero poster — shows before video/YouTube loads, then fades */
.hero__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000 center / cover no-repeat;
  opacity: 1;
  transition: opacity 1.2s ease;
}
.hero__poster.is-fading { opacity: 0; }

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.42) 40%, rgba(0,0,0,0.48) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, transparent 30%, rgba(0,0,0,0.28) 100%);
}

/* Content layout — 2-col × 2-row grid */
.hero__body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 20px 32px;
  padding-top: 52px;
  padding-bottom: 52px;
}

/* Glassmorphism offer card — col 1, row 1 */
.hero-offer {
  grid-column: 1;
  grid-row: 1;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border-radius: 20px;
  padding: 44px 48px 40px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 8px 48px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
}

/* Badge tags */
.hero-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 10px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.08);
}

/* Title */
.hero-offer__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 900; font-variation-settings: 'wght' 900;
  color: #ffffff;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-offer__title span {
  display: block;
  text-transform: none;
  font-weight: 400; font-variation-settings: 'wght' 400;
  font-size: 0.55em;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0;
  margin-top: 6px;
}

/* Lead */
.hero-offer__lead {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  font-weight: 400; font-variation-settings: 'wght' 400;
}
.hero-offer__lead strong { color: #ffffff; font-weight: 600; font-variation-settings: 'wght' 600; }

/* Form — dark inputs on light bg */
.hero-form { width: 100%; }
.hero-form__row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.hero-form__field {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-form__icon {
  position: absolute;
  left: 13px;
  pointer-events: none;
  color: var(--text-muted);
  flex-shrink: 0;
}
.hero-form__input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 40px;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  color: var(--text-pri);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  outline: none;
  transition: border-color var(--transition);
}
.hero-form__input::placeholder { color: var(--text-muted); }
.hero-form__input:focus { border-color: var(--gold); }
.hero-form__submit {
  flex-shrink: 0;
  height: 52px;
  white-space: nowrap;
  font-size: 14px;
}
.hero-form__check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}
.hero-form__check input[type="checkbox"] {
  width: 15px; height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.hero-form__check span {
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}
.hero-form__check span a { color: var(--gold); text-decoration: underline; }
.hero-form__check span a:hover { color: #fff; }

/* Price tag — floating badge */
.hero-price-tag {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  background: var(--gold-gradient);
  border-radius: 14px;
  padding: 14px 22px 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 2px rgba(255,255,255,0.12);
  z-index: 3;
  min-width: 120px;
  pointer-events: none;
}
.hero-price-tag__from {
  display: block;
  font-size: 12px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.hero-price-tag__price {
  display: block;
  font-size: 28px;
  font-weight: 800; font-variation-settings: 'wght' 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-price-tag__old {
  display: block;
  font-size: 14px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  color: rgba(255,255,255,0.65);
  text-decoration: line-through;
  margin-top: 3px;
}

/* Stars badge — bottom of photo */
.hero-stars-badge {
  position: absolute;
  bottom: 24px;
  right: 40px;
  background: rgba(20,23,16,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,162,56,0.2);
  z-index: 3;
}
.hero-card__stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.hero-card__stars-label {
  font-size: 12px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  color: rgba(255,255,255,0.65);
}

/* Pain subtext line */
.hero-offer__pain {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  line-height: 1.65;
}
.hero-offer__pain strong { color: #ffffff; font-weight: 600; font-variation-settings: 'wght' 600; }

/* ── Hero right column — col 2, spans both rows ── */
.hero-right {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
  overflow: hidden;
  height: 656px;
}

/* Price card */
.hero-price-card {
  background: rgb(13, 16, 11);
  border-radius: 16px;
  padding: 22px 24px 20px;
  border: 1px solid rgba(201,162,56,0.35);
  box-shadow: 0 8px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,162,56,0.10);
  will-change: auto;
}

.hero-price-card__label {
  font-size: 10px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero-price-card__prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.hero-price-card__old {
  font-size: 20px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  font-weight: 500; font-variation-settings: 'wght' 500;
}

.hero-price-card__price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900; font-variation-settings: 'wght' 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-price-card__note {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  line-height: 1.55;
}

/* Toggle button */
.hero-price-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
  gap: 8px;
}
.hero-price-toggle:hover { background: rgba(255,255,255,0.12); }
.hero-price-toggle svg { transition: transform 0.25s; flex-shrink: 0; stroke: rgba(255,255,255,0.5); }
.hero-price-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Expandable items */
.hero-price-items {
  height: 0;
  overflow: hidden;
  transition: height 0.36s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease, margin-top 0.28s ease;
  opacity: 0;
  margin-top: 0;
}
.hero-price-items.is-open {
  opacity: 1;
  margin-top: 10px;
}

/* Item rows */
.hero-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  gap: 8px;
}
.hero-price-item:last-of-type { border-bottom: none; }

.hero-price-item--main {
  color: #fff;
  font-weight: 600; font-variation-settings: 'wght' 600;
  background: rgba(201,162,56,0.08);
  margin: 0 -4px;
  padding: 8px 4px;
  border-radius: 6px;
}

.hero-price-item__name {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-price-item__name svg { stroke: var(--gold); flex-shrink: 0; }

.hero-price-item__val {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.hero-price-item__val s {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  text-decoration: line-through;
}
.hero-price-item__val em {
  font-style: normal;
  font-size: 11px;
  color: #5cb87a;
  background: rgba(92,184,122,0.15);
  padding: 2px 7px;
  border-radius: 50px;
}
.hero-price-item__val--main {
  font-size: 17px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--gold);
}

/* Totals */
.hero-price-totals {
  border-top: 1px solid rgba(201,162,56,0.25);
  margin-top: 10px;
  padding-top: 10px;
}

.hero-price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 3px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.hero-price-total-val s { text-decoration: line-through; }

.hero-price-total-row--pay {
  color: #fff;
  font-weight: 700; font-variation-settings: 'wght' 700;
  font-size: 14px;
  margin-top: 4px;
}
.hero-price-total-row--pay .hero-price-total-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800; font-variation-settings: 'wght' 800;
  color: var(--gold);
}

.hero-price-card__btn {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

/* Google badge — col 1, row 2, left-aligned under offer card */
.hero-grev-mini {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.97);
  border-radius: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  width: fit-content;
}

.hero-grev-mini__stars {
  color: #f4a423;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero-grev-mini__score {
  font-weight: 700; font-variation-settings: 'wght' 700;
  font-size: 13px;
  color: #111;
  font-family: var(--font-display);
}

.hero-grev-mini__count {
  font-size: 11px;
  color: #666;
}

/* ══════════════════════════════════════════════
   SERVICES — Book spine slider (angled spines)
══════════════════════════════════════════════ */
.section-books {
  padding: 80px 0 64px;
  background: var(--bg-main);
}
.section-books .section__head { margin-bottom: 44px; }
.books-nav { display: none; } /* shown only on mobile via media query */

/* Wrapper — same grid as every other section */
.books-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ── Flex row ── */
.books-slider {
  display: flex;
  gap: 6px;
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius-hero);
}

/* ── Individual book ── */
.book {
  flex: 0 0 96px;
  position: relative;
  overflow: hidden;
  background: var(--book-bg, var(--bg-dark));
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  transition: flex 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.book:hover:not(.is-open) {
  flex: 0 0 114px;
}

/* ── OPEN state ── */
.book.is-open {
  flex: 4;
  cursor: default;
  border-radius: 12px;
}

/* Gold top-edge accent on hover (non-open) */
.book::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 6;
  border-radius: 10px 10px 0 0;
}
.book:hover:not(.is-open)::before { opacity: 1; }

/* Gold border — appears on open, fades out */
@keyframes bk-border-fade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  15%  { opacity: 1; }
  100% { opacity: 0; }
}
.book::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 12px;
  border: 4px solid var(--gold);
  pointer-events: none;
  z-index: 7;
  opacity: 0;
}
.book.is-open::after {
  animation: bk-border-fade 6s ease forwards;
}

/* ── SPINE (closed state) ──
   Photo fills the whole spine via .book__bg + .book__overlay
   Only the name label sits on top                              */
.book__spine {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 1;
  transition: opacity 0.22s;
  pointer-events: none;
  z-index: 3;
}
.book.is-open .book__spine { opacity: 0; }

/* Numbers — hidden per design */
.book__spine-num { display: none; }

.book__spine-name {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300; font-variation-settings: 'wght' 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  max-height: 420px;
  overflow: hidden;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  transition: color 0.25s;
}
.book:hover:not(.is-open) .book__spine-name {
  color: #ffffff;
}

/* ── PANEL (open state) ── */
.book__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.30s 0.16s;
  pointer-events: none;
  overflow: hidden;
}
.book.is-open .book__panel {
  opacity: 1;
  pointer-events: auto;
}

/* ── Full-bleed background photo (used for BOTH spine + open panel) ── */
.book__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.book__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
  transform: scale(1.08);
}
.book.is-open .book__bg img { transform: scale(1); }
.book__bg-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1e2219 0%, #2d3428 100%);
}

/* ── Overlay — on SPINE: uniform dark; on OPEN: fades left→right ── */
.book__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.48);      /* default: uniform semi-dark for spines */
  pointer-events: none;
  transition: background 0.45s ease;
}
.book.is-open .book__overlay {
  background:
    linear-gradient(
      105deg,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.72) 30%,
      rgba(0,0,0,0.40) 58%,
      rgba(0,0,0,0.12) 82%,
      rgba(0,0,0,0.04) 100%
    ),
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 45%);
}

/* ── Content: title top-left, footer bottom-left ── */
.book__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;   /* title top, footer bottom */
  padding: 36px 44px 36px 44px;
  max-width: 600px;
}

/* Top block: meta + title + desc */
.book__content-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* Badge (number) — hidden per design */
.book__badge { display: none; }

.book__duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.book__duration svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.4); }

.book__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: #ffffff;
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.65);
}
.book__desc {
  font-size: 14px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 400px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Bottom block: price + CTA */
.book__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.book__price {
  font-size: 20px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--gold-light);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  border-top: 1px dashed var(--gold-border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.step__num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  background: var(--bg-alt);
  padding: 0 8px;
}
.step__title {
  font-size: 14px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  color: var(--text-pri);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.step__desc { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

/* ── Value Stack ── */
.value-stack {
  margin-top: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.value-stack__kicker {
  font-size: 12px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.value-stack__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  line-height: 1.2;
  margin-bottom: 36px;
}

.value-stack__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.value-item:last-child { border-bottom: none; }

.value-item--main {
  background: rgba(201, 162, 56, 0.07);
}

.value-item__name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-pri);
  text-align: left;
}
.value-item__name svg { stroke: var(--gold); flex-shrink: 0; }

.value-item__price {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.value-item__price s {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.value-item__price em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: #2d8a4e;
  background: rgba(45,138,78,0.1);
  padding: 2px 8px;
  border-radius: 50px;
}
.value-item__price--main {
  font-size: 18px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
}

.value-stack__total {
  border: 1px solid var(--border-card);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 16px 16px;
  margin-top: -1px;
  padding: 16px 24px;
  background: var(--bg-card);
}

.value-total__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.value-total__label {
  font-size: 14px;
  color: var(--text-sec);
}

.value-total__old {
  font-size: 16px;
  color: var(--text-muted);
}
.value-total__old s { text-decoration: line-through; }

.value-total__row--pay .value-total__label {
  font-size: 16px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
}
.value-total__price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800; font-variation-settings: 'wght' 800;
  color: var(--gold-dark);
}

.value-stack__utp {
  margin-top: 32px;
  font-size: 17px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 28px;
}

.value-stack .btn { min-width: 280px; }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual__img {
  width: 100%;
  border-radius: var(--radius-card);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.about-visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.45) 0%, transparent 50%);
  border-radius: var(--radius-card);
}
.about-visual__badge {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  background: rgba(250,248,244,0.96);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-pri);
  font-weight: 500; font-variation-settings: 'wght' 500;
  text-align: center;
  border: 1px solid rgba(184,146,79,0.2);
}

.about-content { }
.about-content .section__label { margin-bottom: 16px; }
.about-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--text-pri);
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-text { font-size: 16px; color: var(--text-sec); line-height: 1.7; margin-bottom: 16px; }

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 28px 0;
}
.about-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--text-pri);
  line-height: 1.6;
}

.about-counters {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-counter__num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold);
  font-weight: 600; font-variation-settings: 'wght' 600;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.about-counter__label { font-size: 14px; color: var(--text-muted); }

.about-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════
   TEAM
══════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.5) 0%, transparent 50%);
}
.team-card__body { padding: 24px; }
.team-card__spec {
  font-size: 10px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-pri);
  margin-bottom: 12px;
}
.team-card__bio { font-size: 14px; color: var(--text-sec); line-height: 1.65; margin-bottom: 16px; }
.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.tag {
  font-size: 12px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════
   DIFFERENCE / WHY US
══════════════════════════════════════════════ */
/* ── A Diferença da Nossa Abordagem ───────── */
.diferenca-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  background: #111010;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  content-visibility: auto;
  contain-intrinsic-block-size: auto 700px;
  justify-content: center;
}

.diferenca-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.diferenca-section__bg img {
  /* Fill width; image taller than container so vertical crop applies */
  width: 100%;
  height: 160%;          /* force image taller → zooms in figure */
  object-fit: cover;
  object-position: center 25%; /* shifted down so head clears the title */
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Dark overlay: heavy on sides (behind cards), transparent in centre (figure visible),
   fade-in at bottom to mask the waist cut */
.diferenca-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* left-side fade — behind "bones" card */
    linear-gradient(to right,
      rgba(12,10,8,0.60) 0%,
      rgba(12,10,8,0.32) 22%,
      rgba(12,10,8,0.02) 42%,
      rgba(12,10,8,0.02) 58%,
      rgba(12,10,8,0.32) 78%,
      rgba(12,10,8,0.60) 100%),
    /* top vignette */
    linear-gradient(to bottom,
      rgba(12,10,8,0.22) 0%,
      rgba(12,10,8,0.00) 15%,
      rgba(12,10,8,0.00) 55%,
      /* bottom fade — hides waist cutoff */
      rgba(12,10,8,0.50) 80%,
      rgba(12,10,8,0.78) 100%);
}

.diferenca-section__body {
  position: relative;
  z-index: 2;
}

.diferenca-section__title { color: #fff !important; }

/* Three-column layout */
.diff-layout {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  gap: 32px;
  align-items: center;
  margin: 48px 0 64px;
}

.diff-spacer {
  /* Transparent gap — figure arms visible at sides */
  min-height: 420px;
}

.diff-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}

.diff-card--right {
  border-color: rgba(201,162,56,0.35);
  background: rgba(201,162,56,0.08);
}

.diff-card__label {
  font-size: 13px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.diff-card__label--no  { color: rgba(255,255,255,0.55); }
.diff-card__label--yes { color: #1a1a1a; font-weight: 800; font-variation-settings: 'wght' 800; }

.diff-card__sub {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: #fff;
  margin-bottom: 22px;
}

.diff-list { display: flex; flex-direction: column; gap: 14px; }
.diff-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}
.diff-list__icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700; font-variation-settings: 'wght' 700;
}
.diff-list__icon--no  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.diff-list__icon--yes { background: rgba(0,0,0,0.12); color: #1a1a1a; font-weight: 800; font-variation-settings: 'wght' 800; }

/* USPs bar */
.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.usp-item {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition);
}
.usp-item:hover {
  background: rgba(201,162,56,0.08);
  border-color: rgba(201,162,56,0.3);
}
.usp-item__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,56,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background var(--transition), border-color var(--transition);
}
.usp-item__icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.usp-item:hover .usp-item__icon { background: rgba(201,162,56,0.12); border-color: var(--gold); }
.usp-item__title { font-size: 14px; font-weight: 600; font-variation-settings: 'wght' 600; color: #fff; margin-bottom: 6px; }
.usp-item__desc  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; }

@media (max-width: 1024px) {
  .diff-layout { grid-template-columns: 1fr 180px 1fr; gap: 20px; }
  .diff-spacer { min-height: 280px; }
  .usps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .diff-layout { grid-template-columns: 1fr; }
  .diff-spacer { display: none; }
  .usps-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   REVIEWS — unified system
══════════════════════════════════════════════ */

/* Sub-sections */
#testemunhos {
}
.rev-section { margin-bottom: 52px; }
.rev-section:last-child { margin-bottom: 0; }
.rev-section__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Screenshot gallery strip */
.rev-screenshots {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.rev-screenshots::-webkit-scrollbar { height: 4px; }
.rev-screenshots::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.rev-screenshot-thumb {
  flex: 0 0 120px;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  scroll-snap-align: start;
  transition: border-color var(--transition), transform var(--transition);
}
.rev-screenshot-thumb:hover { border-color: var(--gold); transform: translateY(-2px); }
.rev-screenshot-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lightbox */
.rev-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.rev-lightbox[hidden] { display: none; }
.rev-lightbox__stage {
  position: relative;
  flex: 1;
  max-width: min(480px, calc(100vw - 120px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.rev-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  user-select: none;
}
.rev-lightbox__counter { font-size: 13px; color: rgba(255,255,255,.5); }
.rev-lightbox__close {
  position: absolute;
  top: -52px; right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.rev-lightbox__close:hover { background: rgba(255,255,255,.22); }
.rev-lightbox__nav {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.rev-lightbox__nav:hover { background: rgba(255,255,255,.18); }
.rev-lightbox__nav:disabled { opacity: .25; cursor: default; pointer-events: none; }

/* Google/stats badge */
.rev-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 14px;
}
.rev-badge__stars { display: flex; gap: 2px; font-size: 14px; }
.rev-badge__score { font-size: 14px; font-weight: 600; font-variation-settings: 'wght' 600; color: var(--text-pri); }
.rev-badge__count { font-size: 13px; color: var(--text-muted); }

/* Filter tabs */
.rev-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.rev-filter__btn {
  padding: 7px 18px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  background: var(--bg-card);
  color: var(--text-sec);
  font-size: 13px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.rev-filter__btn:hover { border-color: var(--gold); color: var(--text-pri); }
.rev-filter__btn.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  font-weight: 600; font-variation-settings: 'wght' 600;
}

/* Grid */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.rev-empty { text-align: center; color: var(--text-muted); padding: 40px 0; }

.rev-cta { text-align: center; margin-top: 40px; }
.rev-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  transition: color .2s, border-color .2s;
}
.rev-cta__link:hover { color: var(--gold); border-color: var(--gold); }

/* Base card */
.rev-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition), opacity 0.25s;
  contain: layout style;
}
.rev-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.rev-card.is-hidden  { display: none; }
.rev-card.rv-overflow { display: none; }

.rev-more-wrap {
  text-align: center;
  margin-top: 28px;
}
.rev-more-btn {
  gap: 6px;
}
.rev-more-btn svg {
  transition: transform var(--transition);
}
.rev-more-btn:hover svg {
  transform: translateY(3px);
}
.rev-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.rev-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rev-card__stars { display: flex; gap: 2px; font-size: 14px; }
.rev-card__text {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rev-card__author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.rev-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.rev-card__name { font-size: 13px; font-weight: 600; font-variation-settings: 'wght' 600; color: var(--text-pri); }
.rev-card__name--link { text-decoration: none; color: var(--text-pri); transition: color var(--transition); }
.rev-card__name--link:hover { color: #c13584; }
.rev-card__avatar--link { display: flex; transition: opacity var(--transition); }
.rev-card__avatar--link:hover { opacity: 0.8; }
.rev-card__hl-ring--link { display: flex; align-items: center; justify-content: center; transition: opacity var(--transition); }
.rev-card__hl-ring--link:hover { opacity: 0.85; }
.rev-card__meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.rev-card__link { color: var(--gold); text-decoration: none; font-size: 11px; }
.rev-card__link:hover { text-decoration: underline; }

/* Social icon badge */
.rev-card__social-icon { flex-shrink: 0; opacity: .6; }
.rev-card__social-icon--instagram { color: #c13584; }
.rev-card__social-icon--facebook  { color: #1877f2; }

/* Photo variant */
.rev-card--foto { padding: 0; overflow: hidden; }
.rev-card--foto .rev-card__photo { height: 200px; overflow: hidden; }
.rev-card--foto .rev-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rev-card--foto .rev-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }

/* Foto gallery — single photo: full width, top-aligned, no distortion */
.rev-card__foto-gallery {
  display: block;
  overflow: hidden;
  line-height: 0;
}
.rev-card__foto-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: #f0ede8;
  cursor: pointer;
  flex: unset;
  height: auto;
  border-radius: 0;
  scroll-snap-align: unset;
  transition: opacity 0.2s;
}
.rev-card__foto-thumb:hover { opacity: 0.9; }
.rev-card__foto-thumb img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Multi-photo: horizontal scroll of fixed-size thumbs */
.rev-card__foto-gallery--multi {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rev-card__foto-gallery--multi::-webkit-scrollbar { display: none; }
.rev-card__foto-gallery--multi .rev-card__foto-thumb {
  flex: 0 0 auto;
  width: calc(50% - 2px);
  height: 200px;
}
.rev-card__foto-gallery--multi .rev-card__foto-thumb img {
  height: 100%;
  max-height: unset;
  object-fit: cover;
  object-position: top center;
}

.rev-card--foto .rev-card__body { padding: 14px 18px; }

/* Video variant */
.rev-card--video { padding: 0; overflow: hidden; }
.rev-card__video-wrap {
  position: relative;
  height: 180px;
  background: #111;
  overflow: hidden;
  cursor: pointer;
}
.rev-card__video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .75;
  transition: opacity .2s;
}
.rev-card__video-wrap:hover .rev-card__video-thumb { opacity: .6; }
.rev-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
}
.rev-card__play svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  color: #fff;
  transition: transform .2s;
}
.rev-card__video-wrap:hover .rev-card__play svg { transform: scale(1.12); }
.rev-card--video .rev-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }

/* Embed variant (raw HTML — Instagram/Facebook iframes) */
.rev-card__embed { line-height: 0; }
.rev-card__embed iframe,
.rev-card__embed blockquote { max-width: 100%; margin: 0 !important; }

/* Instagram Highlights card */
.rev-card--highlight {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rev-card__hl-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rev-card__hl-ring {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rev-card__hl-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-card);
  display: block;
}
.rev-card__hl-ig,
.rev-card__hl-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--bg-card);
}
.rev-card__hl-ig { color: #c13584; }
.rev-card__hl-initial {
  font-size: 20px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
}
.rev-card__hl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: #c13584;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity var(--transition);
}
.rev-card__hl-btn:hover { opacity: 0.75; }

/* Responsive */
@media (max-width: 1024px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  {
  .rev-grid { grid-template-columns: 1fr; }
  .rev-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);
    mask-image: linear-gradient(to right, black 75%, transparent 100%);
  }
  .rev-filter::-webkit-scrollbar { display: none; }
  .rev-filter__btn { padding: 6px 14px; font-size: 12px; }

  /* Google + Social grids → horizontal scroll-snap slider */
  .rev-grid--slider {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    padding-bottom: 4px;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    will-change: scroll-position;
  }
  .rev-grid--slider::-webkit-scrollbar { display: none; }
  .rev-grid--slider .rev-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
    contain: layout style;
  }
  /* hide load-more for slider grids on mobile */
  .rev-grid--slider ~ .rev-more-wrap { display: none !important; }

  /* swipe hint — show only on mobile */
  .rev-swipe-hint { display: flex; animation: none; opacity: 0.45; margin-top: 12px; }
}

/* ══════════════════════════════════════════════
   PRICES
══════════════════════════════════════════════ */
/* ══ Massage type tab selector — glass chips ═ */
.massage-tabs {
  margin-bottom: 44px;
  text-align: center;
}
.massage-tabs__label {
  font-size: 16px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.massage-tabs__btns {
  display: inline-flex;
  gap: 8px;
}
.massage-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 0;
  min-width: 140px;
  height: 46px;
  border-radius: 100px;
  border: 1.5px solid rgba(180,160,100,0.22);
  background: rgba(255,255,255,0.85);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.massage-tab__bg { display: none; }
.massage-tab__name {
  font-size: 12px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-sec);
  transition: color 0.2s;
}
.massage-tab__dur {
  font-size: 11px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.massage-tab.is-active {
  background: #ffffff;
  border-color: #1a1814;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.massage-tab.is-active .massage-tab__name { color: #1a1814; }
.massage-tab.is-active .massage-tab__dur  { color: #1a1814; }
.massage-tab:hover:not(.is-active) {
  background: rgba(255,255,255,0.18);
  border-color: rgba(180,160,100,0.4);
}

@media (max-width: 600px) {
  .massage-tabs__btns { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .massage-tab { min-width: 88px; height: 52px; }
  .massage-tab__name { font-size: 11px; }
}

.precos-section {
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-block-size: auto 800px;
}

.precos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/img/price-bg.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  z-index: 0;
}

.precos-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent, #ffffff);
  z-index: 1;
  pointer-events: none;
}

.precos-section .container {
  position: relative;
  z-index: 2;
}
/* ══ 3-column pricing cards ══════════════════ */
.pc3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 20px;
}
.pc3-grid--2 {
  grid-template-columns: 1fr 1fr;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Base card */
.pc3 {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Featured (middle) ── */
.pc3--featured {
  border-color: var(--gold);
  box-shadow: 0 12px 48px rgba(201,169,110,0.18);
  margin-top: -20px;
  padding-top: 52px;
  padding-bottom: 40px;
  z-index: 2;
}

/* ── Premium (right, dark) ── */
.pc3--premium {
  background: #1e1c18;
  border-color: rgba(201,169,110,0.3);
}
.pc3--premium .pc3__eyebrow { color: var(--gold); }
.pc3--premium .pc3__name    { color: #f0ece4; }
.pc3--premium .pc3__sub     { color: rgba(240,236,228,0.5); }
.pc3--premium .pc3__price   { color: #f0ece4; }
.pc3--premium .pc3__per     { color: rgba(240,236,228,0.45); }
.pc3--premium .pc3__note    { color: rgba(240,236,228,0.45); }
.pc3--premium .pc3__list li { color: rgba(240,236,228,0.75); }
.pc3--premium .pc3__icon--ok { color: var(--gold); }

/* Badges */
.pc3__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #1a1612;
  font-size: 10px;
  font-weight: 800; font-variation-settings: 'wght' 800;
  letter-spacing: 0.13em;
  padding: 5px 18px;
  border-radius: 40px;
  white-space: nowrap;
}
.pc3__saving-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Eyebrow */
.pc3__eyebrow {
  font-size: 11px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Name */
.pc3__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
  line-height: 1.2;
  margin-bottom: 6px;
}

/* Sub */
.pc3__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Price */
.pc3__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.pc3__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  line-height: 1;
}
.pc3__per {
  font-size: 15px;
  color: var(--text-muted);
}

/* Note / cross-price */
.pc3__note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
  min-height: calc(13px * 1.5 * 2);
  display: flex;
  align-items: flex-start;
}
.pc3__strike {
  text-decoration: line-through;
  opacity: 0.65;
}

/* Divider */
.pc3__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  flex: 1;
  margin-bottom: 24px;
}
.pc3--premium .pc3__list { border-color: rgba(240,236,228,0.12); }

.pc3__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.4;
}
.pc3__list-no { opacity: 0.45; }

.pc3__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pc3__icon--ok { color: var(--gold-dark); }
.pc3__icon--no { color: #aaa; }

/* CTA */
.pc3__btn { margin-top: auto; }
.pc3__btn--dark {
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  border: 1.5px solid rgba(201,169,110,0.4);
  transition: background 0.2s, color 0.2s;
}
.pc3__btn--dark:hover {
  background: var(--gold);
  color: #1a1612;
  transform: translateY(-2px);
}

.prices-note {
  text-align: center;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 36px;
}
.fp-services-more {
  margin-top: 32px;
  text-align: right;
}

/* ══════════════════════════════════════════════
   NOTÍCIAS / BLOG
══════════════════════════════════════════════ */
.news-section {
  padding: 80px 0 88px;
  background: #f2f2f0;
  overflow: hidden; /* clips news-track right bleed at viewport edge */
  content-visibility: auto;
  contain-intrinsic-block-size: auto 600px;
}

.news-head {
  margin-bottom: 36px;
}

.news-head__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.news-head__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  color: var(--text-pri);
  text-decoration: none;
  flex-shrink: 0;
  vertical-align: middle;
  transition: background 0.2s, color 0.2s;
}
.news-head__link:hover { background: var(--gold); color: #fff; }

/* Bottom navigation — same style as certs */
.news-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

/* Horizontal scroll track */
.news-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  width: 100vw;
  padding-left: max(40px, calc((100vw - var(--container)) / 2 + 40px));
  padding-right: 60px;
  padding-bottom: 8px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.news-track::-webkit-scrollbar { display: none; }

/* Card — now an <a> tag */
.news-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  flex: 0 0 320px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: box-shadow 0.28s, border-color 0.28s, transform 0.28s;
}
.news-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  border-color: rgba(201,162,56,0.25);
  transform: translateY(-3px);
}

/* Gold gradient overlay on hover */
.news-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(201,162,56,0.00) 0%,
    rgba(201,162,56,0.10) 60%,
    rgba(201,162,56,0.18) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: 20px;
}
.news-card:hover::before { opacity: 1; }

/* Feather icon that appears on hover */
.news-card__hover-icon {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1.5px solid var(--gold);
  background: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transform: rotate(0deg) translate(8px, 8px);
  opacity: 0;
  transition: opacity 0.28s, transform 0.32s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.news-card:hover .news-card__hover-icon {
  opacity: 1;
  transform: rotate(0deg) translate(0, 0);
}
.news-card__hover-svg { display: block; }

.news-card__top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.news-card__date {
  font-size: 13px;
  color: rgba(0,0,0,0.38);
  font-weight: 400; font-variation-settings: 'wght' 400;
  letter-spacing: 0.02em;
}
.news-card__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  line-height: 1.3;
}
.news-card__bot {
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.news-card__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.22s;
}
.news-card:hover .news-card__read { color: var(--gold-dark); }

/* keep btn--outline-pill for other possible uses */
.btn--outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-btn);
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.22);
  color: var(--text-pri);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.22s, background 0.22s, color 0.22s;
}
.btn--outline-pill:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  background: rgba(185,140,60,0.06);
}

@media (max-width: 768px) {
  .news-card { flex: 0 0 270px; min-height: 300px; }
  .news-head { padding: 0 20px; }
  .news-track { padding-left: 20px; }
}

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 26px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-toggle__num {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(0,0,0,0.3);
  font-weight: 600; font-variation-settings: 'wght' 600;
  flex-shrink: 0;
  width: 28px;
}
.faq-toggle__q {
  flex: 1;
  font-size: 32px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  line-height: 1.25;
}
.faq-toggle__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 18px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.faq-item.is-open .faq-toggle__icon {
  border-color: var(--gold);
  background: #fdf4e7;
  color: var(--gold-dark);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer__inner {
  padding: 0 0 20px 44px;
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.75;
}
.faq-item.is-open .faq-answer { max-height: 300px; }

/* ══════════════════════════════════════════════
   MAP / LOCALIZAÇÃO
══════════════════════════════════════════════ */
.map-section {
  background: var(--bg-dark);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-block-size: auto 450px;
}

.map-section__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 420px;
}

.map-section__info {
  position: relative;
  z-index: 1;          /* stay above the iframe filter stacking context */
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-dark);
  border-right: 1px solid rgba(255,255,255,0.07);
}

.map-section__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 24px;
}

.map-section__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-section__details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.map-section__details li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.map-address2 {
  font-size: 0.88em;
  font-weight: 400; font-variation-settings: 'wght' 400;
  opacity: 0.65;
}

.map-section__cta {
  align-self: flex-start;
  margin-top: 20px;
}

.map-section__qr {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.map-qr__link {
  display: inline-block;
  border-radius: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s;
}
.map-qr__link:hover { opacity: 0.8; }

.map-qr {
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  /* Soft gold tint — muted, semi-transparent */
  filter: sepia(0.6) saturate(1.6) hue-rotate(5deg) brightness(0.95) opacity(0.82);
}

.map-qr img,
.map-qr canvas {
  display: block;
  border-radius: 10px;
}

.map-section__qr-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.map-section__map {
  position: relative;
  min-height: 480px;
}

.map-section__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .map-section__inner {
    grid-template-columns: 1fr;
  }
  .map-section__info {
    padding: 40px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .map-section__map {
    min-height: 280px;
  }
}

/* ══════════════════════════════════════════════
   IMPORTANTE SABER
══════════════════════════════════════════════ */
.policy-section {
  background: #1e1e1e;
  padding: 80px 0;
}

.policy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.policy-text {
  flex: 1;
}

.policy-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.policy-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  font-weight: 400; font-variation-settings: 'wght' 400;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-list li {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  padding-left: 16px;
  position: relative;
}

.policy-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.4);
}

.policy-thanks {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

.policy-icon {
  flex-shrink: 0;
}

.policy-icon img {
  width: 140px;
  height: 140px;
  opacity: 0.22;
}

@media (max-width: 768px) {
  .policy-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .policy-section { padding: 56px 0; }
  .policy-icon { align-self: center; }
  .policy-icon img { width: 90px; height: 90px; }
}

@media (max-width: 480px) {
  .policy-section { padding: 44px 0; }
  .policy-inner { gap: 20px; }
  .policy-icon img { width: 72px; height: 72px; }
}

/* ══════════════════════════════════════════════
   CERTIFICADOS SLIDER
══════════════════════════════════════════════ */
.certs-section {
  background: #f2f2f0;
  padding: 96px 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-block-size: auto 620px;
}

.certs-section .section__title {
  color: var(--text);
}

.certs-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.certs-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.certs-track::-webkit-scrollbar { display: none; }
.certs-track:active { cursor: grabbing; }

.cert-card {
  flex: 0 0 calc(100% / 3);
  padding: 0 12px;
  box-sizing: border-box;
  cursor: pointer;
  scroll-snap-align: start;
}

.cert-card__img-wrap {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e8e6e0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* GPU-composited overlay — no filter, no repaint of composed layer */
.cert-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  opacity: 0;
  transition: opacity 0.22s, background 0.22s;
  pointer-events: none;
}
.cert-card:hover .cert-card__img-wrap::after {
  background: rgba(0,0,0,0.18);
  opacity: 1;
}

.cert-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.cert-card__placeholder {
  color: var(--gold);
  opacity: 0.6;
}

.cert-card__body {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 20px 22px 24px;
}

.cert-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
  line-height: 1.3;
  margin: 0 0 8px;
}

.cert-card__inst {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Certificate lightbox ─────────────────── */
#cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#cert-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cert-lb__bg {
  position: absolute;
  inset: 0;
  background: rgba(10,8,5,0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cert-lb__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-lb__img-wrap {
  position: relative;
  display: inline-flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
}
.cert-lb__img {
  width: min(80vw, 1100px);
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.cert-lb__img--in { opacity: 1; }
.cert-lb__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 18px;
  background: linear-gradient(to top, rgba(10,8,5,0.88) 0%, rgba(10,8,5,0.55) 60%, transparent 100%);
  border-radius: 0 0 12px 12px;
  pointer-events: none;
}
.cert-lb__info-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  line-height: 1.4;
  margin: 0 0 4px;
  letter-spacing: 0.01em;
}
.cert-lb__info-inst {
  color: #c9a238;
  font-size: 12px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  margin: 0;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
.cert-lb__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}
.cert-lb__close:hover { background: rgba(255,255,255,0.22); }
.cert-lb__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  z-index: 2;
}
.cert-lb__arrow--prev { left: -64px; }
.cert-lb__arrow--next { right: -64px; }
.cert-lb__arrow:hover { background: rgba(255,255,255,0.25); }
.cert-lb__arrow:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.cert-lb__counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .cert-lb__img { width: min(88vw, 1100px); }
  .cert-lb__arrow { width: 38px; height: 38px; }
  .cert-lb__arrow--prev { left: 8px; }
  .cert-lb__arrow--next { right: 8px; }
}

/* Cert image lazy-load fade */
.cert-img--lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cert-img--lazy.loaded {
  opacity: 1;
}

/* Nav: prev/next + dots */
.certs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.certs-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.certs-nav__btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,56,0.08);
}

.certs-nav__btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.certs-dots {
  display: flex;
  gap: 8px;
}

.certs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.certs-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 1023px) {
  .cert-card { flex: 0 0 50%; }
}

@media (max-width: 639px) {
  .cert-card { flex: 0 0 100%; }
  .certs-nav { display: none; }
  .certs-swipe-hint { display: flex; }
}

/* Swipe hint — mobile only */
.certs-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(0,0,0,0.35);
  font-size: 13px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  letter-spacing: 0.02em;
  user-select: none;
  animation: hint-fade 2.4s ease-out 0.8s both;
}
.certs-swipe-hint svg { flex-shrink: 0; opacity: 0.6; }
@keyframes hint-fade {
  0%   { opacity: 0; transform: translateY(4px); }
  20%  { opacity: 1; transform: translateY(0); }
  80%  { opacity: 1; }
  100% { opacity: 0.45; }
}

/* ══════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════ */
.cta-band {
  background: var(--bg-dark);
  padding: 96px 0;
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-on-dark);
  margin-bottom: 16px;
}
.cta-band__sub {
  font-size: 18px;
  font-weight: 300; font-variation-settings: 'wght' 300;
  color: var(--text-muted-dark);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* WhatsApp float button */

/* ── WhatsApp float ─────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: wa-pulse 2.5s ease-in-out infinite;
  z-index: -1;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(37,211,102,0.5); }
.wa-float:hover::after { animation: none; }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
@keyframes wa-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 72px 0 0;
  color: var(--text-on-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo__img  { max-height: 48px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.6; }
.footer-logo__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-on-dark);
  letter-spacing: 0.04em;
}
.footer-logo__name span { color: var(--gold-light); }
.footer-logo__tagline {
  display: block;
  font-size: 11px;
  color: rgba(240,236,228,.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.footer-info__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(240,236,228,0.6);
  line-height: 1.5;
}
.footer-info__item svg {
  width: 15px; height: 15px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-info__item a { color: inherit; }
.footer-info__item a:hover { color: var(--gold-light); }

.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(240,236,228,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-social:hover { border-color: var(--gold-light); background: rgba(201,169,110,0.1); }
.footer-social svg { width: 14px; height: 14px; fill: rgba(240,236,228,0.5); transition: fill var(--transition); }
.footer-social:hover svg { fill: var(--gold-light); }

.footer-col__title {
  font-size: 12px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links li { margin: 0; padding: 0; }
.footer-links a {
  font-size: 14px;
  color: rgba(240,236,228,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

/* First 3 services — primary weight (fallback markup + wp_nav_menu markup) */
.footer-links--services a.footer-links__primary,
.footer-links--services li:nth-child(-n+3) > a { font-weight: 600; font-variation-settings: 'wght' 600; color: var(--text-light); }
.footer-links--services a.footer-links__primary:hover,
.footer-links--services li:nth-child(-n+3) > a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(240,236,228,0.08);
  padding: 20px 0;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom__copy { font-size: 12px; color: rgba(240,236,228,0.35); }
.footer-bottom__links { display: flex; align-items: center; gap: 20px; }
.footer-bottom__links a { font-size: 12px; color: rgba(240,236,228,0.35); transition: color var(--transition); }
.footer-bottom__links a:hover { color: var(--gold-light); }
.footer-reclamacoes { display: inline-flex; align-items: center; line-height: 0; opacity: 0.4; transition: opacity var(--transition); }
.footer-reclamacoes:hover { opacity: 0.85; }
.footer-reclamacoes img { display: block; height: 44px; width: auto; }
.footer-arbitragem {
  margin-top: 10px;
  font-size: 10px;
  color: rgba(240,236,228,0.22);
  line-height: 1.5;
}
.footer-arbitragem a { color: rgba(240,236,228,0.28); text-decoration: underline; transition: color var(--transition); }
.footer-arbitragem a:hover { color: rgba(240,236,228,0.55); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container, .container--narrow { padding: 0 28px; }
  .hero__body { grid-template-columns: 1fr 340px; gap: 16px 24px; }
  .hero-offer { padding: 32px 36px 28px; }
  .hero-price-tag { right: 28px; top: 32px; transform: rotate(-6deg); }
  .hero-stars-badge { right: 28px; bottom: 16px; }
  .books-wrap { padding: 0 28px; }
  .books-slider { height: 420px; }
  .book { flex: 0 0 68px; }
  .book__content { padding: 32px 36px; max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 380px; }
  .services-grid { grid-template-columns: 1fr; }
  .pc3-grid { gap: 14px; }
  .pc3 { padding: 28px 20px 24px; }
  .pc3--featured { margin-top: -12px; }
  .pc3__price { font-size: 38px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .usps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-topbar { display: none; }
  .topbar-info { flex-direction: column; }
  .nav-promo { display: none; }
}

/* Tablet portrait: the 2-col hero grid (1fr + fixed 340px price column,
   .hero-right pinned to a fixed 656px height spanning both rows) has no
   room to breathe at these widths — the price card gets squeezed toward
   the right edge and the unused space in its fixed-height column shows up
   as a large empty strip of background photo below/around the Google
   rating badge. Stack it like the phone layout instead, just roomier. */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 0;
    flex-direction: column;
    overflow: visible;
    align-items: stretch;
  }
  .hero__bg {
    position: relative;
    height: 490px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.30) 50%, rgba(0,0,0,0.70) 100%);
  }
  .hero__body {
    position: relative;
    z-index: 2;
    margin-top: -440px;
    background: transparent;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 28px;
  }
  .hero-offer {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 36px 32px 32px;
    border-radius: 16px;
    background: rgba(14, 18, 11, 0.52);
    backdrop-filter: blur(10px) saturate(1.1);
    -webkit-backdrop-filter: blur(10px) saturate(1.1);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 8px 40px rgba(0,0,0,0.30);
  }
  .hero-grev-mini {
    grid-row: 2;
    margin: 0 -28px;
    padding: 16px 28px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .hero-right {
    grid-column: 1;
    grid-row: 3;
    height: auto;
    overflow: visible;
    margin: 0 -28px;
    padding: 28px 28px 20px;
    background: var(--bg-alt);
  }
}

/* Mobile header: logo + phone — hidden on desktop */
.nav-mobile-logo {
  display: none;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-mobile-logo__img { max-height: 36px; width: auto; display: block; }
.nav-mobile-logo .topbar-logo__icon { width: 28px; height: 28px; flex-shrink: 0; }
.nav-mobile-logo .topbar-logo__text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav-mobile-logo .topbar-logo__name { font-family: var(--font-display); font-size: 16px; font-weight: 500; font-variation-settings: 'wght' 500; color: var(--text-dark, #1a1a1a); letter-spacing: 0.04em; }
.nav-mobile-logo .topbar-logo__name span { color: var(--gold); }
.nav-mobile-logo .topbar-logo__sub { font-size: 9px; color: #888; letter-spacing: 0.08em; text-transform: uppercase; }

/* Tablet gap: .site-topbar (which holds the only visible logo) hides at
   max-width:1024px, but the mobile logo only turns on at max-width:768px —
   leaving iPads (~769-1024px) with no logo/branding in the header at all.
   Show the compact logo here too, pinned to the start of the bar, while the
   desktop horizontal nav-list keeps running (unlike the ≤768 mobile nav). */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-mobile-logo {
    display: flex;
    order: -1;
  }
}

.nav-mobile-phone {
  display: none;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-sec);
  font-size: 13px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-mobile-phone svg { display: none; }
.nav-mobile-phone__wrap { display: flex; flex-direction: column; gap: 1px; }
.nav-mobile-phone__num  { font-size: 15px; font-weight: 700; font-variation-settings: 'wght' 700; line-height: 1.1; }
.nav-mobile-phone__note { font-size: 11px; font-weight: 400; font-variation-settings: 'wght' 400; opacity: 0.6; letter-spacing: 0.01em; line-height: 1.2; }

@media (max-width: 360px) {
  .nav-mobile-phone__note { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container, .container--narrow { padding: 0 16px; }
  .nav-list { display: none; }
  .nav-search { display: none; }
  .nav-inner > nav { display: none; }
  html { scroll-padding-top: 72px; }
  .site-header { padding: 0; }
  .nav-inner {
    padding: 0 16px;
    gap: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }
  .nav-mobile-logo {
    display: flex;
    flex-shrink: 0;
    padding-left: 0;
  }
  .nav-mobile-phone {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: 0;
    border-top: none;
    gap: 8px;
    color: var(--text-pri);
    min-width: 0;
  }
  .nav-mobile-phone__wrap { min-width: 0; overflow: hidden; transform: translateY(6px); }
  .nav-mobile-phone__num  { white-space: nowrap; }
  .nav-mobile-phone__note { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 9px; }
  .nav-hamburger {
    display: flex;
    flex-shrink: 0;
    padding-right: 0;
    margin-top: 6px;
  }
  /* ── Hero mobile: video + card overlap ── */
  .hero {
    height: auto;
    min-height: 0;
    flex-direction: column;
    overflow: visible;
    align-items: stretch;
  }
  .hero__bg {
    position: relative;
    height: 380px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__bg-yt {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: max(100%, calc(380px * 16 / 9));
    height: max(380px, calc(100vw * 9 / 16));
  }
  .hero__gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.30) 50%, rgba(0,0,0,0.70) 100%);
  }
  .hero__body {
    position: relative;
    z-index: 2;
    margin-top: -348px;
    background: transparent;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 16px;
  }
  .hero-offer {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 28px 24px 28px;
    border-radius: 16px;
    background: rgba(14, 18, 11, 0.52);
    backdrop-filter: blur(10px) saturate(1.1);
    -webkit-backdrop-filter: blur(10px) saturate(1.1);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 8px 40px rgba(0,0,0,0.30);
  }
  .hero-grev-mini {
    grid-row: 2;
    margin: 0 -16px;
    padding: 16px 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .hero-grev-mini__stars { font-size: 13px; }
  .hero-grev-mini__score { font-size: 14px; }
  .hero-grev-mini__count { font-size: 12px; }
  .hero-right {
    grid-column: 1; grid-row: 3;
    height: auto; overflow: visible;
    margin: 0 -16px;
    padding: 24px 16px 16px;
    background: var(--bg-alt);
  }
  .hero-price-card { padding: 22px 20px 20px; }
  .hero-price-card__price { font-size: 44px; }
  .hero-price-tag { display: none; }
  .hero-stars-badge { right: 16px; bottom: 12px; }
  .hero-form__row { flex-direction: column; }
  .hero-form__submit { width: 100%; }
  .hero-offer__pain { text-wrap: pretty; line-height: 1.45; }
  .hero-offer__pain br { display: none; }
  .books-wrap { padding: 0 16px; }

  /* Mobile: one card at a time, rest hidden */
  .books-slider {
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
  }
  .book {
    flex: none !important;
    width: 100% !important;
    display: none;
    border-radius: 14px;
    cursor: default;
  }
  .book.is-open {
    display: flex;
    flex: 1 1 100% !important;
  }
  .book__spine { display: none !important; }
  .book__panel { position: absolute; inset: 0; opacity: 1 !important; pointer-events: auto; }
  .book__content {
    padding: 24px 24px 28px;
    max-width: 100%;
    justify-content: flex-end;
  }
  .book__overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.55) 45%,
      rgba(0,0,0,0.15) 100%
    ) !important;
  }

  /* Arrow nav */
  .books-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }
  .books-nav__btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--text-pri);
    transition: border-color var(--transition), background var(--transition);
    flex-shrink: 0;
  }
  .books-nav__btn:hover { border-color: var(--gold); color: var(--gold); }
  .books-nav__btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
  .books-nav__counter {
    font-size: 14px;
    font-weight: 600; font-variation-settings: 'wght' 600;
    color: var(--text-muted);
    min-width: 48px;
    text-align: center;
    letter-spacing: 0.04em;
  }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  /* Pricing carousel — snap управляется JS, не CSS */
  .pc3-grid {
    display: flex;
    grid-template-columns: unset;
    max-width: unset;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-inline: -16px;
    width: calc(100% + 32px);
    /* верхний padding под бейдж MAIS POPULAR */
    padding: 22px 9vw 8px;
    gap: 12px;
  }
  .pc3-grid::-webkit-scrollbar { display: none; }
  .pc3 {
    flex: 0 0 88vw;
    max-width: none;
    /* компактные отступы — overflow НЕ ставим, иначе клипает бейдж */
    padding: 20px 16px 16px;
  }
  /* featured: место сверху под бейдж "MAIS POPULAR" */
  .pc3--featured {
    margin-top: 0;
    padding-top: 32px;
    box-shadow: 0 8px 32px rgba(201,169,110,0.28);
  }
  /* компактная типографика */
  .pc3__name    { font-size: 20px; margin-bottom: 4px; }
  .pc3__sub     { font-size: 12px; margin-bottom: 10px; }
  .pc3__price   { font-size: 36px; }
  .pc3__note    { font-size: 12px; margin-bottom: 12px; min-height: 0; }
  .pc3__list    { gap: 6px; padding: 12px 0; margin-bottom: 14px; }
  .pc3__list li { font-size: 13px; gap: 8px; }
  .pc3__eyebrow { margin-bottom: 6px; }

  /* Dots indicator */
  .pc3-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .pc3-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    transition: background .25s, transform .25s;
  }
  .pc3-dot.is-active { background: var(--gold); transform: scale(1.35); }
  .usps-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .footer-bottom__links { flex-wrap: wrap; justify-content: center; }

  /* FAQ — компактная адаптация */
  .faq-toggle         { padding: 12px 0; gap: 10px; }
  .faq-toggle__num    { font-size: 11px; width: 16px; opacity: 0.45; }
  .faq-toggle__q      { font-size: 15px; font-weight: 500; font-variation-settings: 'wght' 500; line-height: 1.35; }
  .faq-toggle__icon   { width: 20px; height: 20px; font-size: 14px; flex-shrink: 0; }
  .faq-answer__inner  { padding: 0 0 12px 26px; font-size: 13px; line-height: 1.55; }
}

/* ══════════════════════════════════════════════
   SERVIÇOS GRID TILES
══════════════════════════════════════════════ */
.servicos-grid-section {
  background: var(--bg-main);
  padding: 48px 0 56px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.servico-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 110px;
  padding: 20px 20px 22px;
  padding-right: 60px;
  background: #ffffff;
  border: 1px solid rgba(212,212,212,0.7);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease), background 0.28s var(--ease);
  cursor: pointer;
  overflow: hidden;
}

.servico-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(201,162,56,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.servico-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
  border-color: var(--gold-border);
  background: #fdfbf6;
}

.servico-tile:hover::before { opacity: 1; }

.servico-tile__arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,162,56,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  flex-shrink: 0;
}

.servico-tile__arrow svg {
  width: 16px;
  height: 16px;
}

.servico-tile:hover .servico-tile__arrow {
  background: var(--gold-gradient);
  color: #fff;
  transform: scale(1.08);
}

.servico-tile__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color 0.25s var(--ease);
}

.servico-tile:hover .servico-tile__title { color: var(--gold-dark); }

/* Responsive */
@media (max-width: 900px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .servicos-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .servico-tile { min-height: 90px; padding: 14px 14px 16px; }
  .servico-tile__title { font-size: 14px; }
}

/* ══════════════════════════════════════════════
   SOBRE NÓS — tensclinic layout
══════════════════════════════════════════════ */
.sn-section {
  padding: 80px 0 72px;
  background: #fff;
}

/* ── Badge ── */
.sn-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 24px;
}

/* ── TOP: 3-column ── */
.sn-top {
  display: grid;
  grid-template-columns: 360px 1fr 192px;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 0;
}

/* Left: copy */
.sn-left { display: flex; flex-direction: column; }

.sn-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400; font-variation-settings: 'wght' 400;
  line-height: 1.35;
  color: var(--text-pri);
  margin-bottom: 20px;
}

.sn-title strong { font-weight: 700; font-variation-settings: 'wght' 700; }

.sn-text {
  font-size: 16px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* Stats metrics */
.sn-metrics {
  display: flex;
  margin: 28px 0 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  gap: 0;
}
.sn-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.sn-metric:first-child { padding-left: 0; }
.sn-metric:last-child  { border-right: none; }
.sn-metric b {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  line-height: 1;
}
.sn-metric span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* Quote */
.sn-quote {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.sn-quote::before {
  content: '\201C';
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 96px;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 16px;
  font-style: normal;
  opacity: 0.85;
}

.sn-quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 14px;
}

.sn-quote__sig {
  font-size: 12px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sn-quote__sig::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* Center: two stacked photos */
.sn-main-photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sn-main-photo {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex: 1;
  min-height: 220px;
}

.sn-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.sn-main-photo:hover img { transform: scale(1.03); }

/* Right: stacked small photos */
.sn-side-photos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sn-side-photo {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  min-height: 0;
}

.sn-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.sn-side-photo:hover img { transform: scale(1.05); }

/* ── BOTTOM: 6 benefit tiles ── */
.sn-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

.sn-benefit {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s var(--ease);
}

.sn-benefit:nth-child(3n)  { border-right: none; }
.sn-benefit:nth-child(n+4) { border-bottom: none; }
.sn-benefit:hover { background: var(--bg-alt); }

.sn-benefit__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}

.sn-benefit__icon svg { width: 100%; height: 100%; }

.sn-benefit__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  margin-bottom: 8px;
}

.sn-benefit__text {
  font-size: 16px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sn-top { grid-template-columns: 300px 1fr 160px; }
}

@media (max-width: 860px) {
  .sn-top { grid-template-columns: 1fr 1fr; }
  .sn-left { grid-column: 1 / 2; }
  .sn-main-photos { grid-column: 2 / 3; grid-row: 1 / 3; }
  .sn-main-photo { min-height: 170px; }
  .sn-side-photos { grid-column: 1 / 2; flex-direction: row; }
  .sn-benefits { grid-template-columns: repeat(2, 1fr); }
  .sn-benefit:nth-child(3n)  { border-right: 1px solid var(--border); }
  .sn-benefit:nth-child(2n)  { border-right: none; }
  .sn-benefit:nth-child(n+4) { border-bottom: none; }
  .sn-benefit:nth-child(n+3):nth-child(-n+4) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 600px) {
  .sn-top { grid-template-columns: 1fr; }
  .sn-main-photos { grid-column: auto; grid-row: auto; flex-direction: row; gap: 8px; }
  .sn-main-photo { flex: 1; min-height: 180px; }
  .sn-side-photos {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .sn-side-photo { flex: 1; min-height: 120px; }
  .sn-benefits { grid-template-columns: 1fr; }
  .sn-benefit { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .sn-benefit:last-child { border-bottom: none !important; }
}

/* ══════════════════════════════════════════════
   SPECIALISTS — pan image + side card
══════════════════════════════════════════════ */
.spec-section {
  padding: 80px 0 88px;
  background: var(--bg-alt);
  content-visibility: auto;
  contain-intrinsic-block-size: auto 900px;
}

/* Heading */
.spec-head { margin-bottom: 40px; }
.spec-head__text { flex: 1; }
.spec-head__title-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }

.spec-head__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  color: var(--text-pri);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.spec-head__arrow:hover { background: var(--gold); color: #fff; }

.spec-head__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
}

.spec-head__sub {
  font-size: 16px;
  font-weight: 300; font-variation-settings: 'wght' 300;
  color: var(--text-muted);
}

/* ── Main layout: image left, card right ── */
.spec-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* LEFT: woman image */
.spec-img-col { position: relative; }

@keyframes spec-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.spec-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
  box-shadow: var(--shadow-hover);
  animation: spec-float 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .spec-img-wrap { animation: none; }
}

.spec-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  transform: scale(1.35);
  opacity: 0;
  filter: grayscale(8%) contrast(1.04);
  transition: opacity 0.55s ease-in-out;
}
.spec-img.is-visible { opacity: 1; }

.spec-img--dmytro {
  background-position: 100% center;
  transform-origin: right center;
}
.spec-img--marina {
  background-position: 0% center;
  transform-origin: left center;
}

/* ── Service pills on left image ── */
.spec-pills {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  pointer-events: none;
}

.spec-pills.is-active { display: flex; }
.spec-pills { transition: opacity 0.22s ease; }
.spec-pills.is-leaving { opacity: 0; pointer-events: none; }

/* Maryna — pills align left, slide in from left */
#pills-marina { align-items: flex-start; }
#pills-marina .spec-pill { animation-name: pillInLeft; }

/* Dmytro — pills align right, slide in from right */
#pills-dmytro { align-items: flex-end; }
#pills-dmytro .spec-pill { animation-name: pillInRight; }

.spec-pill {
  display: block;
  padding: 9px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--text-pri);
  font-size: 16px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  animation-duration: 0.45s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}

@keyframes pillInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pillInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Side labels on the image */
.spec-img-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
}

.spec-img-label {
  font-size: 12px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.spec-img-label.is-visible { opacity: 1; }

.spec-img-label--l { background: rgba(201,162,56,0.35); }
.spec-img-label--r { background: rgba(20,23,16,0.4); }

/* RIGHT: toggle + card */
.spec-card-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spec-cards-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Pill toggle */
.spec-toggle {
  display: inline-flex;
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
  gap: 0;
  box-shadow: var(--shadow-card);
}

.spec-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s;
}
.spec-toggle__btn:hover { background: transparent; color: var(--text-muted); }

.spec-toggle__btn.is-active {
  background: var(--bg-dark);
  color: #fff;
}

.spec-toggle__gender {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.55;
}

.spec-toggle__btn.is-active .spec-toggle__gender { opacity: 1; }

/* Cards wrap */
.spec-cards-wrap { position: relative; }

.spec-card {
  display: none;
  border-radius: 20px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  position: relative;
}

.spec-card.is-active {
  display: flex;
  flex: 1;
  flex-direction: column;
  animation: specCardIn 0.4s var(--ease) both;
}

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

/* Photo — fills entire card with top breathing room */
.spec-card__photo-wrap {
  position: absolute;
  inset: 18px 0 0 0;
  font-size: 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.spec-card { background: var(--bg-main); }

.spec-card__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease);
}

.spec-card:hover .spec-card__photo { transform: none; }

/* Glass overlay — sticks to bottom of card */
.spec-card__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 16px 20px 20px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}

.spec-card__role {
  display: inline-block;
  font-size: 11px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  text-transform: uppercase;
  color: var(--text-pri);
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.spec-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  line-height: 1.05;
  margin-bottom: 8px;
}

.spec-card__bio {
  font-size: 16px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 12px;
}

.spec-card__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 16px;
  margin-bottom: 18px;
}

.spec-card__list li {
  font-size: 16px;
  color: var(--text-pri);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
  font-weight: 400; font-variation-settings: 'wght' 400;
}

.spec-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.spec-card__body .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .spec-layout { grid-template-columns: 1fr; }
  .spec-img-wrap { aspect-ratio: 4 / 3; }
  .spec-card__list { grid-template-columns: 1fr; }
  .spec-pills { gap: 7px; padding: 16px 14px; }
  .spec-pill { font-size: 12px; padding: 5px 13px; }
  .spec-card { min-height: 520px; }
}

@media (max-width: 480px) {
  .spec-section { padding: 56px 0 64px; }
  .spec-card__body { padding: 20px 20px 24px; }
  .spec-card__name { font-size: 26px; }
  .spec-toggle__btn { padding: 9px 18px; font-size: 14px; }
  .spec-pills { gap: 5px; padding: 12px 10px; }
  .spec-pill { font-size: 11px; padding: 4px 10px; }
  .spec-card { min-height: 480px; }
}

/* ══════════════════════════════════════════════
   CTA BANNER — consulta gratuita
══════════════════════════════════════════════ */

/* Full-width gold strip */
.cta-banner-wrap {
  /* Left (text) is darker for readability; right (form) is brighter */
  background: linear-gradient(100deg,
    #6b4204 0%,
    #9a7010 20%,
    #c9a238 52%,
    #e8c056 75%,
    #d4a030 100%
  );
  position: relative;
  overflow: hidden;
}

/* Extra dark overlay on the left third to boost text contrast */
.cta-banner-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.08) 45%, transparent 65%);
  pointer-events: none;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 40px 80px;
  padding: 60px 0;
  position: relative;
}

/* ── Copy ── */
.cta-banner__copy { position: relative; }

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300; font-variation-settings: 'wght' 300;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 14px;
}

.cta-banner__title strong {
  font-weight: 700; font-variation-settings: 'wght' 700;
  display: inline;
}

.cta-banner__sub {
  font-size: 16px;
  font-weight: 300; font-variation-settings: 'wght' 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}

/* ── Form — dark on gold ── */
.cta-banner__form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-banner__field {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  padding: 0 16px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.cta-banner__field:focus-within {
  background: #fff;
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
}

.cta-banner__field-icon {
  width: 16px;
  height: 16px;
  color: rgba(0,0,0,0.4);
  flex-shrink: 0;
  margin-right: 10px;
}

.cta-banner__input {
  flex: 1;
  height: 50px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: #111111;
}

.cta-banner__input::placeholder { color: rgba(0,0,0,0.38); }

.cta-banner__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.cta-banner__check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #111;
  cursor: pointer;
}

.cta-banner__check span {
  font-size: 12px;
  color: rgba(0,0,0,0.72);
  line-height: 1.5;
}

.cta-banner__check a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  background: #111111;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}

.cta-banner__btn:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* ── Text link with arrow ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-pri);
  text-decoration: none;
  position: relative;
  transition: color 0.25s var(--ease), gap 0.22s var(--ease);
}

.link-arrow::after {
  content: '→';
  font-size: 14px;
  font-weight: 400; font-variation-settings: 'wght' 400;
  transition: transform 0.22s var(--ease);
}

.link-arrow::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}

.link-arrow:hover { color: var(--gold-dark); }
.link-arrow:hover::after { transform: translateX(5px); }
.link-arrow:hover::before { transform: scaleX(1); }

/* Responsive */
@media (max-width: 860px) {
  .cta-banner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }
}

@media (max-width: 540px) {
  .cta-banner { padding: 36px 0; }
  .cta-banner__title { font-size: 20px; }
}

/* ══════════════════════════════════════════════
   WP ALIGNMENT CLASSES
══════════════════════════════════════════════ */
.alignleft  { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { text-align: center; margin: 0 auto 1rem; display: block; }
.wp-caption { max-width: 100%; }
.screen-reader-text { position: absolute; left: -9999px; }

/* Mobile network notice */
.mobile-note {
  display: block;
  font-size: 9px;
  line-height: 1.2;
  color: var(--text-muted);
  font-style: normal;
  opacity: 0.7;
}

/* ══════════════════════════════════════════════
   SMART SEARCH PANEL
══════════════════════════════════════════════ */
.search-panel {
  position: fixed;
  left: 0; right: 0;
  top: 0; /* set via JS: header.getBoundingClientRect().bottom */
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  z-index: 99;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.search-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.search-panel__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 16px 24px 20px;
}
.search-panel__field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  padding: 11px 14px;
  background: var(--bg-alt);
  transition: border-color 0.2s;
}
.search-panel__field:focus-within {
  border-color: var(--gold);
  background: #fff;
}
.search-panel__field > svg { color: var(--text-muted); flex-shrink: 0; }
.search-panel__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--text-pri);
  outline: none;
  font-family: inherit;
}
.search-panel__input::placeholder { color: var(--text-muted); }
.search-panel__input::-webkit-search-cancel-button { display: none; }
.search-panel__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 2px;
  border-radius: 4px;
  transition: color 0.15s;
  flex-shrink: 0;
}
.search-panel__close:hover { color: var(--text-pri); }

/* Results */
.search-panel__results { margin-top: 10px; }
.search-result__list {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
}
.search-result__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 1px;
  align-items: center;
  padding: 11px 14px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
  outline: none;
}
.search-result__item:last-child { border-bottom: none; }
.search-result__item:hover,
.search-result__item:focus { background: var(--bg-alt); }
.search-result__type {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 10px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,162,56,0.1);
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.search-result__title {
  font-size: 14px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
  line-height: 1.3;
}
.search-result__title mark {
  background: none;
  color: var(--gold-dark);
}
.search-result__excerpt {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result__loading,
.search-result__empty {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.search-result__all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  color: var(--gold-dark);
  text-decoration: none;
  border-top: 1px solid var(--border);
  margin-top: 6px;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  transition: background 0.12s;
}
.search-result__all:hover { background: rgba(201,162,56,0.06); }

/* Backdrop */
.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.search-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 600px) {
  .search-panel__inner { padding: 12px 16px 16px; }
  .search-result__excerpt { display: none; }
}

/* ══════════════════════════════════════════════
   PERFORMANCE — content-visibility for below-fold sections
   Defers rendering cost until sections scroll into view.
   contain-intrinsic-size provides a size estimate to prevent
   layout shift while the section is not yet rendered.
══════════════════════════════════════════════ */
.section-books,
.cta-banner-wrap,
.section--alt,
.section--white,
.spec-section,
.policy-section,
.certs-section,
.diferenca-section,
.news-section,
.map-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* Hero and top sections must always render immediately */
.hero,
.servicos-grid-section,
.site-topbar,
.site-header {
  content-visibility: visible;
}

/* Service pages are shorter — content-visibility causes more jank than it saves */
.single-servico .section--alt,
.single-servico .section--white,
.single-servico .certs-section,
.single-servico .sp-faq-section,
.single-servico .sp-reviews-section,
.single-servico .sp-pricing-section {
  content-visibility: visible;
  contain-intrinsic-size: unset;
}

/* On mobile, content-visibility estimates cause scroll overrun (white gap below footer) */
@media (max-width: 768px) {
  .section-books,
  .cta-banner-wrap,
  .section--alt,
  .section--white,
  .spec-section,
  .policy-section,
  .certs-section,
  .diferenca-section,
  .news-section,
  .map-section {
    content-visibility: visible;
    contain-intrinsic-size: unset;
  }
}

/* ══════════════════════════════════════════════
   PAGE — SERVIÇOS (page-servicos.php)
══════════════════════════════════════════════ */

/* ── Hero ── */
.sv-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding: 100px 0 60px;
}
/* sp-hero__bg is used for the background — see sp-hero CSS block */
/* When media is present, sp-hero__bg covers the section */
.sv-hero--media .sp-hero__bg {
  background: none; /* dark bg comes from sv-hero itself */
}
.sv-hero__body {
  position: relative;
  z-index: 2;
}

.sv-hero__title {
  font-size: clamp(35px, 5vw, 54px);
  color: var(--text-on-dark);
  line-height: 1.15;
  margin: 0 0 16px;
}
.sv-hero__title em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sv-hero__sub {
  font-size: 17px;
  color: var(--text-muted-dark);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 40px;
}
.sv-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.sv-hero__stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
}
.sv-hero__stat strong {
  font-size: 30px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--gold);
  line-height: 1;
}
.sv-hero__stat span {
  font-size: 12px;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.sv-hero__stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  margin: 0 32px 0 0;
}

/* ── Services grid ── */
.sv-grid-section {
  padding: 80px 0 64px;
  background: var(--bg-main);
}
.sv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .sv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sv-grid { grid-template-columns: 1fr; gap: 20px; }
}

.sv-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.sv-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.sv-card__photo-link { display: block; text-decoration: none; }
.sv-card__photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.sv-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sv-card:hover .sv-card__photo { transform: scale(1.05); }
.sv-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: var(--shadow-gold);
}
.sv-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sv-card__meta {
  margin-bottom: 8px;
}
.sv-card__dur {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500; font-variation-settings: 'wght' 500;
}
.sv-card__dur svg { flex-shrink: 0; }
.sv-card__title {
  font-size: 18px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  margin: 0 0 10px;
  line-height: 1.3;
}
.sv-card__title a {
  color: var(--text-pri);
  text-decoration: none;
  transition: color 0.2s;
}
.sv-card__title a:hover { color: var(--gold); }
.sv-card__excerpt {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.sv-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin-bottom: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.sv-card__price {
  font-size: 18px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
}
.sv-card__pack {
  font-size: 12px;
  color: var(--text-muted);
}
.sv-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sv-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold-dark);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.sv-card__link:hover { color: var(--gold); gap: 8px; }
.sv-card__link svg { flex-shrink: 0; }

/* ── Prices table ── */
.sv-prices {
  padding: 80px 0 64px;
}
.sv-price-table {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.sv-price-table__head,
.sv-price-table__row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr 1fr;
  gap: 0;
}
@media (max-width: 768px) {
  .sv-price-table__head,
  .sv-price-table__row {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
  .sv-price-table__head > div:nth-child(4),
  .sv-price-table__head > div:nth-child(5),
  .sv-price-table__row > div:nth-child(4),
  .sv-price-table__row > div:nth-child(5) {
    display: none;
  }
}
@media (max-width: 480px) {
  .sv-price-table__head,
  .sv-price-table__row { grid-template-columns: 1fr 1fr; }
  .sv-price-table__head > div:nth-child(2),
  .sv-price-table__row .sv-price-table__dur { display: none; }
}
.sv-price-table__head {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sv-price-table__head > div {
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted-dark);
}
.sv-price-table__row {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.sv-price-table__row:last-child { border-bottom: none; }
.sv-price-table__row:hover { background: rgba(255,255,255,0.03); }
.sv-price-table__row > div {
  padding: 16px 18px;
  font-size: 15px;
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
}
.sv-price-table__name {
  font-weight: 600; font-variation-settings: 'wght' 600;
}
.sv-price-table__row .sv-price-table__dur {
  color: var(--text-muted-dark);
  font-size: 13px;
}
.sv-price-table__row .sv-price-table__val {
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold-light);
}
.sv-prices__note {
  font-size: 13px;
  color: var(--text-muted-dark);
  max-width: 680px;
  line-height: 1.6;
}

/* ── CTA strip ── */
.sv-cta-strip {
  padding: 56px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sv-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sv-cta-strip__label {
  margin: 0 0 6px;
}
.sv-cta-strip__title {
  font-size: clamp(19px, 2.5vw, 26px);
  color: var(--text-pri);
  margin: 0;
}
.sv-cta-strip__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Contact + Map ── */
.sv-contact {
  padding: 80px 0 80px;
  background: var(--bg-main);
}
.sv-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .sv-contact__inner { grid-template-columns: 1fr; gap: 40px; }
}
.sv-contact__title {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--text-pri);
  margin: 8px 0 8px;
}
.sv-contact__sub {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.sv-form { display: flex; flex-direction: column; gap: 16px; }
.sv-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .sv-form__row { grid-template-columns: 1fr; }
}
.sv-form__field { display: flex; flex-direction: column; gap: 6px; }
.sv-form__field label {
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
}
.sv-form__field input,
.sv-form__field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  background: var(--bg-card);
  font-size: 15px;
  color: var(--text-pri);
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.sv-form__field input::placeholder,
.sv-form__field textarea::placeholder { color: var(--text-muted); }
.sv-form__field select {
  appearance: none;
  -webkit-appearance: none;
  padding: 12px 42px 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  background-color: var(--bg-card);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  font-size: 15px;
  color: var(--text-pri);
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}
.sv-form__optional {
  font-weight: 400; font-variation-settings: 'wght' 400;
  color: var(--text-muted);
}
.sv-form__required {
  color: #c0392b;
  font-weight: 700; font-variation-settings: 'wght' 700;
  margin-left: 2px;
}
.sv-date-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.sv-date-quick__btn {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-sec);
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.sv-date-quick__btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.sv-date-quick__btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.sv-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin: 2px 0 0;
}
.sv-form__check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.sv-form__check span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.sv-form__check span a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sv-form__field input:focus,
.sv-form__field select:focus,
.sv-form__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,56,0.12);
}
.sv-form__field textarea { resize: vertical; min-height: 100px; }
.sv-form__error {
  background: #fff0f0;
  border: 1px solid #f5c6c6;
  color: #c0392b;
  padding: 10px 14px;
  border-radius: var(--radius-input);
  font-size: 0.875rem;
}
.sv-form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0faf3;
  border: 1px solid #a8d5b5;
  color: #1a6a34;
  padding: 20px 18px;
  border-radius: var(--radius-card);
  font-size: 0.95rem;
  font-weight: 500; font-variation-settings: 'wght' 500;
}
.sv-form__field input[type="date"] { cursor: pointer; }
.sv-form__field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.sv-form__field input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
.sv-form__privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.sv-form__required-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 4px;
}
.sv-form__privacy a { color: var(--gold-dark); }
.sv-contact__map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-card);
  margin-bottom: 20px;
}
.sv-contact__map-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sv-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.5;
}
.sv-contact__info-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.sv-contact__info-item a { color: var(--text-sec); text-decoration: none; }
.sv-contact__info-item a:hover { color: var(--gold); }
.btn--full { width: 100%; justify-content: center; }
.sv-contact__map-info .btn--ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
}

/* ── Consult cards ── */
.sv-consult-wrap {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.sv-consult__header {
  margin-bottom: 32px;
}
.sv-consult__title {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-pri);
  margin: 6px 0 8px;
}
.sv-consult__sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
}
.sv-consult-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .sv-consult-grid { grid-template-columns: 1fr; }
}
.sv-consult-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.sv-consult-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--gold-border);
}
.sv-consult-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201,162,56,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.sv-consult-card__body { flex: 1; min-width: 0; }
.sv-consult-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.sv-consult-card__title {
  font-size: 15px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  margin: 0 0 6px;
}
.sv-consult-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* content-visibility for sv sections below the fold */
.sv-prices,
.sv-cta-strip,
.sv-contact {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER & MODAL
══════════════════════════════════════════════ */

/* ── Banner ── */
.fc-banner {
  position: fixed;
  z-index: 9999;
  animation: fcSlideUp 0.4s ease both;
}
@keyframes fcSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Bottom bar */
.fc-banner--bar {
  bottom: 0; left: 0; right: 0;
  background: var(--bg-darker);
  border-top: 1px solid rgba(201,162,56,0.25);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
}
.fc-banner--bar .fc-banner__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Corner variants */
.fc-banner--corner-left,
.fc-banner--corner-right {
  bottom: 24px;
  max-width: 420px;
  background: var(--bg-darker);
  border: 1px solid rgba(201,162,56,0.25);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.fc-banner--corner-left  { left: 24px; }
.fc-banner--corner-right { right: 24px; }
.fc-banner--corner-left .fc-banner__inner,
.fc-banner--corner-right .fc-banner__inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fc-banner--corner-left  .fc-banner__btns,
.fc-banner--corner-right .fc-banner__btns {
  flex-direction: column;
}

.fc-banner__text { flex: 1; min-width: 0; }
.fc-banner__title {
  font-size: 0.9rem;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-on-dark);
  margin: 0 0 5px;
}
.fc-banner__desc {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
  margin: 0;
}
.fc-banner__policy {
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
}
.fc-banner__policy:hover { text-decoration: underline; }

.fc-banner__btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Buttons ── */
.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600; font-variation-settings: 'wght' 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.fc-btn--accept {
  background: var(--gold-gradient);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.fc-btn--accept:hover {
  background: var(--gold-gradient-h);
  transform: translateY(-1px);
}
.fc-btn--manage {
  background: transparent;
  color: var(--text-muted-dark);
  border: 1px solid rgba(255,255,255,0.2);
}
.fc-btn--manage:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.fc-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.35);
  font-weight: 400; font-variation-settings: 'wght' 400;
  font-size: 0.75rem;
  padding: 6px 10px;
}
.fc-btn--reject:hover { color: rgba(255,255,255,0.65); }
.fc-btn--sm { padding: 9px 18px; }

/* ── Modal ── */
.fc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.fc-modal.is-open {
  display: flex;
}
.fc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
}
.fc-modal__box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  animation: fcModalIn 0.3s ease;
}
@keyframes fcModalIn {
  from { transform: scale(0.95) translateY(10px); opacity: 0; }
  to   { transform: scale(1)    translateY(0);    opacity: 1; }
}
.fc-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border: none;
  background: var(--bg-alt);
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.fc-modal__close:hover { background: var(--border); }
.fc-modal__title {
  font-size: 1.25rem;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  margin: 0 0 8px;
}
.fc-modal__intro {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.5;
}

/* ── Categories ── */
.fc-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.fc-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
}
.fc-category--locked { opacity: 0.7; }
.fc-category__info { flex: 1; }
.fc-category__info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-pri);
  margin-bottom: 5px;
}
.fc-category__info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.fc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}
.fc-badge--on  { background: rgba(39,174,96,0.15);  color: #1a7a3c; }
.fc-badge--off { background: rgba(150,150,150,0.15); color: #666; }

/* ── Toggle switch ── */
.fc-toggle {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}
.fc-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.fc-toggle__track {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--border);
  transition: background 0.25s;
}
.fc-toggle__track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.25s;
}
.fc-toggle__input:checked + .fc-toggle__track {
  background: var(--gold);
}
.fc-toggle__input:checked + .fc-toggle__track::after {
  transform: translateX(20px);
}
.fc-toggle--locked .fc-toggle__track {
  background: var(--gold);
  cursor: not-allowed;
}
.fc-toggle--locked .fc-toggle__track::after {
  transform: translateX(20px);
}

/* ── Modal footer ── */
.fc-modal__footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.fc-modal__footer .fc-btn { flex: 1; }
.fc-modal__revoke {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}
.fc-modal__revoke a { color: var(--gold-dark); }

/* "Gerir cookies" footer link */
.fc-manage-link {
  color: inherit;
  text-decoration: none;
}
.fc-manage-link:hover { color: var(--gold); }

@media (max-width: 600px) {
  .fc-banner--bar .fc-banner__inner { flex-direction: column; align-items: stretch; }
  .fc-banner__btns { flex-direction: column; }
  .fc-btn--accept, .fc-btn--manage { width: 100%; }
  .fc-modal__box { padding: 24px 18px; }
  .fc-banner--corner-left,
  .fc-banner--corner-right {
    left: 12px; right: 12px; max-width: none; bottom: 12px;
  }
}

/* ══════════════════════════════════════════════
   SINGLE SERVICE PAGE — sp-*
══════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────── */
.sp-hero {
  position: relative;
  background: var(--bg-dark);
  padding: 88px 0 72px;
  overflow: hidden;
}
.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(184,146,79,.08) 0%, transparent 70%);
  pointer-events: none;
}
.sp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sp-hero__label {
  display: block;
  margin-bottom: 16px;
}
.sp-hero__title {
  color: var(--text-on-dark);
  margin-bottom: 20px;
}
.sp-hero__desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
}
.sp-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.sp-hero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 10px 16px;
  flex: 1;
  min-width: 140px;
}
.sp-hero__stat svg { color: var(--gold-light); flex-shrink: 0; }
.sp-hero__stat-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 2px;
}
.sp-hero__stat-val {
  display: block;
  font-size: 14px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-on-dark);
}
.sp-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.sp-hero__media {
  position: relative;
}
.sp-hero__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}
.sp-hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(184,146,79,.15), rgba(184,146,79,.05));
  border: 1px solid rgba(184,146,79,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(184,146,79,.4);
}
.sp-hero__badge {
  position: absolute;
  bottom: -20px;
  left: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-hover);
  text-align: center;
  min-width: 160px;
}
.sp-hero__badge-from {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.sp-hero__badge-price {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}
.sp-hero__badge-note {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Hero video background ─────────────────── */
.sp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sp-hero__bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sp-hero__bg-yt {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: max(100%, calc(100vh * 16 / 9));
  height: max(100%, calc(100vw * 9 / 16));
  pointer-events: none;
}
.sp-hero__bg-yt iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.sp-hero__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000 center / cover no-repeat;
  opacity: 1;
  transition: opacity 1.2s ease;
}
.sp-hero__poster.is-fading { opacity: 0; }
.sp-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.35) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 30%, rgba(0,0,0,0.30) 100%);
}
/* When video mode: content sits above bg */
.sp-hero--video .sp-hero__copy,
.sp-hero--video .sp-hero__media {
  position: relative;
  z-index: 2;
}
/* Video thumbnail with play button */
.sp-hero__video-thumb {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.sp-hero__video-thumb .sp-hero__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.sp-hero__play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.sp-hero__play-btn:hover {
  background: rgba(201,162,56,0.5);
  transform: scale(1.08);
}
/* container needs z-index when bg is active */
.sp-hero .container {
  position: relative;
  z-index: 2;
}

/* ── About + Sidebar ───────────────────────── */
.sp-about {
  padding-top: 72px;
}
.sp-about__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.sp-about__content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-sec);
  min-width: 0;
}
.sp-about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800; font-variation-settings: 'wght' 800;
  line-height: 1.2;
  color: var(--text-pri);
  margin: 32px 0 14px;
}
.sp-about__content h3 {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700; font-variation-settings: 'wght' 700;
  line-height: 1.3;
  color: var(--text-pri);
  margin: 24px 0 10px;
}
.sp-about__content p { margin-bottom: 18px; }
.sp-about__content ul { margin: 0 0 18px 0; padding: 0; }
.sp-about__content ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  list-style: none;
}
.sp-about__content ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 10px;
  flex-shrink: 0;
}
.sp-booking-card {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  min-width: 0;
}
.sp-booking-card .t-label { margin-bottom: 8px; }
.sp-booking-card__from {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.sp-booking-card__price {
  font-size: 28px;
  margin-bottom: 6px;
}
.sp-booking-card__dur {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.sp-booking-card__list {
  padding: 0;
  margin: 0 0 22px 0;
}
.sp-booking-card .btn {
  display: flex;
}
.sp-booking-card .btn + .btn {
  margin-top: 10px;
}
.sp-booking-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-sec);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
}
.sp-booking-card__list li:last-child { border-bottom: none; }
.sp-booking-card__list li svg { color: var(--gold); flex-shrink: 0; }
.sp-booking-card__note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ── Indications ───────────────────────────── */
.sp-ind { background: var(--bg-alt); }
.sp-ind__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.sp-ind__head { padding-top: 6px; }
.sp-ind__head .section__title { margin-bottom: 16px; }
.sp-ind__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-sec);
}
.sp-ind__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  padding: 0;
  margin: 0;
}
.sp-ind__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.5;
  list-style: none;
}
.sp-ind__item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── Process ───────────────────────────────── */
.sp-process { background: var(--bg-darker); }
.sp-process .section__title { color: var(--text-on-dark); }
.sp-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sp-process__step {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-card);
  padding: 32px 24px 28px;
  text-align: center;
}
.sp-process__step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -13px;
  width: 24px;
  height: 2px;
  background: rgba(184,146,79,.35);
  transform: translateY(-50%);
}
.sp-process__step:last-child::after { display: none; }
.sp-process__num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800; font-variation-settings: 'wght' 800;
  color: rgba(184,146,79,.18);
  line-height: 1;
  margin-bottom: -8px;
}
.sp-process__icon {
  color: var(--gold-light);
  margin-bottom: 14px;
}
.sp-process__title {
  font-size: 16px;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}
.sp-process__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted-dark);
}

/* ── Pricing ───────────────────────────────── */
.sp-pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.sp-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sp-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-border);
}
.sp-price-card--featured {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 1px var(--gold-border), var(--shadow-card);
}
.sp-price-card--pack {
  background: var(--bg-alt);
}
.sp-price-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.sp-price-card__tag--gold {
  background: rgba(184,146,79,.1);
  border-color: var(--gold-border);
  color: var(--gold);
}
.sp-price-card__price {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}
.sp-price-card__name {
  font-size: 15px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
  margin-bottom: 8px;
}
.sp-price-card__dur {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.sp-price-card__pack-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-sec);
  margin-bottom: 20px;
}
.sp-price-card__inc {
  flex: 1;
  padding: 0;
  margin: 0 0 24px 0;
}
.sp-price-card__inc li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-sec);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
}
.sp-price-card__inc li:last-child { border-bottom: none; }
.sp-price-card__inc li svg { color: var(--gold); flex-shrink: 0; }
.sp-pricing__note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── sp-info-block ─────────────────────────── */
.sp-info-block {
  background: var(--bg-alt, #f8f8f6);
  border-left: 4px solid var(--accent, #b89c6e);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 32px 0;
}
.sp-info-block h2 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 12px;
}
.sp-info-block p { margin-bottom: 12px; }
.sp-info-block p:last-child { margin-bottom: 0; }

/* ── sp-sources-block ──────────────────────── */
.sp-sources-block {
  border: 1px solid var(--gold, #c9a238);
  border-radius: 6px;
  padding: 28px 32px;
  background: rgba(201, 162, 56, 0.04);
  margin: 32px 0;
}
.sp-sources-block h3 {
  color: var(--gold, #c9a238);
  margin-top: 0;
}

/* ── sp-warning-block ──────────────────────── */
.sp-warning-block {
  background: rgba(197, 48, 48, 0.05);
  border: 1px solid rgba(197, 48, 48, 0.35);
  border-left: 4px solid #c53030;
  border-radius: 6px;
  padding: 28px 32px;
  margin: 32px 0;
}
.sp-warning-block::before {
  content: "⚠ ";
  font-size: 1.1em;
}
.sp-warning-block p { margin-bottom: 12px; }
.sp-warning-block p:last-child { margin-bottom: 0; }

/* ── sp-quote-block ────────────────────────── */
.sp-quote-block {
  border-left: 4px solid var(--gold, #c9a238);
  background: rgba(201, 162, 56, 0.05);
  border-radius: 0 6px 6px 0;
  padding: 28px 32px 90px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.sp-quote-block::before {
  content: "\201D";
  font-size: 24rem;
  color: var(--gold, #c9a238);
  line-height: 1;
  position: absolute;
  bottom: -240px;
  right: 16px;
  top: auto;
  left: auto;
  opacity: 0.1;
}
.sp-quote-block p {
  font-style: italic;
  margin-bottom: 12px;
  padding-left: 20px;
}
.sp-quote-block cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold-dark, #a07a18);
  padding-left: 20px;
  margin-top: 8px;
}

/* ── sp-geo-section ────────────────────────── */
.sp-geo-section { padding: 40px 0; }

/* ── sp-geo-note ───────────────────────────── */
.sp-geo-note {
  background: var(--bg-alt, #f8f8f6);
  border-radius: 6px;
  padding: 24px 28px;
  margin: 0;
}
.sp-geo-note h2 {
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 10px;
}

/* ── sp-table ──────────────────────────────── */
.sp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 20px 0;
}
.sp-table th,
.sp-table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border, #e2ddd7);
  vertical-align: top;
}
.sp-table thead th {
  background: var(--accent, #b89c6e);
  color: #fff;
  font-weight: 600; font-variation-settings: 'wght' 600;
  white-space: nowrap;
}
.sp-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,.03);
}
@media (max-width: 600px) {
  .sp-info-block, .sp-geo-note { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── sp-quote-block-wrapper ───────────────── */
.sp-quote-block-wrapper {
  margin: 2em 0;
}

/* ── sp-cta-final ──────────────────────────── */
.sp-cta-final {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold, #c9a238);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  margin: 2.5em 0;
}
.sp-cta-final h2 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 14px;
  color: var(--text-pri);
}
.sp-cta-final p { margin-bottom: 14px; }
.sp-cta-final p:last-child { margin-bottom: 0; }
.sp-cta-final__more {
  font-size: 14px;
  color: var(--text-sec);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 20px !important;
}

/* ── sp-faq ────────────────────────────────── */
.sp-faq {
  margin: 1.5em 0;
}
.sp-faq__item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.sp-faq__item:first-child { border-top: 1px solid var(--border); }
.sp-faq__item h3 {
  font-size: 16px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
  margin-bottom: 8px;
  line-height: 1.4;
}
.sp-faq__item p {
  font-size: 15px;
  color: var(--text-sec);
  margin: 0;
  line-height: 1.65;
}

/* ── CTA ───────────────────────────────────── */
.sp-cta-section { background: var(--bg-darker); }
.sp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.sp-cta__title {
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--text-on-dark);
  margin-bottom: 12px;
}
.sp-cta__sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  max-width: 520px;
}
.sp-cta__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ── Other Services ────────────────────────── */
.sp-other { background: var(--bg-alt); }
.sp-other__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sp-other__card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 12px 20px 12px 0;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.sp-other__card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-hover);
}
.sp-other__img-wrap {
  width: 110px;
  align-self: stretch;
  flex-shrink: 0;
  margin: -12px 0 -12px 0;
}
.sp-other__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-other__img--empty {
  background: linear-gradient(135deg, var(--bg-alt), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.sp-other__info { flex: 1; }
.sp-other__label {
  display: block;
  margin-bottom: 4px;
}
.sp-other__title {
  font-size: 15px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
  margin-bottom: 6px;
  line-height: 1.3;
}
.sp-other__exc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}
.sp-other__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.sp-other__meta svg { color: var(--gold); }
.sp-other__price {
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold);
  font-size: 13px;
}
.sp-other__arrow { color: var(--gold); flex-shrink: 0; }

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .sp-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .sp-hero__media { display: none; }
  .sp-about__grid { grid-template-columns: 1fr; }
  .sp-booking-card { position: static; }
  .sp-ind__inner { grid-template-columns: 1fr; gap: 32px; }
  .sp-process__steps { grid-template-columns: repeat(2, 1fr); }
  .sp-process__step::after { display: none; }
  .sp-pricing__cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 24px; }
  .sp-cta__inner { flex-direction: column; text-align: center; }
  .sp-cta__actions { justify-content: center; flex-wrap: wrap; }
  .sp-cta__sub { max-width: 100%; }
}
@media (max-width: 640px) {
  .sp-hero { padding: 64px 0 48px; }
  .sp-hero__stats { gap: 6px; }
  .sp-hero__stat { min-width: calc(50% - 4px); }
  .sp-hero__actions { flex-direction: column; }
  .sp-ind__list { grid-template-columns: 1fr; }
  .sp-process__steps { grid-template-columns: 1fr; }
  .sp-other__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   WA FLOAT + SCROLL TO TOP
══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

.scroll-top-wrap {
  position: fixed;
  bottom: 110px;
  right: 32px;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--text-muted);
}
.scroll-top-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top-wrap:hover {
  color: var(--gold);
  transform: translateY(-3px);
}
.scroll-top__label {
  font-size: 10px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  user-select: none;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ══════════════════════════════════════════════
   ANNOUNCEMENT BAR — .site-bar
══════════════════════════════════════════════ */
.site-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  position: relative;
  z-index: 1; /* below .site-header so mega-menu overflows above it */
}
.site-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  min-height: 42px;
}
.site-bar__badge {
  font-size: 10px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.6;
}
.site-bar--promo   .site-bar__badge { background: var(--gold); color: #1a1500; }
.site-bar--noticia .site-bar__badge { background: #2E9B8F; color: #fff; }
.site-bar--info    .site-bar__badge { background: #4A7AB5; color: #fff; }
.site-bar--aviso   .site-bar__badge { background: #D97706; color: #fff; }

/* Text + CTA wrapper: flex:1, clips overflow, fade right edge */
.site-bar__text-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
/* Fade gradient when there's a CTA — covers end of text, CTA sits above it */
.site-bar__text-wrap--cta::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 140px;
  background: linear-gradient(to right, transparent, var(--bg-dark) 55%);
  pointer-events: none;
}
/* Fade when no CTA — just fades text at right edge */
.site-bar__text-wrap:not(.site-bar__text-wrap--cta)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--bg-dark));
  pointer-events: none;
}
.site-bar__msg {
  color: rgba(240,236,228,.82);
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.site-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600; font-variation-settings: 'wght' 600;
  font-size: 12px;
  letter-spacing: .01em;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;               /* above fade gradient */
  background: var(--bg-dark);
  padding-left: 10px;
  transition: color var(--transition);
}
.site-bar__cta:hover { color: var(--gold-light); }
.site-bar__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(240,236,228,.35);
  padding: 0 14px;
  height: 42px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,.07);
  transition: color var(--transition);
}
.site-bar__close:hover { color: rgba(240,236,228,.85); }

/* ── Ticker layout (all viewports) ── */
@keyframes sitebar-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.site-bar__inner {
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.site-bar__tick-wrap {
  flex: 1;
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
}
.site-bar__tick-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: sitebar-ticker 20s linear infinite;
}
.site-bar__tick-unit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 80px;
}
.site-bar__tick-unit .site-bar__badge { flex-shrink: 0; }
.site-bar__tick-unit .site-bar__msg   { white-space: nowrap; color: rgba(240,236,228,.82); }
.site-bar__tick-unit .site-bar__cta   { position: static; background: none; padding-left: 0; z-index: auto; white-space: nowrap; }

@media (max-width: 640px) {
  .site-bar__tick-unit { padding-right: 56px; gap: 10px; }
}

/* ══════════════════════════════════════════════
   BREADCRUMBS — единый компонент .site-breadcrumb
   Менять здесь → меняется везде.
   Вариант тёмного фона: .site-breadcrumb--dark
   Вариант светлого фона: .site-breadcrumb--light
══════════════════════════════════════════════ */

/* Обёртка для страниц со светлым фоном (page.php и т.п.) */
.page-breadcrumb-wrap {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

/* Базовые стили компонента */
.site-breadcrumb { margin-bottom: 20px; }
.site-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
}
.site-breadcrumb__item { display: flex; align-items: center; gap: 6px; }
.site-breadcrumb__item a { text-decoration: none; transition: color var(--transition); }
.site-breadcrumb__item a:hover { color: var(--gold); }
.site-breadcrumb__item--current span { font-weight: 500; font-variation-settings: 'wght' 500; }
.site-breadcrumb__sep { font-size: 14px; }

/* Fundo claro (--bg-alt / --bg-main / branco) */
.site-breadcrumb--light .site-breadcrumb__list { color: var(--text-muted); }
.site-breadcrumb--light .site-breadcrumb__item a { color: var(--text-muted); }
.site-breadcrumb--light .site-breadcrumb__item--current span { color: var(--text-pri); }
.site-breadcrumb--light .site-breadcrumb__sep { color: var(--border); }

/* Fundo escuro (dentro de hero com --bg-dark / --bg-darker) */
.site-breadcrumb--dark .site-breadcrumb__list { color: rgba(240,236,228,.5); }
.site-breadcrumb--dark .site-breadcrumb__item a { color: rgba(240,236,228,.5); }
.site-breadcrumb--dark .site-breadcrumb__item a:hover { color: var(--gold-light); }
.site-breadcrumb--dark .site-breadcrumb__item--current span { color: rgba(240,236,228,1); }
.site-breadcrumb--dark .site-breadcrumb__sep { color: rgba(240,236,228,.25); }

/* Mobile: truncate last breadcrumb item */
@media (max-width: 640px) {
  .site-breadcrumb__list { flex-wrap: nowrap; overflow: hidden; }
  .site-breadcrumb__item { flex-shrink: 0; }
  .site-breadcrumb__item--current { flex-shrink: 1; min-width: 0; overflow: hidden; }
  .site-breadcrumb__item--current span { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
}

/* ══════════════════════════════════════════════
   PRICES PAGE — pr-*
══════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────── */
.pr-hero {
  position: relative;
  background: var(--bg-dark);
  padding: 72px 0 60px;
  overflow: hidden;
}
.pr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(184,146,79,.07) 0%, transparent 70%);
  pointer-events: none;
}
.pr-hero__body {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
  margin-top: 24px;
}
.pr-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text-on-dark);
  margin-bottom: 16px;
}
.pr-hero__sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}
.pr-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pr-hero__included {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-card);
  padding: 24px;
}
.pr-hero__inc-label {
  display: block;
  margin-bottom: 16px;
}
.pr-hero__inc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.pr-hero__inc-item:last-child { border-bottom: none; }
.pr-hero__inc-item svg { color: var(--gold-light); flex-shrink: 0; }
.pr-hero__inc-item span:first-of-type { flex: 1; }
.pr-hero__inc-free {
  font-size: 11px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-light);
  background: rgba(184,146,79,.15);
  border: 1px solid rgba(184,146,79,.3);
  border-radius: 4px;
  padding: 2px 8px;
  flex-shrink: 0;
}

/* ── Price Table ───────────────────────────── */
.pr-table__sub {
  font-size: 16px;
  color: var(--text-sec);
  margin-top: 8px;
}
.pr-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 24px;
}
.pr-table__head {
  display: grid;
  grid-template-columns: 2fr 140px 130px 110px 110px 100px;
  gap: 0;
  background: var(--bg-darker);
  padding: 14px 24px;
}
.pr-table__col {
  font-size: 11px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pr-table__row {
  display: grid;
  grid-template-columns: 2fr 140px 130px 110px 110px 100px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background var(--transition);
}
.pr-table__row:last-child { border-bottom: none; }
.pr-table__row:hover { background: var(--bg-alt); }
.pr-table__col--name { flex-direction: column; align-items: flex-start; gap: 4px; }
.pr-table__col--dur { color: var(--text-muted); font-size: 14px; gap: 6px; }
.pr-table__col--dur svg { color: var(--gold); }
.pr-table__col--price { flex-direction: column; align-items: flex-start; gap: 2px; }
.pr-table__col--action { justify-content: flex-end; }
.pr-table__service-link { text-decoration: none; }
.pr-table__service-link strong {
  font-size: 15px;
  color: var(--text-pri);
  display: block;
  transition: color var(--transition);
}
.pr-table__service-link:hover strong { color: var(--gold); }
.pr-table__tag {
  font-size: 10px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
}
.pr-table__price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--gold);
}
.pr-table__from {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1px;
}
.pr-table__price2 {
  font-size: 13px;
  color: var(--text-muted);
}
.pr-table__pack {
  font-size: 15px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
}
.pr-table__note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ── Packs ─────────────────────────────────── */
.pr-packs-section { background: var(--bg-alt); }
.pr-packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pr-pack {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pr-pack:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.pr-pack--featured {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 1px var(--gold-border);
}
.pr-pack__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pr-pack__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800; font-variation-settings: 'wght' 800;
  color: rgba(184,146,79,.15);
  line-height: 1;
  margin-bottom: -8px;
}
.pr-pack--featured .pr-pack__num { color: rgba(184,146,79,.25); }
.pr-pack__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  margin-bottom: 10px;
}
.pr-pack__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-sec);
  margin-bottom: 20px;
}
.pr-pack__list {
  flex: 1;
  padding: 0;
  margin: 0 0 24px 0;
}
.pr-pack__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-sec);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
}
.pr-pack__list li:last-child { border-bottom: none; }
.pr-pack__list li svg { color: var(--gold); flex-shrink: 0; }

/* ── Included ──────────────────────────────── */
.pr-included-section { background: var(--bg-darker); }
.pr-included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pr-included__item {
  padding: 28px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-card);
}
.pr-included__icon {
  color: var(--gold-light);
  margin-bottom: 14px;
}
.pr-included__title {
  font-size: 16px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-on-dark);
  margin-bottom: 8px;
}
.pr-included__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted-dark);
}

/* ── FAQ ───────────────────────────────────── */
.pr-faq {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.pr-faq__item { border-bottom: 1px solid var(--border); }
.pr-faq__item:last-child { border-bottom: none; }
.pr-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  font-size: 16px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
  text-align: left;
  cursor: pointer;
  border: none;
  transition: color var(--transition);
}
.pr-faq__q:hover { background: none; color: var(--gold); }
.pr-faq__q[aria-expanded="true"] { color: var(--gold); }
.pr-faq__chevron { flex-shrink: 0; transition: transform .25s; }
.pr-faq__q[aria-expanded="true"] .pr-faq__chevron { transform: rotate(180deg); }
.pr-faq__a {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}
.pr-faq__a.is-open { overflow: visible; }
.pr-faq__a p {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-sec);
  margin: 0;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .pr-hero__body { grid-template-columns: 1fr; }
  .pr-table__head,
  .pr-table__row { grid-template-columns: 2fr 1fr 1fr 100px; }
  .pr-table__col:nth-child(4),
  .pr-table__col:nth-child(5) { display: none; }
  .pr-table__col--action { justify-content: flex-end; }
  .pr-packs { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pr-included__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  /* Tabela de preços passa a cartões empilhados — evita que o botão "Marcar"
     fique sem coluna própria e escorregue para a linha seguinte */
  .pr-table { background: transparent; border: none; border-radius: 0; }
  .pr-table__head { display: none; }
  .pr-table__row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name  name"
      "dur   price"
      "action action";
    gap: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 16px 18px;
    margin-bottom: 12px;
  }
  .pr-table__row:last-child { margin-bottom: 0; border-bottom: none; }
  .pr-table__col--name { grid-area: name; }
  .pr-table__col--dur { grid-area: dur; justify-self: start; }
  .pr-table__col--price { grid-area: price; justify-self: end; align-items: flex-end; }
  .pr-table__col:nth-child(4),
  .pr-table__col:nth-child(5) { display: none; }
  .pr-table__col--action { grid-area: action; }
  .pr-table__col--action .btn { width: 100%; justify-content: center; }
  .pr-included__grid { grid-template-columns: 1fr; }
  .wa-float { bottom: 20px; right: 20px; }
  .scroll-top-wrap { bottom: 110px; right: 32px; width: 48px; }
}
@media (max-width: 480px) {
  /* stack (bottom→top): WA 20px h56→76 | AI 88px h52→140 | scroll-top 152px — все right:20px */
  /* scroll-top позиция управляется functions.php через !important */
  .scroll-top-wrap { bottom: 152px; right: 20px; width: 44px; }
}

/* ══════════════════════════════════════════════
   QUESTIONÁRIO — .ank-*
══════════════════════════════════════════════ */

/* Language switching — hide the two inactive languages */
#ank-page[data-lang="pt"] .ank-uk,
#ank-page[data-lang="pt"] .ank-ru { display: none; }
#ank-page[data-lang="uk"] .ank-pt,
#ank-page[data-lang="uk"] .ank-ru { display: none; }
#ank-page[data-lang="ru"] .ank-pt,
#ank-page[data-lang="ru"] .ank-uk { display: none; }

/* Hero */
.ank-hero {
  background: var(--bg-darker);
  padding: 56px 0 44px;
  text-align: center;
}
.ank-hero__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  color: var(--text-on-dark);
  margin: 10px 0 14px;
  line-height: 1.15;
}
.ank-hero__sub {
  font-size: 15px;
  color: rgba(240,236,228,.65);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* Language toggle */
.ank-lang-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}
.ank-lang-btn {
  padding: 7px 24px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  letter-spacing: .1em;
  color: var(--text-muted);
  transition: all var(--transition);
}
.ank-lang-btn.is-active {
  background: var(--gold);
  color: #1a1814;
}

/* Sections */
.ank-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.ank-section:last-child { border-bottom: none; padding-bottom: 0; }
.ank-section__hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ank-section__num {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700; font-variation-settings: 'wght' 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ank-section__title {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-pri);
  font-weight: 700; font-variation-settings: 'wght' 700;
}
.ank-section__hint {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}
.ank-section--consent {
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  padding: 32px;
  margin-top: 8px;
}

/* Fields */
.ank-fields { display: flex; flex-direction: column; gap: 18px; }
.ank-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ank-field { display: flex; flex-direction: column; }
.ank-label {
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
  margin-bottom: 6px;
  line-height: 1.45;
}
.ank-input,
.ank-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  background: var(--bg-card);
  color: var(--text-pri);
  font-size: 15px;
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ank-input::placeholder,
.ank-textarea::placeholder { color: var(--text-muted); }
.ank-input:focus,
.ank-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,56,0.12);
}
.ank-textarea { resize: vertical; min-height: 100px; }

/* Activity level */
.ank-activity { display: flex; flex-direction: column; gap: 6px; }
.ank-activity__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.ank-activity__item:has(input:checked) {
  border-color: var(--gold);
  background: rgba(184,146,79,.07);
}
.ank-activity__item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.ank-activity__item input[type="radio"]:checked {
  background: var(--gold);
}
.ank-activity__item input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.ank-activity__txt { font-size: 14px; color: var(--text-sec); line-height: 1.45; }

/* Radio row */
.ank-radio-row { display: flex; gap: 8px; flex-wrap: wrap; }
.ank-radio {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text-sec);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.ank-radio:has(input:checked) {
  border-color: var(--gold);
  background: rgba(184,146,79,.09);
  color: var(--text-pri);
}
.ank-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
}
.ank-radio input[type="radio"]:checked {
  background: var(--gold);
}
.ank-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

/* Checkbox grid */
.ank-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.ank-check-grid--goals {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.ank-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.ank-check:has(input:checked) {
  border-color: var(--gold);
  background: rgba(184,146,79,.06);
}
.ank-check input[type="checkbox"] { display: none; }
.ank-check__box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.ank-check:has(input:checked) .ank-check__box {
  background: var(--gold);
  border-color: var(--gold);
}
.ank-check:has(input:checked) .ank-check__box::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.ank-check__txt { font-size: 13px; color: var(--text-sec); line-height: 1.45; }
.ank-check--lg .ank-check__txt { font-size: 14px; }

/* Consent */
.ank-consent { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.ank-consent__item { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.ank-consent__item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.ank-consent__txt { font-size: 14px; color: var(--text-sec); line-height: 1.65; }
.ank-consent__txt a { color: var(--gold); text-decoration: underline; }

/* Submit note */
.ank-submit-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

/* Success */
.ank-success { text-align: center; padding: 40px 0 16px; }
.ank-success__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.ank-success__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--text-pri);
  margin-bottom: 10px;
}
.ank-success__msg { font-size: 15px; color: var(--text-sec); }

/* ── Wizard step indicator ── */
.ank-wizard {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
  padding: 18px 0 0;
  margin-bottom: 40px;
}
.ank-wbar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 0;
  overflow: hidden;
}
.ank-wbar__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s var(--ease);
  width: 0%;
}
.ank-wstep__line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-top: 14px;
}
.ank-wsteps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 0 14px;
  list-style: none;
  margin: 0;
}
.ank-wstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
  cursor: default;
}
.ank-wstep__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-main);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}
.ank-wstep__lbl {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
  transition: color var(--transition);
  max-width: 80px;
}
.ank-wstep.is-done .ank-wstep__dot {
  background: var(--gold);
  border-color: var(--gold);
  color: transparent;
  font-size: 0;
}
.ank-wstep.is-done .ank-wstep__dot::after {
  content: '✓';
  font-size: 13px;
  color: #fff;
}
.ank-wstep.is-active .ank-wstep__dot {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,146,79,.15);
}
.ank-wstep.is-active .ank-wstep__lbl { color: var(--gold); font-weight: 600; font-variation-settings: 'wght' 600; }

/* ── Form panels ── */
.ank-panel { display: none; }
.ank-panel.is-active { display: block; }

/* ── Nav buttons (Next / Back) ── */
.ank-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.ank-nav--right { justify-content: flex-end; }

/* ── Field hints ── */
.ank-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.5;
}

/* ── Section divider ── */
.ank-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

/* ── Section description ── */
.ank-section__desc {
  font-size: 14px;
  color: var(--text-sec);
  margin: -8px 0 20px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 700px) {
  .ank-row { grid-template-columns: 1fr; }
  .ank-check-grid { grid-template-columns: 1fr; }
  .ank-section--consent { padding: 24px 16px; }
  .ank-section__hint { display: none; }
  .ank-wizard { top: 56px; }
  .ank-wstep__lbl { display: none; }
  .ank-wstep__dot { width: 24px; height: 24px; font-size: 11px; }
  .ank-nav__back span { display: none; }
}

/* ══════════════════════════════════════════════
   PAGE: SOBRE NÓS
══════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────── */
.sna-hero {
  position: relative;
  background: #181410;
  padding: 80px 0 72px;
  overflow: hidden;
}
.sna-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(184,146,79,.12) 0%, transparent 70%);
  pointer-events: none;
}
.sna-hero__body {
  position: relative;
  max-width: 640px;
  padding-top: 24px;
}
.sna-hero__overline {
  color: var(--gold);
  margin-bottom: 12px;
}
.sna-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.sna-hero__sub {
  font-size: 17px;
  color: rgba(240,236,228,.72);
  line-height: 1.65;
  margin-bottom: 36px;
}
.sna-hero__anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Mission ────────────────────────────────── */
.sna-mission {
  padding: 80px 0;
}
.sna-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.sna-mission__title {
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--text-pri);
  line-height: 1.2;
  margin-bottom: 24px;
}
.sna-mission__text {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 16px;
}
.sna-mission__values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.sna-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sna-value__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.sna-value__title {
  display: block;
  font-size: 15px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  margin-bottom: 4px;
}
.sna-value__desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
  margin: 0;
}

/* ── Specialist sections ────────────────────── */
.sna-spec {
  padding: 96px 0 80px;
  background: var(--bg-page);
  border-top: 1px solid var(--border);
}
.sna-spec--alt {
  background: var(--bg-card);
}
.sna-spec__top {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}
.sna-spec--alt .sna-spec__top {
  grid-template-columns: 1fr 380px;
}
.sna-spec--alt .sna-spec__photo-col { order: 2; }
.sna-spec--alt .sna-spec__info     { order: 1; }
.sna-spec__photo-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sna-spec__photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 72px rgba(0,0,0,0.17);
}
.sna-spec__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sna-spec__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,.45) 0%, transparent 55%);
}
.sna-spec__photo-badge {
  position: absolute;
  bottom: 16px;
  left: 12px;
  right: 12px;
  background: rgba(250,248,244,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-dark);
  text-align: center;
  border: 1px solid rgba(184,146,79,.25);
}
.sna-spec__book-btn {
  margin-top: 4px;
}

/* Info panel — Apple-style frosted card */
.sna-spec__info {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 24px;
  padding: 44px 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

/* Info column */
.sna-spec__name {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  color: var(--text-pri);
  line-height: 1.05;
  margin-bottom: 24px;
}
.sna-spec__bio {
  margin-bottom: 32px;
}
.sna-spec__bio p {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 14px;
}
.sna-spec__bio p:last-child { margin-bottom: 0; }
.sna-spec__block {
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.sna-spec__block-label {
  font-size: 11px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.sna-spec__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sna-spec__svs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sna-spec__svs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-sec);
}
.sna-spec__svs svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Certificates grid ──────────────────────── */
.sna-certs {
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.sna-certs__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  padding: 0 0 16px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-pri);
  text-align: left;
  gap: 12px;
}
.sna-certs__toggle:hover { color: var(--accent); }
.sna-certs__chevron {
  flex-shrink: 0;
  transition: transform .35s ease;
  color: var(--text-sec);
}
.sna-certs__toggle[aria-expanded="true"] .sna-certs__chevron {
  transform: rotate(180deg);
}
.sna-certs__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s ease;
}
.sna-certs__body.is-open {
  max-height: 1200px;
}
.sna-certs__body .certs-slider-wrap {
  margin-top: 20px;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .sna-spec__top,
  .sna-spec--alt .sna-spec__top { grid-template-columns: 300px 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .sna-mission__grid { grid-template-columns: 1fr; gap: 48px; }
  .sna-spec__top,
  .sna-spec--alt .sna-spec__top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }
  .sna-spec--alt .sna-spec__photo-col { order: 0; }
  .sna-spec--alt .sna-spec__info     { order: 0; }
  .sna-spec__photo-wrap { max-width: 380px; margin: 0 auto; }
  .sna-spec__info { padding: 32px 28px; }
  .sna-spec__name { font-size: 36px; }
  .sna-hero__anchors { flex-direction: column; }
  .sna-hero__anchors .btn { width: 100%; text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .sna-hero { padding: 60px 0 56px; }
  .sna-spec { padding: 64px 0 56px; }
  .sna-spec__info { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════════════
   PAGE: SINGLE POST
═══════════════════════════════════════════════════════ */

/* Article hero */
.art-hero {
  background: var(--bg-dark);
  padding: 72px 0 52px;
}
.art-hero__inner { max-width: 800px; }
.art-hero__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 14px;
}
.art-hero__cat:hover { color: var(--gold-light); }
.art-hero__title {
  color: #fff;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.art-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted-dark);
}
.art-hero__date,
.art-hero__read,
.art-hero__author,
.art-hero__updated {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.art-hero__date svg,
.art-hero__read svg,
.art-hero__author svg,
.art-hero__updated svg { opacity: .6; flex-shrink: 0; }
.art-hero__sep { opacity: .4; }
.art-hero__updated {
  color: var(--gold, #c9a238);
  font-size: .82em;
  font-style: italic;
  opacity: .9;
}

/* YMYL medical disclaimer */
.art-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #faf9f5;
  border: 1px solid #e8e3d4;
  border-left: 3px solid var(--gold, #c9a238);
  border-radius: 6px;
  padding: 14px 16px;
  margin: 32px 0 24px;
}
.art-disclaimer svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold, #c9a238);
  opacity: .8;
}
.art-disclaimer p {
  font-size: .82rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

.art-ai-disclosure {
  font-size: 10px;
  color: #999;
  line-height: 1.5;
  margin: 18px 0 0;
  text-align: center;
}

/* Cover image */
.art-cover { background: var(--bg-dark); padding-bottom: 0; }
.art-cover__wrap {
  border-radius: var(--radius-hero) var(--radius-hero) 0 0;
  overflow: hidden;
  height: clamp(240px, 38vw, 480px);
}
.art-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Article wrap */
.art-wrap {
  background: var(--bg-main);
  padding: 56px 0 80px;
}

/* Layout: article (+ optional TOC sidebar) */
.art-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}
.art-layout--toc {
  grid-template-columns: 240px 1fr;
  max-width: none;
}

/* Sidebar column (sticky wrapper for TOC + banner) */
.art-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

/* TOC */
.art-toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 0;
  overflow: hidden;
}
.art-toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-pri);
  gap: 8px;
}
.art-toc__chevron { flex-shrink: 0; transition: transform .25s; }
.art-toc__toggle[aria-expanded="false"] .art-toc__chevron { transform: rotate(-90deg); }
.art-toc__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  counter-reset: toc;
}
.art-toc__item { margin: 0; }
.art-toc__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-sec);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.art-toc__link:hover,
.art-toc__link.is-active {
  background: rgba(201,162,56,.07);
  color: var(--gold-dark);
}
.art-toc__link.is-active { font-weight: 600; font-variation-settings: 'wght' 600; }
.art-toc__num {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-muted);
  margin-top: 1px;
}
.art-toc__link.is-active .art-toc__num {
  background: var(--gold-gradient);
  color: #fff;
}

/* Article body */
.art-body { min-width: 0; }
.art-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-sec);
}
.art-content p { margin-bottom: 1.2em; }
.art-content h2 {
  font-family: var(--font-display);
  font-weight: 800; font-variation-settings: 'wght' 800;
  font-size: 24px;
  color: var(--text-pri);
  margin: 2em 0 .7em;
  padding-top: 0.5em;
  scroll-margin-top: 100px;
}
.art-content h3 {
  font-family: var(--font-display);
  font-weight: 700; font-variation-settings: 'wght' 700;
  font-size: 18px;
  color: var(--text-pri);
  margin: 1.6em 0 .5em;
  scroll-margin-top: 100px;
}
.art-content strong { color: var(--text-pri); font-weight: 600; font-variation-settings: 'wght' 600; }
.art-content em { font-style: italic; }
.art-content ul,
.art-content ol {
  margin-bottom: 1.4em;
  padding-left: 0;
  list-style: none;
}
.art-content ul { padding-left: 1.2em; }
.art-content ol {
  padding-left: 0;
  counter-reset: art-ol;
}
.art-content li {
  position: relative;
  margin-bottom: .55em;
  padding-left: 1.6em;
  line-height: 1.7;
}
.art-content ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.art-content ol > li {
  counter-increment: art-ol;
}
.art-content ol > li::before {
  content: counter(art-ol) '.';
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1.3em;
  font-size: 14px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--gold-dark);
  line-height: 1.9;
}
/* Nested list */
.art-content ul ul,
.art-content ol ol,
.art-content ul ol,
.art-content ol ul {
  margin-top: .4em;
  margin-bottom: .4em;
}
.art-content ul ul > li::before {
  width: 5px;
  height: 5px;
  background: none;
  border: 1.5px solid var(--gold);
  top: .68em;
}
.art-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: rgba(201,162,56,.06);
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  color: var(--text-pri);
  font-style: italic;
}
.art-content img {
  max-width: 100%;
  border-radius: var(--radius-card);
  margin: 1.5em 0;
}
.art-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: rgba(201,162,56,0.45);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.art-content a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}
.art-content a:visited {
  color: #7a6840;
  text-decoration-color: rgba(122,104,64,0.4);
}
.art-content a:visited:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}
.art-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  font-size: 15px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border);
}
.art-content th {
  background: var(--bg-dark);
  color: #fff;
  font-weight: 600; font-variation-settings: 'wght' 600;
  font-size: 13px;
  text-align: left;
  padding: 11px 16px;
}
.art-content td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-sec);
  vertical-align: top;
  line-height: 1.55;
}
.art-content tr:last-child td { border-bottom: none; }
.art-content tr:nth-child(even) td { background: var(--bg-main); }
.art-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}

/* Article CTA */
/* ── Article banners (sidebar + end) ──────────────── */

/* Shared image mode */
.art-banner--image { display: block; border-radius: var(--radius-card); overflow: hidden; }
.art-banner--image a { display: block; }
.art-banner__img { display: block; width: 100%; height: auto; }

/* Sidebar banner (b1) — text mode */
.art-banner--sidebar.art-banner--text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px;
  border-radius: var(--radius-card);
}
.art-banner--sidebar .art-banner__body { width: 100%; }
.art-banner--sidebar .btn { width: 100%; text-align: center; }

/* End-of-article banner (b2) — text mode */
.art-banner--text:not(.art-banner--sidebar) {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 20px 24px;
  border-radius: var(--radius-card);
}
.art-banner--text:not(.art-banner--sidebar) .art-banner__body { flex: 1; min-width: 160px; }

/* Colour variants */
.art-banner--gold {
  background: rgba(212,168,93,.10);
  border-left: 4px solid var(--gold);
}
.art-banner--dark {
  background: var(--bg-dark);
  border-left: 4px solid var(--gold);
}
.art-banner--warm {
  background: #fdf4e7;
  border-left: 4px solid var(--gold-dark);
}

/* Text inside banners */
.art-banner__title {
  display: block;
  font-size: 14px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  margin-bottom: 4px;
  line-height: 1.35;
}
.art-banner--dark .art-banner__title { color: var(--text-on-dark); }
.art-banner__text {
  display: block;
  font-size: 12px;
  color: var(--text-sec);
  line-height: 1.5;
}
.art-banner--dark .art-banner__text { color: rgba(255,255,255,.6); }

.art-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--bg-dark);
  border-radius: var(--radius-card);
}
.art-cta__text {
  color: var(--text-on-dark);
  font-size: 16px;
  flex: 1;
  min-width: 200px;
  margin: 0;
}

/* Prev/Next nav */
.art-nav-wrap {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.art-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.art-nav__prev { justify-self: start; }
.art-nav__next { justify-self: end; }
.art-nav__all {
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
}
.art-nav__all:hover { color: var(--gold); }
.art-nav__btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-sec);
  text-decoration: none;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.art-nav__btn:hover { color: var(--gold); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .art-layout--toc { grid-template-columns: 200px 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .art-layout--toc { grid-template-columns: 1fr; }
  .art-sidebar {
    position: static;
    order: -1;
  }
  .art-hero { padding: 56px 0 40px; }
  .art-content { font-size: 16px; }
  .art-content h2 { font-size: 20px; }
  .art-nav { grid-template-columns: 1fr 1fr; gap: 12px; }
  .art-nav__all { display: none; }
  .art-nav__next { grid-column: 2; }
}
@media (max-width: 480px) {
  .art-nav { grid-template-columns: 1fr; }
  .art-nav__next { justify-self: start; }
  .art-cta { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════
   PAGE: CONTACTOS
═══════════════════════════════════════════════════════ */

/* Hero */
.cnt-hero {
  background: var(--bg-alt);
  padding: 64px 0 56px;
  text-align: center;
}
.cnt-hero__over { margin-bottom: 14px; }
.cnt-hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--text-pri);
  line-height: 1.1;
  margin: 0 0 16px;
}
.cnt-hero__sub {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--text-sec);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.cnt-hero__anchors {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Map overrides */
.cnt-map .map-section__inner {
  grid-template-columns: 360px 1fr;
  min-height: 500px;
}
.cnt-map .map-section__map { min-height: 500px; }

/* Directions section */
.cnt-dirs {
  padding: 80px 0;
  background: var(--bg-main);
}
.cnt-dirs__head {
  text-align: center;
  margin-bottom: 36px;
}
.cnt-dirs__label {
  display: block;
  font-size: 12px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.cnt-dirs__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text-pri);
  margin: 0 0 10px;
}
.cnt-dirs__sub {
  color: var(--text-sec);
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto;
}

/* Tab switcher */
.cnt-tabs {
  display: flex;
  gap: 8px;
  max-width: 880px;
  margin: 0 auto 28px;
}
.cnt-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  font-size: 14px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-sec);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cnt-tab-btn:hover {
  border-color: var(--gold-border);
  color: var(--text-pri);
}
.cnt-tab-btn.is-active {
  background: var(--bg-dark);
  border-color: transparent;
  color: #fff;
}
.cnt-tab-btn.is-active svg { opacity: 0.9; }

/* Tab content */
.cnt-tab-content { display: none; }
.cnt-tab-content.is-active { display: block; }

/* Direction cards */
.cnt-dirs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 24px;
}
.cnt-dir {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  transition: box-shadow 0.2s;
  position: relative;
}
.cnt-dir:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.cnt-dir__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(201,162,56,0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.cnt-dir__time {
  position: absolute;
  top: 24px;
  right: 20px;
  font-size: 11px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--gold-dark);
  background: rgba(201,162,56,0.1);
  border-radius: 20px;
  padding: 3px 10px;
}
.cnt-dir__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  margin: 0 0 12px;
}
.cnt-dir__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cnt-dir__steps li {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.cnt-dir__steps li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 3px;
}

/* Foot note under grid */
.cnt-dirs__foot {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
}
.cnt-dirs__foot-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.cnt-dirs__foot-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
}
.cnt-dirs__foot-link:hover { color: var(--gold); }

/* Public transport cards */
.cnt-transport__intro {
  max-width: 880px;
  margin: 0 auto 20px;
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.65;
}
.cnt-transport__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 24px;
}
.cnt-tcard {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
}
.cnt-tcard__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(66,153,225,0.1);
  color: #3182ce;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.cnt-tcard__title {
  font-size: 15px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  margin: 0 0 4px;
}
.cnt-tcard__from {
  font-size: 12px;
  color: var(--text-sec);
  margin: 0 0 12px;
  opacity: 0.75;
}

/* ── Space gallery ─────────────────────────── */
.loc-gallery {
  overflow: hidden;
  line-height: 0;
}
.loc-gallery__strip {
  display: flex;
  height: 340px;
}
.loc-gallery__item {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  cursor: zoom-in;
}
.loc-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.loc-gallery__item:hover .loc-gallery__img {
  transform: scale(1.07);
}
.loc-gallery__img--empty {
  background: linear-gradient(135deg, #d8ddd9 0%, #c5ccc7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-gallery__img--empty::after {
  content: '';
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50%;
  opacity: .5;
}
.loc-gallery__cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .loc-gallery__strip {
    height: 260px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .loc-gallery__strip::-webkit-scrollbar { display: none; }
  .loc-gallery__item {
    flex: 0 0 75vw;
    scroll-snap-align: start;
  }
}

/* Video tour toggle */
.loc-tour {
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin: 0;
}
.loc-tour__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  letter-spacing: .02em;
  color: var(--text-sec);
  transition: color .2s;
}
.loc-tour__trigger:hover { color: var(--gold); }
.loc-tour__trigger:hover .loc-tour__icon { color: var(--gold); }
.loc-tour__icon {
  color: var(--gold);
  flex-shrink: 0;
  transition: color .2s;
}
.loc-tour__chevron {
  flex-shrink: 0;
  margin-left: auto;
  color: var(--text-muted);
  transition: transform .35s ease, color .2s;
}
.loc-tour__trigger[aria-expanded="true"] .loc-tour__chevron {
  transform: rotate(180deg);
}
.loc-tour__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s ease;
}
.loc-tour__body.is-open {
  max-height: 1200px;
}
.loc-tour__embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  margin-bottom: 32px;
}

/* ── Vídeos Como Chegar — grelha 2 colunas ── */
.cnt-vid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 0 0 32px;
}
@media (max-width: 640px) {
  .cnt-vid-grid { grid-template-columns: 1fr; }
}
.cnt-vid-item__embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.cnt-vid-item__embed--portrait {
  aspect-ratio: 9/16;
  max-width: 320px;
  margin: 0 auto;
}
.cnt-vid-item__desc {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--text-sec);
  text-align: center;
  line-height: 1.5;
}

/* Info: Schedule + Policy */
.cnt-info {
  padding: 80px 0;
  background: var(--bg-alt);
}
.cnt-info__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

/* Schedule */
.cnt-sched__head { margin-bottom: 22px; }
.cnt-sched__label {
  display: block;
  font-size: 12px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cnt-sched__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--text-pri);
  margin: 0 0 8px;
}
.cnt-sched__note { font-size: 14px; color: var(--text-sec); line-height: 1.5; }
.cnt-days {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.cnt-day {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.cnt-day:last-child { border-bottom: none; }
.cnt-day--today { background: rgba(201,162,56,0.05); }
.cnt-day__name {
  font-size: 16px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
}
.cnt-day--today .cnt-day__name { color: var(--gold); }
.cnt-day__hours { font-size: 16px; color: var(--text-sec); }
.cnt-day--closed .cnt-day__hours { opacity: 0.4; }
.cnt-day__badge {
  font-size: 11px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.cnt-day__badge--open  { background: rgba(72,187,120,0.12); color: #2f8a55; }
.cnt-day__badge--closed { background: rgba(0,0,0,0.05); color: var(--text-sec); opacity: 0.5; }
.cnt-day__badge--today { background: rgba(201,162,56,0.18); color: var(--gold-dark); }

/* Holiday notices */
.cnt-holiday-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 13px 16px;
  border-radius: 10px;
  background: rgba(201,162,56,0.08);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  color: var(--text-pri);
  line-height: 1.55;
}
.cnt-holiday-notice svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-dark); }
.cnt-holiday-notice--today {
  background: rgba(220,53,53,0.07);
  border-left-color: #dc3535;
}
.cnt-holiday-notice--today svg { color: #dc3535; }
.cnt-sched__holiday-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-sec);
  line-height: 1.55;
}
.cnt-sched__holiday-note svg { flex-shrink: 0; margin-top: 1px; opacity: .6; }

/* Policy column */
.cnt-policy-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cnt-policy-card {
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.cnt-policy-card--booking {
  background: rgba(201,162,56,0.06);
  border: 1px solid rgba(201,162,56,0.22);
}
.cnt-policy-card--cancel {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.cnt-policy-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cnt-policy-card--booking .cnt-policy-card__icon {
  background: rgba(201,162,56,0.15);
  color: var(--gold-dark);
}
.cnt-policy-card--cancel .cnt-policy-card__icon {
  background: rgba(237,100,166,0.1);
  color: #c53030;
}
.cnt-policy-card__title {
  font-size: 15px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  margin: 0 0 8px;
}
.cnt-policy-card__text {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
  margin: 0 0 14px;
}
.cnt-policy-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
}
.cnt-policy-card__cta:hover { color: var(--gold); }

/* Cancellation rules */
.cnt-policy-card__rules {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cnt-policy-card__rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 9px;
  font-size: 13px;
}
.cnt-policy-card__rule--ok   { background: rgba(72,187,120,0.1); }
.cnt-policy-card__rule--warn { background: rgba(237,137,54,0.12); }
.cnt-policy-card__rule--alert { background: rgba(245,101,101,0.1); }
.cnt-policy-card__rule-time { color: var(--text-sec); font-size: 12px; }
.cnt-policy-card__rule-fee {
  font-weight: 700; font-variation-settings: 'wght' 700;
  font-size: 13px;
  white-space: nowrap;
}
.cnt-policy-card__rule--ok   .cnt-policy-card__rule-fee { color: #2f8a55; }
.cnt-policy-card__rule--warn .cnt-policy-card__rule-fee { color: #c05621; }
.cnt-policy-card__rule--alert .cnt-policy-card__rule-fee { color: #c53030; }
.cnt-policy-card__thanks {
  font-size: 12px;
  color: var(--text-sec);
  opacity: 0.7;
  margin: 0;
}

/* Contacts section */
.cnt-contacts-section {
  padding: 80px 0;
  background: var(--bg-main);
}
.cnt-contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.cnt-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cnt-contact-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cnt-contact-card__icon--phone { background: rgba(66,153,225,0.12); color: #3182ce; }
.cnt-contact-card__icon--wa    { background: rgba(72,187,120,0.12);  color: #25a244; }
.cnt-contact-card__icon--ig    { background: rgba(237,100,166,0.1);  color: #d53f8c; }
.cnt-contact-card__body { flex: 1; min-width: 0; }
.cnt-contact-card__label {
  font-size: 10px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 3px;
  opacity: 0.65;
}
.cnt-contact-card__value {
  font-size: 16px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
  margin-bottom: 4px;
}
.cnt-contact-card__value a { color: inherit; text-decoration: none; }
.cnt-contact-card__value a:hover { color: var(--gold); }
.cnt-contact-card__note {
  font-size: 12px;
  color: var(--text-sec);
  margin-bottom: 10px;
  line-height: 1.5;
}
.cnt-contact-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.cnt-contact-card__btn:hover { color: var(--gold); border-color: var(--gold); }
.cnt-contact-card__btn--wa { color: #25a244; border-color: rgba(37,162,68,0.35); }
.cnt-contact-card__btn--wa:hover { color: #1a7a32; }

/* ── Contact form card ── */
.cnt-contact-card--form {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 0;
}
.cnt-contact-card--form .cnt-contact-card__icon {
  margin-bottom: 10px;
}
.cnt-contact-card__icon--form { background: rgba(201,162,56,0.12); color: var(--gold, #c9a238); }
.cnt-form-body { width: 100%; }
.cnt-form-success {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0faf3;
  color: #1a6b3a;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500; font-variation-settings: 'wght' 500;
  margin-top: 8px;
}
.cnt-form { margin-top: 10px; }
.cnt-form__error {
  color: #c0392b;
  background: #fff5f5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.cnt-form__row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.cnt-form__field { margin-bottom: 14px; }
.cnt-form__field:last-of-type { margin-bottom: 10px; }
.cnt-form__field label {
  display: block;
  font-size: 12px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-sec);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.cnt-form__field label span[aria-hidden] { color: var(--gold, #c9a238); }
.cnt-form__optional { font-weight: 400; font-variation-settings: 'wght' 400; opacity: 0.7; }
.cnt-form__field input[type="text"],
.cnt-form__field input[type="tel"],
.cnt-form__field input[type="email"],
.cnt-form__field select,
.cnt-form__field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border, #e5e0d8);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  background: #fff;
  color: var(--text-pri);
  transition: border-color 0.2s;
  box-sizing: border-box;
  appearance: none;
}
.cnt-form__field input:focus,
.cnt-form__field select:focus,
.cnt-form__field textarea:focus {
  outline: none;
  border-color: var(--gold, #c9a238);
}
.cnt-form__field textarea { min-height: 90px; resize: vertical; }
.cnt-form__privacy {
  font-size: 11px;
  color: var(--text-sec);
  opacity: 0.7;
  margin-bottom: 12px;
  line-height: 1.5;
}
.cnt-form__privacy a { color: inherit; text-decoration: underline; }
.cnt-form__submit {
  width: 100%;
  padding: 13px 20px;
  background: var(--gold, #c9a238);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700; font-variation-settings: 'wght' 700;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}
.cnt-form__submit:hover { opacity: 0.88; }

/* ── Standalone form below contact cards ── */
.cnt-solo-form {
  max-width: 640px;
  margin: 48px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border, #e5e0d8);
}
.cnt-solo-form__title {
  font-size: 1.35rem;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  margin: 4px 0 4px;
  font-family: var(--font-display, inherit);
}

/* Response badge */
.cnt-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(72,187,120,0.1);
  border: 1px solid rgba(72,187,120,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: #2f8a55;
  margin: 6px 0 8px;
}
.cnt-response-badge__dot {
  width: 6px;
  height: 6px;
  background: #48bb78;
  border-radius: 50%;
  animation: cnt-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes cnt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Responsive */
@media (max-width: 1024px) {
  .cnt-map .map-section__inner { grid-template-columns: 300px 1fr; }
  .cnt-info__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .cnt-map .map-section__inner { grid-template-columns: 1fr; }
  .cnt-map .map-section__map   { min-height: 300px; }
  .cnt-dirs__grid, .cnt-transport__grid, .cnt-contacts { grid-template-columns: 1fr; }
  .cnt-dirs, .cnt-info, .cnt-contacts-section { padding: 56px 0; }
  .cnt-tabs { flex-wrap: wrap; }
  /* Mobile card order: WhatsApp → Tel → Email → Instagram → Form */
  .cnt-contacts { display: flex; flex-direction: column; }
  .cnt-contact-card--whatsapp { order: 1; }
  .cnt-contact-card--tel      { order: 2; }
  .cnt-contact-card--email    { order: 3; }
  .cnt-contact-card--instagram{ order: 4; }
  .cnt-contact-card--callback { order: 5; }
  .cnt-contact-card--form     { order: 6; }
  /* 2-col form fields collapse to 1 col on mobile */
  .cnt-form__row-2col { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cnt-hero { padding: 48px 0 40px; }
  .cnt-hero__anchors .btn { flex: 1; justify-content: center; }
  .cnt-day  { padding: 11px 14px; grid-template-columns: 70px 1fr auto; }
  .cnt-contact-card { padding: 16px 14px; }
  .cnt-policy-card  { padding: 18px 16px; flex-direction: column; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════
   PAGE: BLOG
═══════════════════════════════════════════════════════ */

/* Hero */
.blog-hero {
  background: var(--bg-dark);
  padding: 80px 0 60px;
}
.blog-hero__label {
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-hero__title {
  font-size: clamp(35px, 5vw, 54px);
  color: #fff;
  margin-bottom: 16px;
}
.blog-hero__sub {
  color: var(--text-muted-dark);
  font-size: 17px;
  max-width: 520px;
}

/* Category chips */
.blog-cats-bar {
  background: var(--bg-dark);
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  font-size: 13px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, border-color .18s, color .18s;
}
.blog-chip:hover {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.blog-chip.is-active {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.5);
  color: #fff;
  font-weight: 700; font-variation-settings: 'wght' 700;
}
.blog-chip__count {
  font-size: 11px;
  opacity: .6;
}
.blog-chip.is-active .blog-chip__count { opacity: .8; }

/* Controls bar */
.blog-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 90;
  padding: 10px 0;
}
.blog-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.blog-bar__count {
  font-size: 13px;
  color: var(--text-muted);
}
.blog-bar__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.blog-toggle__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  line-height: 1;
  transition: background .15s, color .15s;
}
.blog-toggle__btn--text { padding: 6px 13px; font-size: 12px; }
.blog-toggle__btn + .blog-toggle__btn { border-left: 1px solid var(--border); }
.blog-toggle__btn.is-active {
  background: var(--bg-dark);
  color: #fff;
}
.blog-toggle__btn:not(.is-active):hover {
  background: var(--bg-main);
  color: var(--text-pri);
}

/* Wrap */
.blog-wrap {
  padding: 48px 0 80px;
  background: var(--bg-main);
}

/* ── BENTO grid ──────────────────────────────── */
.blog-posts[data-view="bento"] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 20px;
}
.blog-posts[data-view="bento"] .blog-card:nth-child(5n+1) {
  grid-column: span 2;
}
.blog-posts[data-view="bento"] .blog-card:nth-child(5n+1) .blog-card__img {
  aspect-ratio: 21 / 9;
}

/* ── LIST layout ─────────────────────────────── */
.blog-posts[data-view="list"] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-posts[data-view="list"] .blog-card {
  display: flex;
  flex-direction: row;
}
.blog-posts[data-view="list"] .blog-card__img-link {
  flex-shrink: 0;
  width: 260px;
}
.blog-posts[data-view="list"] .blog-card__img {
  height: 100%;
  aspect-ratio: unset;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}

/* ── Card ────────────────────────────────────── */
.blog-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.blog-card__img-link { display: block; }
.blog-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}
.blog-card__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.35;
  color: var(--text-pri);
  margin: 0 0 10px;
  flex: 1;
}
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--gold); }
.blog-card__excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
}
.blog-card__date {
  font-size: 12px;
  color: var(--text-muted);
}
.blog-card__read {
  font-size: 12px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold);
  text-decoration: none;
}
.blog-card__read:hover { color: var(--gold-dark); }

/* Pagination */
.blog-pagination {
  margin-top: 64px;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  color: var(--text-sec);
  text-decoration: none;
  background: #fff;
  line-height: 1;
  transition: background .18s, color .18s, border-color .18s;
}
.blog-pagination .page-numbers.current {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
  font-weight: 700; font-variation-settings: 'wght' 700;
}
.blog-pagination .page-numbers:not(.current):not(.dots):hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #fff;
}
.blog-pagination .page-numbers.dots {
  border: none;
  background: none;
  min-width: 24px;
  padding: 0 2px;
  color: var(--text-muted);
  cursor: default;
  font-size: 16px;
  letter-spacing: .05em;
}
.blog-pagination .prev.page-numbers,
.blog-pagination .next.page-numbers {
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  gap: 6px;
  color: var(--text-pri);
  border-color: var(--border);
}

/* Load more */
.blog-loadmore {
  margin-top: 56px;
  text-align: center;
}
.blog-loadmore .btn--ghost {
  color: var(--text-pri);
  border-color: var(--text-pri);
  min-width: 260px;
}
.blog-loadmore .btn--ghost:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #fff;
}
.blog-loadmore__end {
  font-size: 14px;
  color: var(--text-muted);
}

/* Empty state */
.blog-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 60px 0;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .blog-toggle { display: none; }
  .blog-posts[data-view="bento"] { grid-template-columns: repeat(2, 1fr); }
  .blog-posts[data-view="bento"] .blog-card:nth-child(5n+1) { grid-column: span 2; }
  .blog-posts[data-view="bento"] .blog-card:nth-child(5n+1) .blog-card__img { aspect-ratio: 21 / 8; }
}
@media (max-width: 768px) {
  .blog-hero { padding: 60px 0 44px; }
  .blog-cats-bar { padding: 0 0 16px; }
  .blog-chips { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .blog-chips::-webkit-scrollbar { display: none; }
  .blog-bar { display: none; }
  .blog-posts[data-view="bento"] { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .blog-posts[data-view="bento"] .blog-card:nth-child(5n+1) { grid-column: span 2; }
  .blog-posts[data-view="list"] .blog-card__img-link { width: 180px; }
}
@media (max-width: 540px) {
  .blog-posts[data-view="bento"] { grid-template-columns: 1fr; }
  .blog-posts[data-view="bento"] .blog-card:nth-child(5n+1) { grid-column: span 1; }
  .blog-posts[data-view="list"] .blog-card { flex-direction: column; }
  .blog-posts[data-view="list"] .blog-card__img-link { width: 100%; }
  .blog-posts[data-view="list"] .blog-card__img {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
  }
  .blog-toggle__btn--text { font-size: 11px; padding: 6px 9px; }
}


/* Honeypot anti-spam field — visually hidden from humans */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   /servicos — SEO enhancements (perелинковка ТЗ)
══════════════════════════════════════════════════════════ */

/* Specialists row */
.sv-experts-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  background: var(--bg-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: 40px 0 48px;
}
.sv-experts-row__card {
  flex: 1;
  min-width: 200px;
  padding: 28px 32px;
  border-left: 4px solid transparent;
}
.sv-experts-row__card--dm { border-color: #3b82f6; }
.sv-experts-row__card--ma { border-color: #ec4899; }
.sv-experts-row__name {
  display: block;
  font-size: 20px;
  font-weight: 800; font-variation-settings: 'wght' 800;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}
.sv-experts-row__services {
  font-size: 13px;
  color: var(--text-muted-dark);
  line-height: 1.5;
  margin: 0 0 14px;
}
.sv-experts-row__link {
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold);
  text-decoration: none;
  transition: color .2s;
}
.sv-experts-row__link:hover { color: var(--gold-light, #e8c056); }
.sv-experts-row__sep {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.08);
  margin: 20px 0;
}
.sv-experts-row__cta {
  padding: 28px 32px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .sv-experts-row { flex-direction: column; }
  .sv-experts-row__sep { width: 100%; height: 1px; margin: 0; align-self: auto; }
  .sv-experts-row__cta { padding: 20px 32px; width: 100%; }
}

/* /precos link in prices section */
.sv-prices__precos-link {
  font-size: 14px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold);
  text-decoration: none;
  transition: color .2s;
}
.sv-prices__precos-link:hover { color: var(--gold-light, #e8c056); text-decoration: underline; }

/* Geo strip */
.sv-geo-strip {
  background: #f8f8f6;
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.sv-geo-strip__inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sv-geo-strip__icon {
  flex-shrink: 0;
  color: var(--gold-dark, #b8860b);
  opacity: .7;
}
.sv-geo-strip__text {
  font-size: 14px;
  color: var(--text-sec);
  margin: 0;
}
.sv-geo-strip__text a {
  color: var(--text-pri);
  font-weight: 600; font-variation-settings: 'wght' 600;
  text-decoration: none;
  transition: color .2s;
}
.sv-geo-strip__text a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   GEO — CIDADE  (L3 template)
══════════════════════════════════════════════════════════ */

/* ── Hero ── */
.geo-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 100px 0 72px;
  overflow: hidden;
}
.geo-hero__bg {
  position: absolute;
  inset: 0;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
}
.geo-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,12,8,.85) 0%, rgba(26,22,14,.75) 100%);
}
.geo-hero__inner {
  position: relative;
  z-index: 1;
}
.geo-hero__copy { max-width: 680px; }
.geo-hero__label {
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.geo-hero__title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 18px;
}
.geo-hero__desc {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 24px;
}
.geo-hero__desc strong { color: #fff; }
.geo-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.geo-badge__icon { flex-shrink: 0; color: var(--gold); }
.geo-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 600px) {
  .geo-hero { min-height: 480px; padding: 80px 0 56px; }
  .geo-hero__actions { flex-direction: column; }
  .geo-hero__actions .btn { width: 100%; justify-content: center; }
}

/* ── Access / Distância ── */
.geo-access__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.geo-access__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.geo-access__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.geo-access__body { display: flex; flex-direction: column; gap: 6px; }
.geo-access__mode { font-size: 16px; font-weight: 700; font-variation-settings: 'wght' 700; color: var(--text-pri); }
.geo-access__time { font-size: 14px; color: var(--gold-dark); font-weight: 600; font-variation-settings: 'wght' 600; }
.geo-access__body p { font-size: 14px; color: var(--text-sec); margin: 2px 0 0; line-height: 1.5; }
.geo-access__map-btn { margin-top: 8px; align-self: flex-start; }
@media (max-width: 860px) {
  .geo-access__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .geo-access__grid { grid-template-columns: 1fr; }
}

/* ── Services grid ── */
.geo-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.geo-svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 22px 20px 18px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.geo-svc-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-3px);
  border-color: var(--gold-border);
}
.geo-svc-card__label { font-size: 11px; color: var(--gold-dark); letter-spacing: .06em; }
.geo-svc-card__title { font-size: 15px; font-weight: 700; font-variation-settings: 'wght' 700; color: var(--text-pri); margin: 0; line-height: 1.3; }
.geo-svc-card__exc { font-size: 13px; color: var(--text-sec); line-height: 1.5; margin: 0; flex: 1; }
.geo-svc-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
}
.geo-svc-card__price { font-weight: 700; font-variation-settings: 'wght' 700; color: var(--gold-dark); margin-left: auto; }
.geo-svc-card__arrow {
  position: absolute;
  top: 20px;
  right: 18px;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s, transform .2s;
}
.geo-svc-card:hover .geo-svc-card__arrow { opacity: 1; transform: translateX(0); }
.geo-services__foot { text-align: center; margin-top: 40px; }
@media (max-width: 1024px) { .geo-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .geo-services__grid { grid-template-columns: 1fr; } }

/* ── Team ── */
.geo-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.geo-team__card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-card);
}
.geo-team__photo-wrap { flex-shrink: 0; }
.geo-team__photo {
  width: 88px;
  height: 116px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.geo-team__photo-placeholder {
  width: 88px;
  height: 116px;
  border-radius: 10px;
  background: #e8e6e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.geo-team__info { display: flex; flex-direction: column; gap: 8px; }
.geo-team__name { font-size: 17px; font-weight: 700; font-variation-settings: 'wght' 700; color: var(--text-pri); margin: 0; }
.geo-team__role { font-size: 13px; color: var(--text-sec); margin: 0; }
.geo-team__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.geo-team__tag {
  font-size: 11px;
  font-weight: 500; font-variation-settings: 'wght' 500;
  color: var(--gold-dark);
  background: rgba(201,162,56,.1);
  border: 1px solid rgba(201,162,56,.25);
  padding: 3px 10px;
  border-radius: 100px;
}
.geo-team__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold-dark);
  text-decoration: none;
  margin-top: 4px;
  transition: color .2s;
}
.geo-team__link:hover { color: var(--gold); }
@media (max-width: 680px) {
  .geo-team__grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 480px) {
  .geo-team__card { flex-direction: column; align-items: center; text-align: center; }
  .geo-team__tags { justify-content: center; }
}

/* ── Prices ── */
.geo-prices__table {
  max-width: 640px;
  margin: 48px auto 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
}
.geo-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.geo-price-row:last-child { border-bottom: none; }
.geo-price-row:hover { background: rgba(255,255,255,.04); }
.geo-price-row__name { font-size: 15px; color: rgba(255,255,255,.85); }
.geo-price-row__val { font-size: 15px; font-weight: 700; font-variation-settings: 'wght' 700; color: var(--gold-light); white-space: nowrap; }
.geo-prices__foot {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}
@media (max-width: 560px) {
  .geo-price-row { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 20px; }
  .geo-prices__foot { flex-direction: column; align-items: center; }
}

/* ── Reviews ── */
.geo-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.geo-rev-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: columns;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.geo-rev-card__stars { display: flex; gap: 3px; }
.geo-rev-card__text {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.geo-rev-card__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.geo-rev-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.geo-rev-card__avatar--initials {
  background: var(--gold);
  color: #fff;
  font-size: 16px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo-rev-card__name { display: block; font-size: 14px; font-weight: 700; font-variation-settings: 'wght' 700; color: var(--text-pri); }
.geo-rev-card__date { font-size: 12px; color: var(--text-muted); }
@media (max-width: 640px) { .geo-reviews__grid { grid-template-columns: 1fr; } }

/* ── CTA final ── */
.geo-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.geo-cta__copy { flex: 1; min-width: 260px; }
.geo-cta__title { color: #fff; margin: 0 0 12px; }
.geo-cta__sub { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.6; margin: 0; }
.geo-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; flex-shrink: 0; }
@media (max-width: 760px) {
  .geo-cta__inner { flex-direction: column; text-align: center; }
  .geo-cta__actions { justify-content: center; }
}

/* ── Internal links strip ── */
.geo-links {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.geo-links__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: flex-start;
}
.geo-links__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
.geo-links__label {
  font-size: 12px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.geo-links__link {
  font-size: 13px;
  color: var(--text-sec);
  text-decoration: none;
  font-weight: 500; font-variation-settings: 'wght' 500;
  padding: 3px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.geo-links__link:hover { color: var(--gold-dark); border-bottom-color: var(--gold-border); }
@media (max-width: 600px) {
  .geo-links__inner { flex-direction: column; gap: 14px; }
}

/* ── GEO HUB — city cards grid ── */
.geo-hub-cities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 0 0 40px;
}
.geo-hub-city-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.geo-hub-city-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.geo-hub-city-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.geo-hub-city-card__name {
  font-size: 18px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
  margin: 0;
  line-height: 1.2;
}
.geo-hub-city-card__arrow {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}
.geo-hub-city-card:hover .geo-hub-city-card__arrow { transform: translateX(4px); }
.geo-hub-city-card__meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--text-sec);
  font-weight: 500; font-variation-settings: 'wght' 500;
}
.geo-hub-city-card__meta svg { vertical-align: middle; margin-right: 3px; color: var(--gold); }
.geo-hub-city-card__cta {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600; font-variation-settings: 'wght' 600;
  margin-top: auto;
}
.geo-hub-cities__sibling {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.geo-hub-cities__sibling p {
  margin: 0;
  color: var(--text-sec);
  font-size: 15px;
}
@media (max-width: 640px) {
  .geo-hub-cities__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .geo-hub-cities__sibling { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .geo-hub-cities__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   SERVICE PAGE — REVIEWS SECTION  (.sp-rev-*)
   ══════════════════════════════════════════════════════════════ */

/* Header meta line: ★★★★★  5,0 · 3 avaliações */
.sp-rev-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.sp-rev-stars { display: flex; gap: 3px; align-items: center; }
.sp-rev-score {
  font-size: 15px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--text-pri);
}
.sp-rev-count {
  font-size: 13px;
  color: var(--text-muted);
}

/* Grid: 3 cols → 2 → 1 */
.sp-rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

/* Card */
.sp-rev-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sp-rev-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
/* Featured = gold border + subtle glow */
.sp-rev-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-border), 0 4px 18px rgba(201,162,56,.1);
}
.sp-rev-card--featured:hover {
  box-shadow: 0 0 0 1px var(--gold), 0 10px 32px rgba(201,162,56,.18);
}

/* Top row: stars + badge */
.sp-rev-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sp-rev-card__stars { display: flex; gap: 2px; }
.sp-rev-card__badge {
  font-size: 10px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,162,56,.12);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 2px 9px;
}

/* Review text — clamp to 6 lines */
.sp-rev-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-sec);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Screenshot thumbnails */
.sp-rev-card__thumbs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.sp-rev-card__thumbs img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Author row */
.sp-rev-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.sp-rev-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-rev-card__avatar span {
  font-size: 15px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: #fff;
  line-height: 1;
}
.sp-rev-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-rev-card__name {
  font-size: 13px;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--text-pri);
}
.sp-rev-card__date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .sp-rev-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sp-rev-grid { grid-template-columns: 1fr; }
  .sp-rev-card__text { -webkit-line-clamp: 5; }
}

/* ═══════════════════════════════════════════════════════
   AUTHOR BOX — bio após artigo
═══════════════════════════════════════════════════════ */
.author-box-wrap {
  padding: 0 0 48px;
}
.author-box {
  border: 1.5px solid #e8e0cc;
  border-radius: 14px;
  padding: 28px;
  background: #fdfbf7;
}
.author-box__inner {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.author-box__photo-link { flex-shrink: 0; }
.author-box__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold, #c9a238);
  display: block;
}
.author-box__body { flex: 1; min-width: 0; }
.author-box__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.author-box__name {
  display: block;
  font-size: 1.05rem;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: #1a1814;
  text-decoration: none;
  line-height: 1.3;
}
.author-box__name:hover { color: var(--gold, #c9a238); }
.author-box__role {
  display: block;
  font-size: 0.82rem;
  color: #888;
  margin-top: 2px;
}
.author-box__links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.author-box__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f0ece2;
  color: #555;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.author-box__social:hover { background: var(--gold, #c9a238); color: #fff; }
.author-box__all-posts {
  font-size: 0.82rem;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: var(--gold, #c9a238);
  text-decoration: none;
  white-space: nowrap;
}
.author-box__all-posts:hover { text-decoration: underline; }
.author-box__bio {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}
/* author photo in article hero meta */
.art-hero__author--link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.art-hero__author--link:hover { color: var(--gold, #c9a238); }
.art-hero__author-photo {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold, #c9a238);
  vertical-align: middle;
}
@media (max-width: 600px) {
  .author-box__inner { flex-direction: column; align-items: center; text-align: center; }
  .author-box__top { flex-direction: column; align-items: center; }
  .author-box__photo { width: 72px; height: 72px; }
}

/* ═══════════════════════════════════════════════════════
   AUTHOR PAGE
═══════════════════════════════════════════════════════ */
/* ── Author header (compact — archive page) ──────── */
.author-header {
  background: #1a1814;
  color: #fff;
  padding: 32px 0 28px;
}
.author-header__inner {
  display: flex;
  gap: 24px;
  align-items: center;
}
.author-header__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold, #c9a238);
  flex-shrink: 0;
  display: block;
}
.author-header__info { flex: 1; min-width: 0; }
.author-header__label {
  font-size: 0.7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold, #c9a238);
  margin: 0 0 4px;
}
.author-header__name {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800; font-variation-settings: 'wght' 800;
  margin: 0 0 3px;
  line-height: 1.2;
}
.author-header__role {
  font-size: 0.88rem;
  color: #aaa;
  margin: 0 0 8px;
}
.author-header__bio {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  margin: 0 0 14px;
  line-height: 1.6;
  max-width: 600px;
}
.author-header__foot {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.author-header__socials {
  display: flex;
  gap: 8px;
}
.author-header__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.15);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.author-header__social:hover { background: var(--gold, #c9a238); color: #1a1814; border-color: var(--gold, #c9a238); }
.author-header__profile-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.author-header__profile-link:hover { color: var(--gold, #c9a238); }

.author-posts-section { padding: 40px 0 64px; }
.author-no-posts { color: #888; text-align: center; padding: 40px 0; }

@media (max-width: 600px) {
  .author-header__inner { gap: 16px; }
  .author-header__photo { width: 60px; height: 60px; }
  .author-header__bio { display: none; }
}

/* author-box additions */
.author-box__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
}
.author-box__profile {
  font-size: .82rem;
  color: #888;
  text-decoration: none;
  border: 1px solid #ddd;
  padding: 4px 12px;
  border-radius: 20px;
  transition: border-color .2s, color .2s;
}
.author-box__profile:hover { border-color: var(--gold, #c9a238); color: var(--gold, #c9a238); }

/* blog-card author */
.blog-card__foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-card__author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: #666;
  text-decoration: none;
  margin-right: auto;
}
.blog-card__author:hover { color: var(--gold, #c9a238); }
.blog-card__author-photo {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-card__author-icon { color: #999; flex-shrink: 0; }

@media (max-width: 600px) {
  .author-hero__inner { flex-direction: column; text-align: center; }
  .author-hero__socials { justify-content: center; }
  .author-hero__ctas { justify-content: center; }
  .author-hero__photo { width: 120px; height: 120px; }
  .author-hero__tags { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   SINGLE ESPECIALISTA
═══════════════════════════════════════════════════════ */
.esp-hero {
  background: #1a1814;
  color: #fff;
  padding: 56px 0 52px;
}
.esp-hero__inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.esp-hero__photo-wrap { flex-shrink: 0; }
.esp-hero__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold, #c9a238);
  display: block;
}
.esp-hero__info { flex: 1; min-width: 220px; }
.esp-hero__label-top {
  font-size: 0.75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold, #c9a238);
  margin: 0 0 8px;
}
.esp-hero__name {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800; font-variation-settings: 'wght' 800;
  margin: 0 0 8px;
  line-height: 1.1;
}
.esp-hero__role {
  font-size: 1.05rem;
  color: #ccc;
  margin: 0 0 12px;
}
.esp-hero__badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid var(--gold, #c9a238);
  color: var(--gold, #c9a238);
  font-size: 0.8rem;
  font-weight: 600; font-variation-settings: 'wght' 600;
  margin-bottom: 16px;
}
.esp-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.esp-hero__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  font-size: 0.78rem;
  color: #ddd;
}
.esp-hero__cta { margin-bottom: 16px; }
.esp-hero__socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.esp-hero__social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 0.8rem;
  font-weight: 500; font-variation-settings: 'wght' 500;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.esp-hero__social:hover {
  background: var(--gold, #c9a238);
  border-color: var(--gold, #c9a238);
  color: #1a1814;
}
.esp-hero__social-label { line-height: 1; }

/* Layout */
.esp-body { padding: 52px 0 64px; }
.esp-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.esp-main { min-width: 0; }
.esp-section { margin-bottom: 48px; }
.esp-section__title {
  font-size: 1.25rem;
  font-weight: 700; font-variation-settings: 'wght' 700;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0ece2;
}
.esp-bio p {
  font-size: 1rem;
  line-height: 1.78;
  color: #444;
  margin: 0 0 14px;
}

/* Services */
.esp-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.esp-services__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  color: #333;
  line-height: 1.45;
}
.esp-services__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold, #c9a238);
}

/* Section head with inline link */
.esp-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0ece2;
}
.esp-section__head .esp-section__title { margin: 0; padding: 0; border: 0; }
.esp-section__link {
  font-size: 0.82rem;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--gold, #c9a238);
  text-decoration: none;
  white-space: nowrap;
}
.esp-section__link:hover { text-decoration: underline; }

/* Certifications gallery */
.esp-certs-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.esp-cert-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ede8da;
  border-radius: 10px;
  overflow: hidden;
  background: #fdfbf7;
  transition: box-shadow .2s, transform .2s;
}
.esp-cert-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.1); transform: translateY(-2px); }
.esp-cert-card__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0ece2;
}
.esp-cert-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.esp-cert-card__img-wrap:hover .esp-cert-card__img { transform: scale(1.04); }
.esp-cert-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600; font-variation-settings: 'wght' 600;
  opacity: 0;
  transition: opacity .2s;
}
.esp-cert-card__img-wrap:hover .esp-cert-card__overlay { opacity: 1; }
.esp-cert-card__info { padding: 10px 12px 12px; }
.esp-cert-card__title {
  font-size: 0.8rem;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: #1a1814;
  margin: 0 0 4px;
  line-height: 1.35;
}
.esp-cert-card__inst {
  font-size: 0.72rem;
  color: #999;
  margin: 0;
  line-height: 1.3;
}

/* Specialist page cert slider */
.esp-certs-slider { margin-top: 20px; }

/* Recent articles — compact list */
.esp-recent-posts { display: flex; flex-direction: column; gap: 12px; }
.esp-recent-post {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  border: 1px solid #ede8da;
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.esp-recent-post:hover { border-color: var(--gold, #c9a238); box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.esp-recent-post__img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.esp-recent-post__img--placeholder {
  background: #f0ece2;
}
.esp-recent-post__body { flex: 1; min-width: 0; }
.esp-recent-post__cat {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold, #c9a238);
  font-weight: 700; font-variation-settings: 'wght' 700;
  display: block;
  margin-bottom: 3px;
}
.esp-recent-post__title {
  font-size: 0.85rem;
  font-weight: 600; font-variation-settings: 'wght' 600;
  color: #1a1814;
  margin: 0 0 4px;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.esp-recent-post__date { font-size: 0.72rem; color: #bbb; }

/* Contact card meta */
.esp-contact-card__meta {
  font-size: 0.75rem;
  color: #aaa;
  margin: 0 0 14px;
}

/* Sidebar */
.esp-sidebar { position: sticky; top: 100px; }
.esp-contact-card {
  border: 1.5px solid #e8e0cc;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  background: #fdfbf7;
  margin-bottom: 20px;
}
.esp-contact-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold, #c9a238);
  margin: 0 auto 12px;
  display: block;
}
.esp-contact-card__name {
  font-weight: 700; font-variation-settings: 'wght' 700;
  font-size: 1rem;
  margin: 0 0 4px;
}
.esp-contact-card__role {
  font-size: 0.8rem;
  color: #888;
  margin: 0 0 16px;
}
.esp-contact-card__btn { width: 100%; justify-content: center; margin-bottom: 14px; }
.esp-contact-card__socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.esp-contact-card__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f0ece2;
  color: #555;
  border: 1px solid #e0d8c8;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.esp-contact-card__social-icon:hover { background: #1a1814; color: #fff; border-color: #1a1814; }
.esp-sidebar-tags {
  border: 1px solid #ede8da;
  border-radius: 12px;
  padding: 18px;
  background: #fdfbf7;
}
.esp-sidebar-tags__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: #aaa;
  margin: 0 0 12px;
}
.esp-sidebar-tags__tag {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 4px 10px;
  border-radius: 14px;
  background: #f0ece2;
  font-size: 0.78rem;
  color: #555;
}

@media (max-width: 900px) {
  .esp-layout { grid-template-columns: 1fr; }
  .esp-sidebar { position: static; }
  .esp-contact-card { max-width: 400px; }
}
@media (max-width: 600px) {
  .esp-hero__inner { flex-direction: column; align-items: center; text-align: center; }
  .esp-hero__photo { width: 150px; height: 150px; }
  .esp-hero__cta { width: 100%; }
  .esp-hero__cta .btn { width: 100%; justify-content: center; }
  .esp-hero__socials { justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   LEGAL PAGES — Política de Privacidade, Termos e Condições
══════════════════════════════════════════════════════ */
.legal-page {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-sec);
  padding-top: 8px;
}

/* Page title (rendered outside .legal-page by page.php) */
.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text-pri);
  margin-bottom: 24px;
  line-height: 1.15;
}

/* Headings */
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text-pri);
  margin-bottom: 8px;
  line-height: 1.15;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-pri);
  margin: 2.4em 0 .65em;
  padding-top: .4em;
  border-top: 1px solid var(--border);
  scroll-margin-top: 100px;
}
.legal-page section:first-of-type h2 { border-top: none; margin-top: 1.4em; }
.legal-page h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-pri);
  margin: 1.6em 0 .45em;
  scroll-margin-top: 100px;
}

/* Paragraphs & inline */
.legal-page p { margin-bottom: 1.1em; }
.legal-page strong { color: var(--text-pri); font-weight: 600; font-variation-settings: 'wght' 600; }
.legal-page em { font-style: italic; }

/* Links */
.legal-page a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: rgba(184,156,110,.45);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.legal-page a:hover { color: var(--gold); text-decoration-color: var(--gold); }

/* Lists */
.legal-page ul,
.legal-page ol { margin: 0 0 1.3em; padding-left: 0; list-style: none; }
.legal-page li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: .5em;
  line-height: 1.7;
}
.legal-page ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.legal-page ol { counter-reset: legal-ol; }
.legal-page ol > li { counter-increment: legal-ol; }
.legal-page ol > li::before {
  content: counter(legal-ol) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700; font-variation-settings: 'wght' 700;
  color: var(--gold-dark);
  line-height: 1.9;
}

/* TOC nav */
.legal-page__toc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 24px 20px 24px;
  margin: 1.6em 0 2em;
  font-size: 15px;
}
.legal-page__toc p { margin: 0 0 .6em; }
.legal-page__toc ol { margin: 0; }
.legal-page__toc li { margin-bottom: .3em; }
.legal-page__toc a {
  color: var(--text-sec);
  text-decoration: none;
}
.legal-page__toc a:hover { color: var(--gold); }

/* Updated date */
.legal-page__updated {
  font-size: 13px;
  color: var(--text-muted, #999);
  margin: 0 0 1.4em;
}

/* HR */
.legal-page hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.4em 0;
}

/* Footer note */
.legal-page__footer-note {
  font-size: 13px;
  color: var(--text-muted, #999);
  border-top: 1px solid var(--border);
  padding-top: 1.2em;
  margin-top: 2em;
  font-style: italic;
}

/* ── Tables ── */
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0 1.8em;
  font-size: 15px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border);
}
.legal-page thead th {
  background: var(--bg-dark);
  color: #fff;
  font-weight: 600; font-variation-settings: 'wght' 600;
  font-size: 13px;
  text-align: left;
  padding: 11px 16px;
  white-space: nowrap;
}
.legal-page td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-sec);
  vertical-align: top;
  line-height: 1.55;
}
.legal-page tr:last-child td { border-bottom: none; }
.legal-page tbody tr:nth-child(even) td { background: var(--bg-main); }

@media (max-width: 680px) {
  .legal-page table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 0; }
  .legal-page thead th { white-space: normal; }
}

/* Section spacing */
.legal-page section { margin-bottom: .5em; }
