/* =================================================================
   Studio Jhully Rodrigues — Editorial Fashion (light)
   Paleta bege + Melodrama + Satoshi · S&G Consultoria
   ================================================================= */

/* === Self-hosted Variable fonts (Indian Type Foundry) === */
@font-face {
  font-family: "Melodrama";
  src: url("fonts/Melodrama-Variable.woff2") format("woff2-variations"),
       url("fonts/Melodrama-Variable.woff2") format("woff2"),
       url("fonts/Melodrama-Variable.woff")  format("woff");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/Satoshi-Variable.woff2") format("woff2-variations"),
       url("fonts/Satoshi-Variable.woff2") format("woff2"),
       url("fonts/Satoshi-Variable.woff")  format("woff");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/Satoshi-VariableItalic.woff2") format("woff2-variations"),
       url("fonts/Satoshi-VariableItalic.woff2") format("woff2"),
       url("fonts/Satoshi-VariableItalic.woff")  format("woff");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper:     #F4EEE3;
  --paper-2:   #ECE4D4;
  --paper-3:   #FAF6EE;
  --ink:       #1A1715;
  --ink-2:     #3D362F;
  --ink-3:     #6B6157;
  --champagne: #8B6F47;
  --wine:      #5A2E37;
  --wine-2:    #6b3641;
  --wine-3:    #3f1f26;
  --rule:      #C8BFB1;
  --rose-soft: #d9a4a4;

  --font-display: "Melodrama", "Times New Roman", Georgia, serif;
  --font-body: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1280px;
  --pad-section-y: 120px;
  --pad-section-x: 32px;
  --radius-card: 4px;
  --shadow-soft: 0 6px 30px rgba(26,23,21,0.08);
}

/* =============== Reset =============== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: transparent;
  position: relative;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animated soft glow cycle — warm gradients drifting between champagne & rosé */
