/* ─── Tokens ────────────────────────────────────────────── */
:root {
  --black: #0a0a0a;
  --dark: #151515;
  --dark-mid: #222;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #ccc;
  --gray-200: #e0e0e0;
  --gray-100: #f2f2f2;
  --off-white: #f8f8f8;
  --white: #fff;
  --accent: #d4a857;
  --accent-soft: #e8c987;

  --serif: "Cormorant Garamond", "DM Serif Display", Georgia, serif;
  --sans: "Inter", "Manrope", system-ui, -apple-system, sans-serif;

  --container: 1320px;
  --gutter: 48px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--dark);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

/* Utility */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.overline {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gray-300);
}
.serif {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.005em;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }
.reveal.delay-4 { transition-delay: 0.48s; }
.reveal.delay-5 { transition-delay: 0.6s; }

/* CTA Button */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 44px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: var(--black);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(212, 168, 87, 0.3),
    0 16px 44px -10px rgba(212, 168, 87, 0.7),
    0 0 80px -8px rgba(212, 168, 87, 0.45);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms ease;
  cursor: pointer;
}
.cta:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 0 1px rgba(212, 168, 87, 0.5),
    0 20px 56px -10px rgba(212, 168, 87, 0.85),
    0 0 100px -6px rgba(212, 168, 87, 0.65);
}
.cta .arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.cta:hover .arrow { transform: translate(2px, -2px); }

/* Vertical accent line */
.accent-line {
  border-left: 1.5px solid var(--accent);
  padding-left: 22px;
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  overflow: hidden;
  isolation: isolate;
}
/* Gradientes decorativos removidos - estavam criando diferença de tonalidade entre os lados */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 100vh;
  align-items: center;
}
.hero-left {
  padding: 100px 80px 140px 80px;
  max-width: 820px;
  justify-self: end;
  width: 100%;
}
.hero-overline {
  display: inline-block;
  margin-bottom: 28px;
}
.hero-overline::before {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 14px;
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.98;
  margin: 0 0 36px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-soft);
}
.hero-impact {
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 18px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.75;
  margin: 0 0 44px;
  max-width: 480px;
}
.hero-photo-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--dark);
}
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 75% at 50% 50%,
    rgba(212, 168, 87, 0.12) 0%,
    rgba(212, 168, 87, 0.06) 35%,
    rgba(212, 168, 87, 0.02) 55%,
    transparent 75%
  );
  z-index: 0;
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: 130% auto;
  background-position: 15% 25%;
  background-repeat: no-repeat;
  z-index: 1;
  /* Sem filtros - cores naturais preservadas */
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--dark) 0%,
    var(--dark) 8%,
    rgba(21,21,21,0.96) 14%,
    rgba(21,21,21,0.88) 20%,
    rgba(21,21,21,0.78) 26%,
    rgba(21,21,21,0.66) 32%,
    rgba(21,21,21,0.52) 40%,
    rgba(21,21,21,0.38) 48%,
    rgba(21,21,21,0.24) 58%,
    rgba(21,21,21,0.12) 68%,
    rgba(21,21,21,0.04) 80%,
    rgba(21,21,21,0) 92%);
  pointer-events: none;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(21,21,21,0.65) 0%,
      rgba(21,21,21,0.35) 10%,
      rgba(21,21,21,0.12) 20%,
      rgba(21,21,21,0) 35%,
      rgba(21,21,21,0) 75%,
      rgba(21,21,21,0.25) 90%,
      rgba(21,21,21,0.65) 100%);
  pointer-events: none;
}
.hero-photo-tag {
  position: absolute;
  top: 80px; right: 60px;
  z-index: 2;
  text-align: right;
  color: var(--gray-300);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
}
.hero-photo-tag-line {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
  margin-left: 12px;
  vertical-align: middle;
}
/* Hero footer */
.hero-footer {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  border-top: 1px solid rgba(85,85,85,0.18);
  background: transparent;
}
.hero-footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  padding: 22px 60px 22px 80px;
}
.hero-cro {
  display: flex; align-items: center; gap: 16px;
}
.hero-cro-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(212,168,87,0.5);
}
.hero-cro-text {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gray-300);
  line-height: 1.5;
  text-transform: uppercase;
}
.hero-cro-text strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.22em;
  margin-bottom: 3px;
}
.hero-stats {
  display: flex; gap: 56px;
  justify-self: end;
}
.hero-stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 38px;
  line-height: 1;
  color: var(--white);
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-top: 8px;
  font-weight: 400;
}