@keyframes glow-cycle {
  0%, 100% {
    background-image:
      radial-gradient(ellipse 70% 55% at 22% 18%, #C9A678 0%, transparent 58%),
      radial-gradient(ellipse 75% 60% at 80% 82%, #D9A4A4 0%, transparent 58%);
  }
  25% {
    background-image:
      radial-gradient(ellipse 70% 55% at 22% 18%, #B49872 0%, transparent 58%),
      radial-gradient(ellipse 75% 60% at 80% 82%, #E8B4B8 0%, transparent 58%);
  }
  50% {
    background-image:
      radial-gradient(ellipse 70% 55% at 22% 18%, #D9A4A4 0%, transparent 58%),
      radial-gradient(ellipse 75% 60% at 80% 82%, #C9A678 0%, transparent 58%);
  }
  75% {
    background-image:
      radial-gradient(ellipse 70% 55% at 22% 18%, #E0D4BC 0%, transparent 58%),
      radial-gradient(ellipse 75% 60% at 80% 82%, #B49872 0%, transparent 58%);
  }
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 70% 55% at 22% 18%, #C9A678 0%, transparent 58%),
    radial-gradient(ellipse 75% 60% at 80% 82%, #D9A4A4 0%, transparent 58%);
  opacity: 0.32;
  mix-blend-mode: multiply;
  animation: glow-cycle 24s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

/* Stack page content above the glow */
.promo-bar,
main,
.site-footer { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

/* =============== Tipografia base =============== */

h1, h2, h3, h4 { font-weight: 600; margin: 0; line-height: 1.05; letter-spacing: -0.025em; }
h1, .h1, h2, .h2, h3 em, h2 em, h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
}
em { font-family: var(--font-display); font-style: italic; font-weight: 600; }

.eyebrow, [class$="-eyebrow"] {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
}

/* =============== Botões =============== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  letter-spacing: 0.01em;
}
.btn-pill {
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  font-weight: 600;
  font-size: 0.94rem;
}
.btn-primary { background: var(--wine); color: var(--paper); }
.btn-primary:hover { transform: scale(1.02); background: var(--wine-3); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { transform: scale(1.02); background: #fff; }

/* =============== BLOCO 0 — Promo bar =============== */

.promo-bar {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.promo-divider { color: var(--champagne); }

/* =============== BLOCO 1 — Header (floating pill) =============== */

.header-wrap {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 12px 16px 0;
  pointer-events: none;
}
.header-wrap.scrolled .site-header {
  box-shadow: 0 12px 30px rgba(26,23,21,.14), 0 1px 0 rgba(26,23,21,.04);
}
.site-header {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 1040px;
  padding: 8px 14px 8px 20px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(26,23,21,.08);
  transition: box-shadow .35s ease, transform .3s ease;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--ink);
}
.brand-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B49872 0%, var(--champagne) 50%, var(--wine) 100%);
  box-shadow: 0 4px 14px rgba(90,46,55,.28), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.brand-orb-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 1px rgba(0,0,0,.18);
}
.brand:hover .brand-orb { transform: rotate(10deg) scale(1.04); }
.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-l1 {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
}
.brand-l2 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.primary-nav {
  position: relative;
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  padding: 4px;
  border-radius: 14px;
  isolation: isolate;
}
.primary-nav::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(217,164,164,.20) 30%,
    rgba(201,166,120,.20) 60%,
    rgba(90,46,55,.18) 90%,
    transparent 100%
  );
  border-radius: 24px;
  opacity: 0;
  transition: opacity .55s cubic-bezier(.4,0,.2,1);
  z-index: -1;
  pointer-events: none;
  filter: blur(2px);
}
.primary-nav:hover::before { opacity: 1; }

/* === GradientMenu (active) — circular items que expandem e revelam label === */
.gradient-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.gradient-menu::before { display: none; } /* desliga o halo radial do glow-menu */

.gradient-menu .gm-item {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 6px 16px rgba(26,23,21,.08), inset 0 0 0 1px var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  transition: width .5s cubic-bezier(.4,0,.2,1),
              box-shadow .5s ease;
}
.gradient-menu .gm-item:hover,
.gradient-menu .gm-item.active {
  width: 158px;
  box-shadow: none;
}
.gradient-menu .gm-bg {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(45deg, var(--g-from), var(--g-to));
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 0;
}
.gradient-menu .gm-item:hover .gm-bg,
.gradient-menu .gm-item.active .gm-bg { opacity: 1; }
.gradient-menu .gm-glow {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(45deg, var(--g-from), var(--g-to));
  filter: blur(15px);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: -1;
  pointer-events: none;
}
.gradient-menu .gm-item:hover .gm-glow,
.gradient-menu .gm-item.active .gm-glow { opacity: 0.45; }
.gradient-menu .gm-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  transition: transform .5s cubic-bezier(.4,0,.2,1), color .3s ease;
}
.gradient-menu .gm-item:hover .gm-icon,
.gradient-menu .gm-item.active .gm-icon {
  transform: scale(0);
}
.gradient-menu .gm-label {
  position: absolute;
  z-index: 1;
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  transform: scale(0);
  transition: transform .5s cubic-bezier(.4,0,.2,1) 0s;
  white-space: nowrap;
}
.gradient-menu .gm-item:hover .gm-label,
.gradient-menu .gm-item.active .gm-label {
  transform: scale(1);
  transition-delay: .15s;
}

/* Menu item — legacy (single soft glow) — preservado para compat com JS observer */
.menu-item {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
  border-radius: 12px;
}
.item-glow {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  transform: scale(0.85);
  background: radial-gradient(circle, rgba(201,166,120,.28) 0%, rgba(139,111,71,.08) 55%, rgba(139,111,71,0) 100%);
  transition: opacity .45s cubic-bezier(.4,0,.2,1),
              transform .55s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
  z-index: 0;
}
.menu-item:hover .item-glow,
.menu-item.active .item-glow {
  opacity: 1;
  transform: scale(1.55);
}
.item-face {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 12px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  color: var(--ink-3);
  transition: color .25s ease;
}
.menu-item.active .item-face,
.menu-item:hover .item-face { color: var(--ink); }
.item-icon {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity .25s ease, color .25s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.menu-item:hover .item-icon,
.menu-item.active .item-icon {
  opacity: 1;
  color: var(--champagne);
  transform: scale(1.05);
}
.header-cta {
  font-size: 0.82rem;
  padding: 0.62rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
}
.header-cta:hover { background: var(--wine); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 50%;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.nav-toggle:active { transform: scale(0.92); }
.nav-toggle:hover { background: var(--paper-2); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--paper);
  padding: 96px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.22,1,.36,1);
  visibility: hidden;
}
.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 50%;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.drawer-close:active { transform: scale(0.92); }
.drawer-close:hover { background: var(--paper-2); }
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.drawer-nav a {
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  transition: color .2s ease, transform .2s ease;
  opacity: 0;
  transform: translateX(20px);
}
.mobile-drawer.open .drawer-nav a {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.mobile-drawer.open .drawer-nav a:nth-child(1) { transition-delay: .1s; }
.mobile-drawer.open .drawer-nav a:nth-child(2) { transition-delay: .15s; }
.mobile-drawer.open .drawer-nav a:nth-child(3) { transition-delay: .2s; }
.mobile-drawer.open .drawer-nav a:nth-child(4) { transition-delay: .25s; }
.mobile-drawer.open .drawer-nav a:nth-child(5) { transition-delay: .3s; }
.drawer-nav a:hover { color: var(--wine); }
.drawer-nav a em { color: var(--wine); }
.drawer-cta {
  margin-top: 16px;
  font-size: 1rem;
  padding: 0.95rem 1.6rem;
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  opacity: 0;
  transform: translateY(20px);
}
.mobile-drawer.open .drawer-cta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s ease .45s, transform .35s cubic-bezier(.22,1,.36,1) .45s;
}

/* =============== BLOCO 2 — Hero V2 (split + clip-path diagonal) =============== */

.hero.hero-v2 {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: calc(100vh - 80px);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  padding: 0;
}

.hero-v2-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 64%;
  padding: clamp(20px, 2.4vw, 36px) clamp(40px, 5vw, 88px) clamp(40px, 5vw, 88px);
  gap: clamp(32px, 4vw, 64px);
  z-index: 2;
}

/* Brand */
.hero-v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  animation: v2-rise .6s cubic-bezier(.22,1,.36,1) .2s forwards;
}
.hero-v2-logo {
  display: block;
  height: auto;
  width: auto;
  max-width: clamp(140px, 12vw, 200px);
  image-rendering: -webkit-optimize-contrast;
  transform: scale(2);
  transform-origin: top left;
}
.hero-v2-orb {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #B49872 0%, var(--champagne) 50%, var(--wine) 100%);
  box-shadow: 0 4px 14px rgba(90,46,55,.28), inset 0 1px 0 rgba(255,255,255,.18);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--paper);
  letter-spacing: -0.04em;
}
.hero-v2-brandwords {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hero-v2-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero-v2-slogan {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
}

/* Main */
.hero-v2-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-v2-h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--ink);
  opacity: 0;
  transform: translateY(20px);
  animation: v2-rise .65s cubic-bezier(.22,1,.36,1) .35s forwards;
}
.hero-v2-h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: -0.02em;
}
.hero-v2-rule {
  display: block;
  width: 80px;
  height: 3px;
  background: var(--wine);
  margin: 28px 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  animation: v2-grow .55s cubic-bezier(.22,1,.36,1) .55s forwards;
}
.hero-v2-sub {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 36px;
  opacity: 0;
  transform: translateY(16px);
  animation: v2-rise .6s cubic-bezier(.22,1,.36,1) .7s forwards;
}
.hero-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--wine);
  padding: 6px 0;
  border-bottom: 2px solid var(--wine);
  transition: color .25s ease, gap .25s ease, border-color .25s ease;
  opacity: 0;
  transform: translateY(16px);
  animation: v2-rise .55s cubic-bezier(.22,1,.36,1) .85s forwards;
}
.hero-v2-cta:hover {
  color: var(--wine-3);
  border-color: var(--wine-3);
  gap: 14px;
}

/* Footer (contact info row) */
.hero-v2-foot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  font-size: 0.78rem;
  color: var(--ink-3);
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(16px);
  animation: v2-rise .6s cubic-bezier(.22,1,.36,1) 1s forwards;
}
.hero-v2-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.hero-v2-info svg {
  flex-shrink: 0;
  color: var(--wine);
}
.hero-v2-info span,
.hero-v2-info a {
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s ease;
}
.hero-v2-info a:hover { color: var(--wine); }

/* Right side — slideshow with clip-path reveal */
.hero-v2-right {
  flex: 1 1 36%;
  position: relative;
  background-color: var(--paper-2);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  animation: v2-clip 1.2s cubic-bezier(.85,0,.15,1) .3s forwards;
  overflow: hidden;
}
.hero-v2-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
  transform: scale(1);
  will-change: opacity, transform;
}
.hero-v2-img.active {
  opacity: 1;
  animation: v2-kenburns 6s ease-out forwards;
}
@keyframes v2-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2-img.active { animation: none; }
}

/* Keyframes */
@keyframes v2-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes v2-grow {
  to { opacity: 1; transform: scaleX(1); }
}
@keyframes v2-clip {
  to { clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2-brand, .hero-v2-h1, .hero-v2-rule, .hero-v2-sub, .hero-v2-cta, .hero-v2-foot, .hero-v2-right {
    opacity: 1; transform: none; animation: none;
  }
  .hero-v2-rule { transform: scaleX(1); }
  .hero-v2-right { clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-v2 { flex-direction: column-reverse; min-height: auto; }
  .hero-v2-left { flex: 1 1 100%; padding: 40px 24px; gap: 36px; }
  .hero-v2-right {
    flex: 0 0 60vw;
    min-height: 360px;
    clip-path: none !important;
    animation: none;
  }
  .hero-v2-foot { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 540px) {
  .hero-v2-left { padding: 32px 22px; }
  .hero-v2-h1 { font-size: clamp(2.4rem, 9vw, 3rem); }
}

/* =============== BLOCO 2 (legacy LETTER) — Hero LETTER (conversational) =============== */

.hero-letter {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 8vw, 120px);
  background: var(--paper);
  overflow: hidden;
}
.hero-letter-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-section-x);
}
.hero-letter-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

.hero-letter-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 540px;
}

.hero-letter-eyebrow {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
}

.hero-letter-h1 {
  font-family: var(--font-body);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.92;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink);
}
.hero-letter-h1 .line-greet {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--ink-3);
  letter-spacing: -0.02em;
}
.hero-letter-h1 .line-name {
  font-size: clamp(3rem, 6.5vw, 5.6rem);
}
.hero-letter-h1 .line-name em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--wine);
}

.hero-letter-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.hero-letter-body p {
  margin: 0;
  max-width: 460px;
}
.hero-letter-body strong { color: var(--ink); font-weight: 600; }

.hero-letter-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero-letter-link {
  font-size: 0.95rem;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-3);
  padding-bottom: 2px;
  transition: color .25s ease, border-color .25s ease;
}
.hero-letter-link:hover {
  color: var(--wine);
  border-color: var(--wine);
}

.hero-letter-services {
  margin: 16px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-letter-services .dot { color: var(--champagne); }

/* Photo column — letter-style portrait */
.hero-letter-photo {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  transform: rotate(-1deg);
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.hero-letter-photo:hover { transform: rotate(0deg); }
.hero-letter-photo img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  box-shadow:
    0 28px 56px -20px rgba(26,23,21,.35),
    0 8px 16px -8px rgba(26,23,21,.18);
  filter: saturate(1.02);
}
.hero-letter-photo figcaption {
  font-size: 0.82rem;
  color: var(--ink-3);
  line-height: 1.4;
  text-align: right;
  max-width: 520px;
  width: 100%;
  font-family: var(--font-body);
}
.hero-letter-photo figcaption em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 2px;
}

/* Page-load reveal — staggered */
.hero-letter-eyebrow,
.hero-letter-h1 .line-greet,
.hero-letter-h1 .line-name,
.hero-letter-body,
.hero-letter-actions,
.hero-letter-services,
.hero-letter-photo {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-letter-rise .85s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-letter-eyebrow         { animation-delay: .05s; }
.hero-letter-h1 .line-greet  { animation-delay: .15s; }
.hero-letter-h1 .line-name   { animation-delay: .25s; }
.hero-letter-body            { animation-delay: .45s; }
.hero-letter-actions         { animation-delay: .60s; }
.hero-letter-services        { animation-delay: .75s; }
.hero-letter-photo           { animation-delay: .35s; transform: translateY(16px) rotate(-1deg); }
.hero-letter-photo           { animation-name: hero-letter-rise-photo; }

@keyframes hero-letter-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-letter-rise-photo {
  to { opacity: 1; transform: translateY(0) rotate(-1deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-letter-eyebrow,
  .hero-letter-h1 .line-greet,
  .hero-letter-h1 .line-name,
  .hero-letter-body,
  .hero-letter-actions,
  .hero-letter-services,
  .hero-letter-photo {
    opacity: 1; transform: none; animation: none;
  }
  .hero-letter-photo { transform: rotate(-1deg); }
}

@media (max-width: 880px) {
  .hero-letter-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-letter-photo { transform: none; align-items: stretch; }
  .hero-letter-photo img { max-width: 100%; }
  .hero-letter-photo figcaption { text-align: left; }
}

/* =============== BLOCO 2 (legacy) — Hero (text + 3-photo grid) =============== */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 80px);
  padding: 0;
}
.hero-container {
  flex: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--pad-section-x) clamp(48px, 6vw, 80px);
  display: flex;
  align-items: center;
}
.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