/* ─── PROCEDIMENTOS ────────────────────────────────────────── */
.procs {
  position: relative;
  background: var(--dark);
  padding: 160px 0 140px;
  overflow: hidden;
  isolation: isolate;
}
.procs-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.6) blur(2px);
  opacity: 0.18;
  z-index: 0;
}
.procs-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--dark) 0%, rgba(21,21,21,0.4) 30%, rgba(21,21,21,0.4) 70%, var(--dark) 100%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(21,21,21,0.5), rgba(21,21,21,0.85));
}
.procs-inner {
  position: relative;
  z-index: 1;
}
.procs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 90px;
}
.procs-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.05;
  margin: 0;
  color: var(--white);
  letter-spacing: -0.005em;
}
.procs-title em {
  font-style: italic;
  color: var(--accent-soft);
}
.procs-sub {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.75;
  font-weight: 300;
  max-width: 460px;
  margin: 0;
}
.procs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-700);
}
.proc-card {
  position: relative;
  padding: 44px 36px 50px;
  border-right: 1px solid rgba(85,85,85,0.5);
  border-bottom: 1px solid rgba(85,85,85,0.5);
  transition: background 400ms ease;
}
.proc-card:last-child { border-right: none; }
.proc-card:hover {
  background: rgba(212,168,87,0.04);
}
.proc-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 80px;
}
.proc-icon {
  width: 44px; height: 44px;
  background: var(--black);
  border: 1px solid rgba(212,168,87,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 20px;
}
.proc-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gray-500);
  font-weight: 400;
}
.proc-name {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 28px;
  line-height: 1.3;
}
.proc-list {
  list-style: none;
  margin: 0; padding: 0;
}
.proc-list li {
  font-size: 14px;
  color: var(--gray-300);
  font-weight: 300;
  padding: 12px 0 12px 22px;
  position: relative;
  border-top: 1px solid rgba(85,85,85,0.35);
  letter-spacing: 0.01em;
}
.proc-list li:first-child { border-top: none; }
.proc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 6px; height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* Density: compact */
.procs.density-compact .proc-card { padding: 32px 26px 36px; }
.procs.density-compact .proc-head { margin-bottom: 50px; }
.procs.density-compact .proc-name { font-size: 15px; margin-bottom: 18px; }
.procs.density-compact .proc-list li { padding: 9px 0 9px 20px; font-size: 13px; }

.procs.density-airy .proc-card { padding: 64px 48px 72px; }
.procs.density-airy .proc-head { margin-bottom: 110px; }
.procs.density-airy .proc-list li { padding: 16px 0 16px 24px; font-size: 15px; }

/* ─── MUITO PRAZER ─────────────────────────────────────────── */
.about {
  position: relative;
  background: var(--dark);
  padding: 180px 0 200px;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.about-overline {
  margin-bottom: 24px;
}
.about-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  margin: 0 0 48px;
  color: var(--white);
  letter-spacing: -0.005em;
}
.about-name em {
  font-style: italic;
  color: var(--accent-soft);
}
.about-text {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.85;
  font-weight: 300;
  margin: 0 0 22px;
  max-width: 520px;
}
.about-sig {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.about-sig-line { flex: 1; height: 1px; background: var(--gray-700); max-width: 80px; }
.about-sig-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent-soft);
  font-weight: 400;
}

.about-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo {
  position: relative;
  width: 78%;
  height: 92%;
  background-size: cover;
  background-position: center 20%;
  border-radius: 50% / 50%;
  filter: grayscale(0.7) contrast(1.04);
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.8);
  z-index: 1;
}
.about-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--accent);
  border-radius: 50% / 50%;
  transform: rotate(-15deg) scale(1.02);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 80px -20px rgba(212,168,87,0.4);
}
.about-ring-2 {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(212,168,87,0.25);
  border-radius: 50% / 50%;
  transform: rotate(8deg) scale(0.95);
  pointer-events: none;
  z-index: 0;
}
.about-mark {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.15em;
  z-index: 3;
}

/* ─── ANTES / DEPOIS ───────────────────────────────────────── */
.beforeafter {
  background: var(--dark);
  padding: 150px 0 120px;
  overflow: hidden;
}
.ba-header {
  text-align: center;
  margin-bottom: 80px;
}
.ba-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4.4vw, 60px);
  margin: 14px 0 20px;
  letter-spacing: -0.005em;
  color: var(--white);
}
.ba-title em { font-style: italic; color: var(--accent-soft); }
.ba-sub {
  font-size: 14px;
  color: var(--gray-300);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.ba-track-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 18px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  /* Esconder barra de rolagem - Firefox */
  scrollbar-width: none;
  /* Esconder barra de rolagem - IE e Edge antigo */
  -ms-overflow-style: none;
}
.ba-track-wrap.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
/* Esconder barra de rolagem - Chrome, Safari, Edge */
.ba-track-wrap::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.ba-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 0 var(--gutter, 60px);
}
.ba-card {
  flex: 0 0 auto;
  width: 320px;
}
.ba-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.5;
  overflow: hidden;
  border: 1px solid rgba(85,85,85,0.4);
  background: var(--dark-mid);
}
.ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
  pointer-events: none;
  user-select: none;
}
.ba-card:hover .ba-image-wrap img {
  transform: scale(1.02);
}
.ba-label {
  position: absolute;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.32em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212,168,87,0.4);
  z-index: 2;
}
.ba-label-top {
  top: 14px;
  color: var(--gray-200);
}
.ba-label-bottom {
  bottom: 14px;
  color: var(--accent);
  border-color: var(--accent);
}
.ba-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 4px 0;
}
.ba-proc {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gray-300);
  text-transform: uppercase;
  font-weight: 400;
}
@keyframes ba-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 14px)); }
}

/* ─── DEPOIMENTOS ──────────────────────────────────────────── */
.testimonials {
  background: var(--dark);
  padding: 150px 0 150px;
  overflow: hidden;
  position: relative;
}
.tm-header {
  text-align: center;
  margin-bottom: 80px;
}
.tm-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4.4vw, 60px);
  margin: 14px 0 20px;
  color: var(--white);
  letter-spacing: -0.005em;
}
.tm-title em { font-style: italic; color: var(--accent-soft); }
.tm-sub {
  font-size: 14px;
  color: var(--gray-300);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.tm-track-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 18px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  /* Esconder barra de rolagem - Firefox */
  scrollbar-width: none;
  /* Esconder barra de rolagem - IE e Edge antigo */
  -ms-overflow-style: none;
}
.tm-track-wrap.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
/* Esconder barra de rolagem - Chrome, Safari, Edge */
.tm-track-wrap::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.tm-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 0 var(--gutter, 60px);
}
.tm-card {
  flex: 0 0 auto;
  width: 380px;
  min-height: 280px;
  background: var(--dark-mid);
  border: 1px solid rgba(85,85,85,0.5);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 400ms ease, transform 400ms ease;
}
.tm-card:hover {
  border-color: rgba(212,168,87,0.4);
  transform: translateY(-4px);
}
.tm-quote-mark {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--accent);
  line-height: 0.6;
  height: 26px;
  margin-bottom: 18px;
  font-weight: 400;
}
.tm-text {
  font-size: 14.5px;
  color: var(--gray-200);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
  font-style: italic;
}
.tm-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(85,85,85,0.4);
}
.tm-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
}
.tm-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
}
@keyframes tm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 14px)); }
}