/* Left — text */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 540px;
}
.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  background: rgba(250,246,238,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2f8a5c;
  position: relative;
  flex-shrink: 0;
}
.dot-pulse::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #2f8a5c;
  opacity: 0.4;
  animation: pulse-dot 1.8s ease-out infinite;
}
@keyframes pulse-dot {
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .dot-pulse::before { animation: none; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(3rem, 7.2vw, 6.4rem);
  line-height: 0.92;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.04em;
  max-width: 540px;
}
.hero-h1 em {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  margin: 0;
  max-width: 480px;
  color: var(--ink-2);
  line-height: 1.6;
  letter-spacing: -0.005em;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

/* Right — 3-photo grid */
.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: clamp(480px, 62vh, 640px);
}
.hero-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
  box-shadow: 0 14px 36px -14px rgba(26,23,21,.22);
  transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.hero-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px -18px rgba(90,46,55,.28);
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,21,.55) 0%, rgba(26,23,21,.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .35s ease;
}
.hero-photo:hover::after { opacity: 1; }
.hero-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--paper);
  background: rgba(26,23,21,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.hero-photo:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.hp-1 { grid-column: 1; grid-row: 1; }
.hp-2 { grid-column: 2; grid-row: 1 / 3; }
.hp-3 { grid-column: 1; grid-row: 2; }

/* =============== BLOCO 5 — Services HoverSlider =============== */

.services-hover {
  padding: var(--pad-section-y) var(--pad-section-x);
  background:
    radial-gradient(circle at 20% 10%, rgba(218,181,130,.18), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(217,164,164,.10), transparent 60%),
    var(--wine);
  color: var(--paper);
  border-top: 1px solid var(--wine-3);
  border-bottom: 1px solid var(--wine-3);
}
.services-hover-header {
  max-width: var(--maxw, 1280px);
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services-eyebrow {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: #E5C896;
}
.services-hover-h2 {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  font-weight: 800;
  color: var(--paper);
}
.services-hover-h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: #E5C896;
}
.services-hover-lede {
  margin: 0;
  font-size: 1.02rem;
  color: var(--paper-2);
  opacity: 0.78;
}

.services-hover-grid {
  max-width: var(--maxw, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: auto auto;
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 28px;
  align-items: stretch;
}

/* Titles list (left) — alinhado verticalmente com a imagem */
.services-titles {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  align-self: stretch;
}
.services-title {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  text-align: left;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.6;
  text-transform: none;
  width: fit-content;
  position: relative;
}
.services-title::before {
  content: attr(data-num);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.46em;
  color: var(--champagne);
  opacity: 0.6;
  letter-spacing: 0.02em;
  transform: translateY(-0.4em);
  transition: opacity .35s ease;
}
.services-title.active::before { opacity: 1; }
.services-title:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 6px;
  border-radius: 4px;
}

/* Stagger char animation */
.stagger {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.stagger-char {
  position: relative;
  display: inline-block;
  overflow: visible;
  vertical-align: baseline;
}
.stagger-face {
  display: inline-block;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94),
              opacity .35s cubic-bezier(.25,.46,.45,.94);
  transition-delay: calc(var(--i, 0) * 22ms);
  white-space: pre;
}
.stagger-face.front {
  opacity: 1;
  transform: translateY(0);
  color: var(--paper);
}
.stagger-face.back {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(10px);
  color: #E5C896;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
}
.services-title.active .stagger-face.front {
  opacity: 0;
  transform: translateY(-10px);
}
.services-title.active .stagger-face.back {
  opacity: 1;
  transform: translateY(0);
}
.services-title:not(.active):hover .stagger-face.front {
  color: #E5C896;
}

/* Image stage (right) — display:contents para participar diretamente do grid pai */
.services-stage {
  display: contents;
}
.services-images {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 540px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--wine-3);
  box-shadow:
    0 32px 64px -28px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(201,166,120,.18);
}
.services-image {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: clip-path .85s cubic-bezier(.33, 1, .68, 1);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
.services-image.active {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
/* Foco editorial — cada imagem de serviço posicionada pra destacar o que o texto vende */
.services-image[data-index="0"] { object-position: center 50%; }    /* Extensão de cílios — olho/cílios centralizados */
.services-image[data-index="1"] { object-position: center 50%; }    /* Lash lift — modelo deitada, mantém rosto inteiro visível (lábios → cílios → sobrancelha) */
.services-image[data-index="2"] { object-position: center 28%; }    /* Design de sobrancelhas — sobrancelha no topo */
.services-image[data-index="3"] {                                    /* Depilação a laser — Jhully + máquina HAKON */
  transform: scaleX(-1);
  object-position: center 45%;
}
.services-image[data-index="4"] { object-position: center 38%; }    /* Limpeza de pele — rosto/pele em destaque */

.services-meta {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  min-height: 120px;
  padding-top: 18px;
  border-top: 1px solid rgba(201,166,120,.28);
}
.services-desc {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--paper-2);
  max-width: 480px;
  position: absolute;
  top: 18px;
  left: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .45s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
}
.services-desc.active {
  opacity: 0.92;
  transform: translateY(0);
  position: relative;
  top: 0;
  pointer-events: auto;
}
.services-dyn-cta {
  align-self: flex-start;
  font-size: 0.9rem;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--paper) inset;
}
.services-dyn-cta:hover {
  background: var(--champagne);
  color: var(--paper);
  box-shadow: 0 0 0 1px var(--champagne) inset, 0 12px 32px rgba(201,166,120,.32);
  transform: translateY(-1px);
}

/* =============== BLOCO 6 — Duo =============== */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.duo-block {
  position: relative;
  overflow: hidden;
  padding: 80px 56px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.duo-dark { background: var(--ink); color: var(--paper); }
.duo-wine {
  background: linear-gradient(140deg, var(--wine-2) 0%, var(--wine) 60%, var(--wine-3) 100%);
  color: var(--paper);
}
.duo-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
  margin: 0;
}
.duo-eyebrow-light { color: var(--rose-soft); }
.duo-h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}
.duo-sub {
  font-size: 1.05rem;
  max-width: 380px;
  margin: 0 0 12px;
  opacity: 0.85;
}
.duo-map-decor {
  position: absolute;
  right: -100px;
  bottom: -80px;
  width: 620px;
  height: 520px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  opacity: 0.65;
  filter: grayscale(0.5);
  pointer-events: auto;
  transition: opacity .35s ease, filter .35s ease;
}
.duo-map-decor:hover,
.duo-map-decor:focus-within {
  opacity: 1;
  filter: grayscale(0);
}
.duo-marquee {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: clamp(280px, 38%, 400px);
  display: flex;
  gap: 14px;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.duo-marquee-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: dm-scroll var(--duration, 30s) linear infinite;
}
.duo-marquee-col-reverse {
  animation-direction: reverse;
}
@keyframes dm-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.dm-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 6px solid var(--paper);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .duo-marquee-col { animation: none; }
}
@media (max-width: 880px) {
  .duo-marquee {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 360px;
    margin-top: 24px;
  }
}

/* =============== BLOCO 7 — Steps slider =============== */

.steps {
  padding: var(--pad-section-y) var(--pad-section-x);
  background: var(--paper-2);
  text-align: center;
  position: relative;
  z-index: 3;
}
.steps-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  margin: 0 0 14px;
}
.steps-sub {
  font-size: 1.05rem;
  margin: 0 0 28px;
  color: var(--ink-2);
}
.steps-cta-bottom { margin-top: 28px; }

.steps-slider {
  position: relative;
  max-width: 1280px;
  margin: 56px auto 8px;
  padding: 0;
}
.steps-slider.steps-static .steps-track {
  overflow: visible;
  justify-content: center;
  cursor: default;
  scroll-snap-type: none;
}
.steps-slider.steps-static .steps-track .step-card {
  flex: 0 0 378px;
  height: 543px;
  scroll-snap-align: none;
}
.steps-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250,246,238,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(216,207,190,.7);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .35s ease, background .25s ease, transform .25s var(--ease, cubic-bezier(.34,1.56,.64,1));
  box-shadow: 0 12px 28px -10px rgba(26,23,21,.18);
}
.steps-arrow.prev { left: 8px; }
.steps-arrow.next { right: 8px; }
.steps-slider:hover .steps-arrow,
.steps-arrow:focus-visible {
  opacity: 1;
}
.steps-arrow:hover {
  background: var(--paper);
  transform: translateY(-50%) scale(1.1);
}
.steps-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.steps-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 24px 16px;
  margin: -24px -16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}
.steps-track::-webkit-scrollbar { display: none; }
.steps-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.steps-track .step-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  position: relative;
}
.steps-track .step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(90,46,55,.35);
  box-shadow: 0 32px 60px -22px rgba(90,46,55,.22);
}
.step-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.step-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(244,238,227,.6) 0%, rgba(244,238,227,.1) 50%, transparent 100%);
  pointer-events: none;
  transition: opacity .3s ease;
}
.steps-track .step-card:hover .step-image::after { opacity: 0.4; }

.step-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(250,246,238,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.4);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
}
.step-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,23,21,.32);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .35s ease;
  text-decoration: none;
  pointer-events: none;
}
.steps-track .step-card:hover .step-overlay {
  opacity: 1;
  pointer-events: auto;
}
.step-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250,246,238,.95);
  color: var(--ink);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  transition: transform .25s var(--ease, cubic-bezier(.34,1.56,.64,1));
}
.step-overlay:hover span { transform: scale(1.05); }
.step-overlay:active span { transform: scale(0.96); }
.step-overlay svg { color: var(--wine); transition: transform .25s ease; }
.step-overlay:hover svg { transform: translateX(4px); }

.step-content {
  flex: 1;
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: color .3s ease;
}
.steps-track .step-card:hover .step-title { color: var(--wine); }
.step-text {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
  font-size: 1.08rem;
  flex: 1;
}
.step-meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.step-meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.step-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  flex-shrink: 0;
}
.step-meta-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.step-meta-info strong {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.step-meta-info span {
  font-size: 0.7rem;
  color: var(--ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.step-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--paper-2);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-3);
  flex-shrink: 0;
}
.step-time svg { color: var(--champagne); }

/* =============== BLOCO 8 — Quote =============== */

.quote-block {
  padding: var(--pad-section-y) var(--pad-section-x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.quote-block::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,23,21,.45) 0%, rgba(26,23,21,.78) 100%);
}
.quote-overlay {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: var(--paper);
}
.quote-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
  margin: 0 0 24px;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  margin: 0 0 18px;
  font-weight: 700;
}
.quote-cite {
  font-style: italic;
  font-size: 0.82rem;
  opacity: 0.65;
}

/* =============== BLOCO 9 — Testimonials columns (vertical scroll) =============== */

.testimonials {
  padding: var(--pad-section-y) var(--pad-section-x);
  background: var(--paper);
  text-align: center;
}
.testimonials-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin: 0 0 14px;
  line-height: 1.05;
}
.testimonials-sub {
  font-size: 1.05rem;
  margin: 0 0 28px;
  color: var(--ink-2);
}
.testimonials-columns {
  max-width: 1280px;
  margin: 56px auto 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  max-height: 740px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}
.tc-col {
  flex: 1;
  max-width: 320px;
  min-width: 0;
  overflow: hidden;
}
@keyframes tc-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.tc-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  animation: tc-scroll var(--duration, 22s) linear infinite;
  will-change: transform;
}
.tc-col:hover .tc-track { animation-play-state: paused; }
.tc-card {
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 32px 30px;
  margin: 0;
  text-align: left;
  box-shadow: 0 8px 24px rgba(90,46,55,.06);
  transition: box-shadow .3s ease, transform .3s ease;
}
.tc-card:hover {
  box-shadow: 0 14px 36px rgba(90,46,55,.14);
  transform: translateY(-2px);
}
.tc-card blockquote {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.tc-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--paper-2);
  background-size: cover;
  background-position: center;
  border: 2px solid var(--paper);
  box-shadow: 0 4px 12px rgba(26,23,21,.18);
  flex-shrink: 0;
}
.tc-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.tc-meta strong {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}
.tc-meta span {
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}
.testimonials-disclaimer {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-3);
  max-width: 700px;
  margin: 24px auto 0;
}