/* ─── CONTATO ──────────────────────────────────────────────── */
.contact {
  background: var(--off-white);
  color: var(--dark);
  padding: 130px 0 0;
  position: relative;
}
.contact-cta-wrap {
  position: relative;
  display: flex; justify-content: center;
  margin-top: -86px;
  margin-bottom: 80px;
}
.contact-id {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 60px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--gray-200);
}
.contact-id-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background-size: cover; background-position: center;
}
.contact-id-name {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--dark);
  font-weight: 400;
  margin: 0;
  line-height: 1;
}
.contact-id-role {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gray-700);
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 400;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  padding-bottom: 100px;
}
.contact-map {
  position: relative;
  border: 1px solid var(--gray-300);
  background: var(--gray-100);
  min-height: 460px;
  overflow: hidden;
  filter: grayscale(0.85) contrast(1.05);
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.4);
}
.contact-info-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 3.4vw, 52px);
  margin: 0 0 50px;
  color: var(--dark);
  letter-spacing: -0.005em;
}
.contact-info-title em { font-style: italic; color: var(--accent); }
.contact-block {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.contact-block:last-child { border-bottom: none; }
.contact-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 14px;
  font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.contact-label::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}
.contact-value {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.contact-instagram {
  display: inline-block;
  color: var(--dark);
  text-decoration: none;
  transition: color 300ms ease;
}
.contact-instagram:hover {
  color: var(--accent);
}
.contact-value-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gray-700);
  margin-top: 6px;
  font-weight: 300;
}

.footer {
  border-top: 1px solid var(--gray-200);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-text {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.footer-social {
  display: flex; gap: 16px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  color: var(--gray-700);
  transition: all 300ms ease;
}
.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ─── WHATSAPP FLOAT ───────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 28px; bottom: 28px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow:
    0 14px 36px -8px rgba(37,211,102,0.55),
    0 0 0 0 rgba(37,211,102,0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.85);
  transition: opacity 400ms ease, transform 400ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms ease;
  animation: wa-pulse 2.4s ease-out infinite;
}
.wa-float.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 18px 48px -8px rgba(37,211,102,0.7),
    0 0 0 0 rgba(37,211,102,0.6);
}
@keyframes wa-pulse {
  0% { box-shadow: 0 14px 36px -8px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 14px 36px -8px rgba(37,211,102,0.55), 0 0 0 22px rgba(37,211,102,0); }
  100% { box-shadow: 0 14px 36px -8px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-tip {
  position: absolute;
  right: 78px; top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  border: 1px solid rgba(212,168,87,0.3);
}
.wa-tip::after {
  content: "";
  position: absolute;
  right: -6px; top: 50%;
  width: 0; height: 0;
  border-left: 6px solid var(--dark);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ─── Asymmetric hero variant ───────────────────────────────── */
.hero.layout-asymmetric .hero-grid {
  grid-template-columns: 38% 62%;
}
.hero.layout-asymmetric .hero-left {
  padding: 140px 50px 160px 100px;
}
.hero.layout-asymmetric .hero-name {
  font-size: clamp(64px, 8.5vw, 128px);
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { height: 60vh; order: -1; }
  .hero-left { padding: 60px 32px 100px; }
  .hero-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 32px;
  }
  .hero-stats { justify-self: start; gap: 32px; }
  .procs-header { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .procs-grid { grid-template-columns: 1fr; }
  .proc-card { border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photo-wrap { max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { min-height: 320px; }
  .footer { flex-direction: column; gap: 18px; padding: 32px 0; }
  :root { --gutter: 28px; }
  .hero.layout-asymmetric .hero-grid { grid-template-columns: 1fr; }
}