/* =============== NOVO BLOCO — Sobre a Jhully (MinimalistHero) =============== */

.sobre-hero {
  position: relative;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.sobre-top {
  max-width: var(--maxw, 1280px);
  margin: 0 auto 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.sobre-eyebrow {
  margin: 0;
  font-size: 0.74rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.sobre-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--wine);
  letter-spacing: 0.01em;
  font-weight: 600;
}
.sobre-eyebrow em {
  color: var(--wine);
  font-family: var(--font-display);
  font-style: italic;
  margin-right: 4px;
}
.sobre-burger {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--champagne);
  letter-spacing: 0.02em;
}

.sobre-hero { overflow: hidden; padding: clamp(48px, 6vw, 80px) var(--pad-section-x) 0; }

.sobre-inner {
  max-width: var(--maxw, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.1fr;
  align-items: stretch;
  gap: clamp(20px, 2.4vw, 40px);
  min-height: clamp(680px, 88vh, 860px);
  position: relative;
}

/* Left — bio (vertically centered) */
.sobre-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 280px;
  gap: 14px;
  position: relative;
  z-index: 5;
  opacity: 0;
  transform: translateY(20px);
  animation: sobre-fade .9s cubic-bezier(.22,1,.36,1) 1s forwards;
}
.sobre-lede {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.sobre-quote {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  border: 0;
}
.sobre-quote p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.sobre-quote cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
}
.sobre-link {
  display: inline-block;
  align-self: flex-start;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color .25s ease, border-color .25s ease;
}
.sobre-link:hover { color: var(--wine); border-color: var(--wine); }

/* Center — figure dominates from top to bottom; circle behind shoulder area */
.sobre-center {
  position: relative;
  height: clamp(680px, 88vh, 860px);
}
.sobre-circle {
  position: absolute;
  top: 32%;
  left: 50%;
  width: clamp(300px, 26vw, 400px);
  height: clamp(300px, 26vw, 400px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #DAB582 0%, var(--champagne) 55%, #5e4528 100%);
  box-shadow:
    0 32px 80px rgba(139,111,71,.36),
    inset 0 2px 0 rgba(255,255,255,.18),
    inset 0 -8px 30px rgba(60,42,18,.18);
  z-index: 1;
  opacity: 0;
  animation: sobre-scale-c 1s cubic-bezier(.22,1,.36,1) .2s forwards;
}
.sobre-portrait {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, var(--portrait-y, 0px));
  will-change: transform;
  width: auto;
  max-width: none;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 24px 40px rgba(26,23,21,.32));
}

/* Right — display type vertical centered */
.sobre-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 5;
  padding-left: clamp(24px, 3vw, 56px);
  opacity: 0;
  transform: translateY(20px);
  animation: sobre-fade .9s cubic-bezier(.22,1,.36,1) 1.2s forwards;
}
.sobre-display {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.sobre-display em {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--wine);
  letter-spacing: -0.02em;
}

@keyframes sobre-scale-c {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes sobre-rise-abs {
  from { opacity: 0; transform: translate(-50%, 40px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.sobre-foot {
  max-width: var(--maxw, 1280px);
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
  color: var(--ink-2);
}
.sobre-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.sobre-social a {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  border: 1px solid var(--rule);
  border-radius: 50%;
  transition: color .25s ease, border-color .25s ease, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.sobre-social a:hover {
  color: var(--paper);
  background: var(--wine);
  border-color: var(--wine);
  transform: translateY(-2px);
}
.sobre-loc {
  letter-spacing: 0.02em;
}

@keyframes sobre-fade {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sobre-scale {
  to { opacity: 1; transform: scale(1); }
}
@keyframes sobre-rise {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .sobre-left, .sobre-circle, .sobre-right {
    opacity: 1; transform: none; animation: none;
  }
  .sobre-portrait {
    opacity: 1;
    transform: translate(-50%, 0);
    animation: none;
  }
}

/* =============== BLOCO 10 — FAQ =============== */

.faq {
  padding: var(--pad-section-y) var(--pad-section-x);
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.faq-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 40px;
  z-index: 1;
}
.faq-subtitle {
  display: block;
  margin-bottom: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(90deg, var(--wine) 0%, var(--champagne) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.faq-h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  text-align: center;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.faq-halo {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(90,46,55,.10) 0%, rgba(201,166,120,.05) 50%, transparent 80%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.faq-tabs {
  max-width: 920px;
  margin: 0 auto 36px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.faq-tab {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-3);
  cursor: pointer;
  transition: color .35s ease, border-color .35s ease;
  white-space: nowrap;
}
.faq-tab > span {
  position: relative;
  z-index: 1;
}
.faq-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--wine) 0%, var(--wine-2) 100%);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.65,0,.35,1.4);
  z-index: 0;
}
.faq-tab:hover { color: var(--ink); }
.faq-tab.active {
  color: var(--paper);
  border-color: var(--wine);
  font-weight: 600;
}
.faq-tab.active::before {
  transform: translateY(0);
}
.faq-panel {
  display: none;
  max-width: 768px;
  margin: 0 auto;
}
.faq-panel.active { display: block; }
.faq-item {
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--paper);
  margin-bottom: 12px;
  overflow: hidden;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] {
  background: var(--paper-3);
  border-color: rgba(201,166,120,.45);
  box-shadow: 0 8px 24px -16px rgba(26,23,21,.18);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-3);
  transition: color .25s ease;
}
.faq-item[open] summary { color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform .25s ease, color .25s ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
  color: var(--wine);
}
.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 0.98rem;
}
.faq-item p a { color: var(--wine); }
.faq-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1.05rem;
  color: var(--ink-2);
}
.faq-footer a {
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid var(--wine);
}

/* =============== BLOCO 11 — Footer =============== */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 32px 0;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--champagne);
  margin: 0 0 18px;
}
.footer-col p,
.footer-col ul { margin: 0; font-size: 0.92rem; line-height: 1.7; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a {
  text-decoration: none;
  color: var(--paper);
  opacity: 0.85;
  transition: opacity .2s ease;
}
.footer-col a:hover { opacity: 1; color: var(--rose-soft); }
.footer-pending { font-style: italic; opacity: 0.55; }

.footer-wordmark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0 -20px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 6rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  padding: 0.1em 0.15em;
  transform: skewX(-6deg);
}
.fw-letter {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transform: scale(0);
  opacity: 0;
  overflow: visible;
}
.fw-space {
  display: inline-block;
  width: 0.25em;
}
.footer-wordmark.in-view .fw-letter {
  animation: fw-pop .8s cubic-bezier(.34,1.56,.64,1) forwards;
  animation-delay: var(--fw-d, 0s);
}
@keyframes fw-pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-wordmark .fw-letter { animation: none; transform: none; opacity: 1; }
}
.fw-base {
  display: inline-block;
  color: var(--paper-3);
  opacity: 0.22;
  transition: opacity .25s ease;
}
.fw-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 0% center;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  opacity: 0;
  transition: opacity .25s ease, background-position 3s ease-in-out;
  pointer-events: none;
}
.fw-letter:hover .fw-base { opacity: 0; }
.fw-letter:hover .fw-img  { opacity: 1; background-position: 30% center; }
.fw-sweep {
  position: absolute;
  inset: 0;
  color: var(--champagne);
  opacity: 0;
  pointer-events: none;
}
.footer-wordmark.swept .fw-sweep {
  animation: fw-sweep .55s ease-in-out forwards;
  animation-delay: var(--fw-sd, 0s);
}
@keyframes fw-sweep {
  0%, 100% { opacity: 0; }
  20%, 70% { opacity: 1; }
}
}
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(244,238,227,.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.55;
}

/* =============== WhatsApp flutuante =============== */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 32px rgba(90, 46, 55, 0.45);
  transition: transform .25s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; }

/* =============== Responsive =============== */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .site-header { padding: 8px 8px 8px 16px; max-width: 560px; }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { max-width: 100%; align-items: flex-start; gap: 28px; }
  .hero-photos { height: clamp(380px, 60vh, 520px); gap: 14px; }
  .hero-photo figcaption { opacity: 1; transform: translateY(0); }

  .services-hover-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-stage { order: 1; }
  .services-titles { order: 2; }
  .services-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .services-images { aspect-ratio: 16 / 11; max-height: 400px; }

  .duo { grid-template-columns: 1fr; }
  .duo-block { padding: 56px 28px; min-height: 480px; }

  .testimonials-columns { gap: 16px; }
  .tc-col-3 { display: none; }

  .sobre-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    min-height: auto;
  }
  .sobre-left { order: 2; max-width: 480px; margin: 0 auto; align-items: center; }
  .sobre-center { order: 1; min-height: 460px; }
  .sobre-portrait { width: clamp(200px, 50vw, 300px); transform: translate(-50%, var(--portrait-y, 0px)) scale(1.5); }
  .sobre-right { order: 3; justify-content: center; }
  .sobre-display { text-align: center; }
}

@media (max-width: 880px) {
  .steps-track .step-card { flex: 0 0 280px; height: 440px; }
  .step-image { height: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  :root { --pad-section-y: 80px; --pad-section-x: 22px; }

  .promo-bar { font-size: 0.62rem; padding: 8px 14px; gap: 6px; }
  .hero-photos { height: clamp(340px, 70vw, 460px); gap: 12px; }
  .hero-photo { border-radius: 14px; }

  .footer-wordmark { font-size: 18vw; }
}

@media (max-width: 540px) {
  .testimonials-columns { gap: 12px; max-height: 620px; }
  .tc-col-2 { display: none; }
  .tc-card { padding: 24px 22px; border-radius: 18px; }
  .hero-h1 { font-size: 2.2rem; }

  .sobre-hero { padding: 56px 22px 40px; }
  .sobre-top { margin-bottom: 28px; }
  .sobre-display { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .sobre-circle { width: 72vw; height: 72vw; }
  .sobre-portrait { width: 50vw; transform: translate(-50%, var(--portrait-y, 0px)) scale(1.5); }

  .mobile-drawer { padding: 88px 24px 32px; }
  .drawer-nav a { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* =============== Mobile-first refinements (≤768px) =============== */
@media (max-width: 768px) {
  :root { --pad-section-y: 64px; --pad-section-x: 20px; }

  /* Hero V2 — stack imagem-em-cima, texto-embaixo (vibe mobile-first) */
  .hero.hero-v2 {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .hero-v2-left {
    flex: 1 1 100%;
    padding: 32px 22px 56px;
    gap: 28px;
  }
  .hero-v2-right {
    flex: 1 1 100%;
    width: 100%;
    min-height: 64vh;
    max-height: 70vh;
    clip-path: none !important;
    animation: none;
  }
  .hero-v2-h1 { font-size: clamp(2.6rem, 11vw, 3.6rem); }
  .hero-v2-sub { font-size: 1rem; max-width: 100%; }
  .hero-v2-foot {
    grid-template-columns: 1fr;
    gap: 14px;
    font-size: 0.85rem;
  }
  .hero-v2-rule { width: 56px; }

  /* Logo da hero — escala normal no mobile, centralizada */
  .hero-v2-logo {
    transform: none;
    max-width: 180px;
  }
  .hero-v2-brand {
    margin-bottom: 4px;
    align-self: center;
    justify-content: center;
  }

  /* Header — barra slim full-width substituindo o pill no mobile */
  .header-wrap {
    top: 0;
    padding: 0;
  }
  .header-wrap.scrolled .site-header {
    box-shadow: 0 4px 14px rgba(26,23,21,.12);
  }
  .site-header {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--rule);
    padding: 12px 16px;
    gap: 12px;
    background: var(--paper);
    box-shadow: none;
  }
  .brand-words { display: flex !important; }
  .brand-l1 { font-size: 0.54rem; letter-spacing: 0.28em; }
  .brand-l2 { font-size: 0.95rem; }
  .promo-bar { font-size: 0.6rem; padding: 8px 12px; gap: 4px; }
  .promo-bar .dot { display: none; }
  .nav-toggle { width: 40px; height: 40px; }

  /* Steps — empilhar cards verticalmente, full-width */
  .steps-slider.steps-static .steps-track {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    margin: 0;
  }
  .steps-slider.steps-static .steps-track .step-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
    height: auto;
    min-height: 460px;
  }
  .step-image { height: 200px; }
  .step-title { font-size: 1.6rem; }
  .step-text { font-size: 1rem; }

  /* Services — imagem primeiro, títulos depois, espaçamento ajustado */
  .services-hover-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto;
    gap: 28px;
  }
  .services-titles {
    grid-row: 2;
    grid-column: 1;
    gap: 4px;
  }
  .services-images {
    grid-row: 1;
    grid-column: 1;
    aspect-ratio: 4 / 3;
    max-height: 320px;
  }
  .services-meta {
    grid-row: 3;
    grid-column: 1;
    min-height: auto;
  }
  .services-title { font-size: clamp(1.4rem, 6.5vw, 2rem); }

  /* Sobre — ordem editorial: headline leva, portrait conecta, quote sustenta */
  .sobre-hero { padding: 56px 20px 0; }
  .sobre-inner { gap: 0; }
  .sobre-right { order: 1; justify-content: center; padding-left: 0; padding-bottom: 28px; }
  .sobre-center { order: 2; min-height: auto; height: clamp(440px, 78vw, 560px); margin-bottom: 0; }
  .sobre-left {
    order: 3;
    max-width: none;
    align-items: center;
    text-align: center;
    background: var(--ink);
    color: var(--paper);
    margin: 0 -20px;
    padding: 36px 24px 48px;
  }
  .sobre-circle { width: clamp(240px, 62vw, 340px); height: clamp(240px, 62vw, 340px); top: 38%; }
  .sobre-portrait {
    width: auto;
    max-width: none;
    transform: translate(-50%, var(--portrait-y, 0px));
    height: 100%;
  }
  .sobre-display {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
    text-align: center;
    white-space: normal;
    line-height: 1.05;
  }
  .sobre-quote { align-items: center; }
  .sobre-quote p {
    font-size: 1.02rem;
    max-width: 32ch;
    margin: 0 auto;
    color: var(--paper);
  }
  .sobre-quote cite {
    text-align: center;
    color: rgba(250, 246, 238, 0.55);
  }
  .sobre-link {
    align-self: center;
    color: var(--paper);
  }
  .sobre-link::after { background: var(--champagne); }
  .sobre-top { padding: 0 4px; }
  .sobre-burger { font-size: 0.9rem; }

  /* Duo block — marquee em coluna única, mapa decorativo escondido no mobile */
  .duo-block { padding: 44px 22px; min-height: auto; }
  .duo-h3 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .duo-map-decor { display: none; }
  .duo-marquee {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% + 44px);
    margin: 24px -22px -44px;
    height: 360px;
  }
  .dm-photo { border-width: 4px; border-radius: 10px; }

  /* Testimonials — coluna única, mais compacta */
  .testimonials-columns {
    grid-template-columns: 1fr !important;
    max-height: 720px;
  }
  .tc-col-2, .tc-col-3 { display: none; }
  .testimonials-h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .testimonials-sub { font-size: 1rem; }

  /* FAQ — pills wrap melhor, cards mais compactos */
  .faq-h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .faq-tab { padding: 8px 12px; font-size: 0.82rem; }
  .faq-item summary { padding: 16px 18px; font-size: 0.98rem; }
  .faq-item p { padding: 0 18px 16px; font-size: 0.94rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 22px; }
  .footer-wordmark {
    font-size: clamp(2.5rem, 14vw, 5rem);
    margin: 16px 0 -8px;
    padding: 0.1em 0.1em;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 24px 22px;
    font-size: 0.78rem;
  }

  /* WhatsApp flutuante — não cobrir CTA */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  /* Tap targets mínimos */
  .btn-pill, .nav-toggle, .drawer-close, .menu-item {
    min-height: 44px;
  }
}

/* =============== Tweaks finos para telas muito estreitas (≤420px) =============== */
@media (max-width: 420px) {
  :root { --pad-section-y: 56px; --pad-section-x: 18px; }
  .hero-v2-h1 { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .hero-v2-left { padding: 28px 18px 48px; gap: 22px; }
  .sobre-quote p { font-size: 1rem; }
  .step-title { font-size: 1.4rem; }
  .duo-block { padding: 36px 18px; }
  .faq-tab { padding: 7px 10px; font-size: 0.78rem; }
}

/* =============== Reveal on scroll =============== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.hero.reveal { opacity: 1; transform: none; }

/* =============== Página legal (privacidade) =============== */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px var(--pad-section-x) 56px;
  position: relative;
  z-index: 1;
  color: var(--ink);
}
.legal-head { margin-bottom: 56px; }
.legal-back {
  display: inline-block;
  text-decoration: none;
  color: var(--ink-3);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  transition: color .25s ease;
}
.legal-back:hover { color: var(--wine); }
.legal-eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
}
.legal-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 16px;
  font-weight: 600;
}
.legal-h1 em { color: var(--wine); }
.legal-updated {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-3);
  font-style: italic;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  margin: 40px 0 12px;
  color: var(--ink);
}
.legal-body p {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-body ul {
  padding-left: 22px;
  margin: 0 0 14px;
  color: var(--ink-2);
}
.legal-body li { margin-bottom: 6px; line-height: 1.65; }
.legal-body a {
  color: var(--wine);
  border-bottom: 1px solid rgba(90,46,55,.35);
  text-decoration: none;
  transition: border-color .2s ease;
}
.legal-body a:hover { border-color: var(--wine); }
.legal-foot {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--ink-3);
  flex-wrap: wrap;
}
