/* ============================================================
   Yanni Vitorino · Nutricionista
   Luxo silencioso: creme + bordô, serif editorial, centrado
   Mobile first
   ============================================================ */

:root {
  --cream: #f6f0e4;
  --cream-soft: #efe7d7;
  --cream-deep: #e7dcc8;
  --wine: #5e1420;
  --wine-soft: #7a2231;
  --wine-deep: #43101a;
  --gold: #a87c40;
  --gold-soft: #cbb28c;
  --ink: #2e1a1a;
  --ink-soft: #6d5a55;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Avenir Next", "Helvetica Neue", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-align: center;
}

::selection { background: var(--wine); color: var(--cream); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* fine grain over everything, very quiet */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.wrap {
  width: min(100% - 2.75rem, 1120px);
  margin-inline: auto;
}

/* ---------- typography helpers ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  color: var(--wine);
  text-wrap: balance;
}

h1 { font-size: clamp(2.9rem, 11vw, 5.6rem); }
h2 { font-size: clamp(2.25rem, 7.4vw, 3.7rem); }

h1 em, h2 em, .quote em {
  font-style: italic;
  font-weight: 500;
}

.lead {
  max-width: 34em;
  margin-inline: auto;
  color: #55413d;
}
.lead strong { font-weight: 500; color: var(--wine); }

/* ---------- buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.02rem 2.3rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--wine);
  color: var(--cream);
  overflow: hidden;
  transition: color 0.45s var(--ease-out), transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wine-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(94, 20, 32, 0.55); }
.btn span { position: relative; z-index: 1; }
.btn .arr {
  position: relative;
  z-index: 1;
  transition: transform 0.45s var(--ease-out);
}
.btn:hover .arr { transform: translateX(5px); }

.btn.ghost {
  background: transparent;
  color: var(--wine);
  box-shadow: inset 0 0 0 1px rgba(94, 20, 32, 0.35);
}
.btn.ghost::before { background: var(--wine); }
.btn.ghost:hover { color: var(--cream); box-shadow: inset 0 0 0 1px var(--wine); }

.btn.light {
  background: var(--cream);
  color: var(--wine);
}
.btn.light::before { background: #fff; }
.btn.light:hover { color: var(--wine-deep); box-shadow: 0 18px 34px -14px rgba(0, 0, 0, 0.4); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}
.site-header .bar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header.scrolled {
  background: rgba(246, 240, 228, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(94, 20, 32, 0.09);
}
.menu-open .site-header {
  z-index: 80;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.menu-open .brand { color: var(--cream); }

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--serif);
  color: var(--wine);
  line-height: 1;
}
.brand .mono {
  font-size: 1.9rem;
  font-style: italic;
  font-weight: 600;
}
.brand .name {
  display: none;
  font-size: 0.68rem;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.main-nav { display: none; }

.header-cta { display: none; }

.menu-btn {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 4px;
  z-index: 80;
}
.menu-btn i {
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--wine);
  transition: transform 0.45s var(--ease-out), opacity 0.3s, background 0.45s;
}
.menu-open .menu-btn i { background: var(--cream); }
.menu-open .menu-btn i:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-open .menu-btn i:nth-child(2) { opacity: 0; }
.menu-open .menu-btn i:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--wine-deep);
  clip-path: circle(0% at calc(100% - 44px) 38px);
  transition: clip-path 0.7s var(--ease-out);
  visibility: hidden;
}
.menu-open .mobile-menu { clip-path: circle(150% at calc(100% - 44px) 38px); visibility: visible; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--cream);
  padding: 0.45rem 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.6s var(--ease-out), color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-soft); font-style: italic; }
.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }
.menu-open .mobile-menu a:nth-child(1) { transition-delay: 0.18s; }
.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.26s; }
.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.34s; }
.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.42s; }
.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.5s; }
.menu-open .mobile-menu a:nth-child(6) { transition-delay: 0.58s; }
.mobile-menu .menu-note {
  margin-top: 1.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0;
  transition: opacity 0.5s ease 0.66s;
}
.menu-open .mobile-menu .menu-note { opacity: 0.85; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 3.2rem);
  background:
    radial-gradient(58% 42% at 50% 30%, rgba(178, 138, 84, 0.14), transparent 70%),
    radial-gradient(90% 60% at 50% 100%, rgba(94, 20, 32, 0.10), transparent 62%),
    var(--cream);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .eyebrow { margin-bottom: 1.4rem; }

.hero h1 {
  max-width: 9.5em;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.hero h1 em,
.svc-hero h1 em {
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after,
.svc-hero h1 em::after {
  content: "";
  position: absolute;
  left: 1%;
  right: 1%;
  bottom: -0.1em;
  height: 0.16em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M3 9C30 3 90 3 117 7' fill='none' stroke='%23a87c40' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  opacity: 0.85;
}

.hero .lead {
  margin-top: 1.5rem;
  max-width: 30em;
  font-size: 1.13rem;
  font-weight: 400;
  color: #4a3733;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.hero-figure {
  position: relative;
  margin-top: 2.6rem;
  width: min(88vw, 560px);
}

/* giant script name behind her, part of the background itself */
.hero-figure .ghost-name {
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(5rem, 24vw, 11rem);
  line-height: 0.9;
  color: rgba(94, 20, 32, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-figure .glow {
  position: absolute;
  inset: auto 0 -4%;
  height: 78%;
  background: radial-gradient(50% 62% at 50% 78%, rgba(94, 20, 32, 0.16), transparent 72%);
  filter: blur(6px);
  pointer-events: none;
}

/* animated light orbs drifting behind her */
.hero-figure .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  pointer-events: none;
}
.hero-figure .orb.o1 {
  width: 66%;
  aspect-ratio: 1;
  left: -12%;
  top: 4%;
  background: radial-gradient(circle, rgba(178, 138, 84, 0.55), transparent 66%);
  animation: drift1 11s ease-in-out infinite alternate;
}
.hero-figure .orb.o2 {
  width: 58%;
  aspect-ratio: 1;
  right: -10%;
  top: 20%;
  background: radial-gradient(circle, rgba(122, 34, 49, 0.42), transparent 66%);
  animation: drift2 14s ease-in-out infinite alternate;
}
.hero-figure .orb.o3 {
  width: 44%;
  aspect-ratio: 1;
  left: 28%;
  top: -6%;
  background: radial-gradient(circle, rgba(203, 178, 140, 0.5), transparent 68%);
  animation: drift1 17s ease-in-out infinite alternate-reverse;
}
@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(7%, -6%) scale(1.14); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1.06); }
  to { transform: translate(-8%, 7%) scale(0.94); }
}

/* fine gold rings slowly orbiting behind her */
.hero-figure .rings {
  position: absolute;
  width: 108%;
  left: -4%;
  top: -7%;
  pointer-events: none;
  color: var(--gold);
}
.hero-figure .rings .spin {
  transform-origin: 50% 50%;
  animation: ringspin 42s linear infinite;
}
.hero-figure .rings .spin-r {
  transform-origin: 50% 50%;
  animation: ringspin 60s linear infinite reverse;
}
@keyframes ringspin {
  to { transform: rotate(360deg); }
}

.hero-figure img {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 82%, transparent 99%);
  filter: drop-shadow(0 30px 46px rgba(67, 16, 26, 0.28));
}

/* little hand drawn sparkles */
.spark {
  position: absolute;
  color: var(--gold);
  opacity: 0.8;
  animation: twinkle 3.6s ease-in-out infinite;
  pointer-events: none;
}
.spark svg { width: 100%; height: 100%; }
.spark.s1 { width: 20px; top: 16%; left: 7%; animation-delay: 0.4s; }
.spark.s2 { width: 13px; top: 9%; right: 10%; animation-delay: 1.4s; }
.spark.s3 { width: 16px; bottom: 30%; right: 4%; animation-delay: 2.2s; }
@keyframes twinkle {
  0%, 100% { transform: scale(0.6) rotate(0deg); opacity: 0.25; }
  50% { transform: scale(1) rotate(20deg); opacity: 0.9; }
}

/* hero entrance */
.hero [data-hero] {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1.1s var(--ease-out) forwards;
}
.hero [data-hero="1"] { animation-delay: 0.15s; }
.hero [data-hero="2"] { animation-delay: 0.3s; }
.hero [data-hero="3"] { animation-delay: 0.45s; }
.hero [data-hero="4"] { animation-delay: 0.6s; }
.hero [data-hero="5"] { animation-delay: 0.75s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- marquee ribbon ---------- */

.ribbon {
  position: relative;
  background: var(--wine);
  color: var(--cream);
  padding: 1.05rem 0;
  overflow: hidden;
  transform: rotate(-1.15deg) scale(1.03);
  transform-origin: center;
  box-shadow: 0 16px 38px -20px rgba(67, 16, 26, 0.6);
}
.ribbon .track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.ribbon:hover .track { animation-play-state: paused; }
.ribbon .set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ribbon .set span {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 0 1.4rem;
}
.ribbon .set i {
  color: var(--gold-soft);
  font-style: normal;
  font-size: 0.8rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- generic section ---------- */

section { position: relative; }
.section { padding: 5.5rem 0; }
.section-head { margin-bottom: 3rem; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p {
  margin-top: 1.15rem;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- sobre ---------- */

.sobre { overflow: hidden; }

.sobre-figure {
  position: relative;
  width: min(78vw, 430px);
  margin: 0 auto 2.4rem;
}
.sobre-figure img {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 34px 60px -30px rgba(67, 16, 26, 0.45);
}

.sobre-text p + p { margin-top: 1.15rem; }
.sobre-text .lead strong { font-weight: 500; color: var(--wine); }

.signature {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.signature .sig {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 2.3rem;
  color: var(--wine);
  line-height: 1;
}
.signature .crn {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.sobre-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.sobre-pills li {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--wine);
  padding: 0.62rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(94, 20, 32, 0.28);
  background: rgba(255, 255, 255, 0.32);
}

/* ---------- especialidades ---------- */

.esp { background: linear-gradient(to bottom, var(--cream), var(--cream-soft) 55%, var(--cream)); }

.esp-grid {
  display: grid;
  gap: 1.15rem;
}

.esp-card {
  position: relative;
  padding: 2.9rem 1.9rem 2.6rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(94, 20, 32, 0.12);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out),
    border-color 0.55s;
}
.esp-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 50px -30px rgba(67, 16, 26, 0.35);
  border-color: rgba(178, 138, 84, 0.5);
}
.esp-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 0.6s var(--ease-out);
}
.esp-card:hover::after { width: 78%; }

a.esp-card {
  display: block;
  color: inherit;
}
.esp-card .card-go {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--wine);
  border-bottom: 1px solid rgba(94, 20, 32, 0.3);
  padding-bottom: 0.35rem;
  transition: color 0.35s, border-color 0.35s, gap 0.35s var(--ease-out);
}
.esp-card:hover .card-go { color: var(--gold); border-color: var(--gold); gap: 0.8rem; }

.esp-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.24em;
  color: var(--gold);
}
.esp-card h3 {
  font-size: 1.9rem;
  margin: 0.7rem 0 0.8rem;
}
.esp-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 26em;
  margin-inline: auto;
}

/* ---------- ornamental divider ---------- */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 4.2rem 1.5rem;
  color: var(--gold);
}
.divider .line {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}
.divider .line:last-child {
  background: linear-gradient(90deg, currentColor, transparent);
}
.divider svg { flex-shrink: 0; }
.divider .branch { animation: sway 7s ease-in-out infinite alternate; transform-origin: bottom center; }
@keyframes sway {
  from { transform: rotate(-4deg); }
  to { transform: rotate(4deg); }
}

/* ---------- método: stacking cards ---------- */

.metodo { padding-bottom: 3rem; }

.stack {
  --stack-top: calc(var(--header-h) + 1.4rem);
  display: grid;
  gap: 1.4rem;
}

.stack-card {
  position: sticky;
  top: var(--stack-top);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 380px;
  padding: 3rem 1.8rem;
  border-radius: 26px;
  background: var(--cream-soft);
  border: 1px solid rgba(94, 20, 32, 0.12);
  box-shadow: 0 -14px 40px -26px rgba(67, 16, 26, 0.4);
  transform-origin: center top;
  will-change: transform, filter;
  overflow: hidden;
}
.stack-card:nth-child(2) { top: calc(var(--stack-top) + 14px); }
.stack-card:nth-child(3) { top: calc(var(--stack-top) + 28px); }
.stack-card:nth-child(4) { top: calc(var(--stack-top) + 42px); }

.stack-card.tinted {
  background: linear-gradient(150deg, var(--wine), var(--wine-deep));
  border-color: rgba(255, 255, 255, 0.08);
}
.stack-card.tinted h3 { color: var(--cream); }
.stack-card.tinted p { color: rgba(246, 240, 228, 0.82); }
.stack-card.tinted .step-num { color: rgba(203, 178, 140, 0.85); }
.stack-card.tinted::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 90% at 50% -10%, rgba(203, 178, 140, 0.18), transparent 60%);
  pointer-events: none;
}

.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.stack-card h3 { font-size: clamp(1.75rem, 5.4vw, 2.5rem); }
.stack-card p {
  max-width: 30em;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ---------- quote ---------- */

.quote-sec { padding: 5rem 0 5.5rem; }
.quote {
  position: relative;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 5.6vw, 2.9rem);
  line-height: 1.3;
  color: var(--wine);
  max-width: 21em;
  margin-inline: auto;
}
.quote .qmark {
  display: block;
  font-size: 4.6rem;
  line-height: 0.4;
  margin-bottom: 1.6rem;
  color: var(--gold);
  font-style: italic;
}
.quote-author {
  margin-top: 1.8rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- feed / conteúdo ---------- */

.feed { padding-bottom: 6rem; }

.feed-marquee {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  padding: 1.2rem 0 1.6rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.feed-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.feed-marquee:hover .feed-track { animation-play-state: paused; }
.feed-set {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}
.feed-card {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 22px 40px -24px rgba(67, 16, 26, 0.45);
  transition: transform 0.55s var(--ease-out);
}
.feed-set .feed-card:nth-child(odd) { transform: rotate(1.3deg); }
.feed-set .feed-card:nth-child(even) { transform: rotate(-1.3deg) translateY(10px); }
.feed-card:hover { transform: rotate(0) translateY(-4px) scale(1.03); z-index: 2; }
.feed-card img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

.feed-cta { margin-top: 2.4rem; }
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--wine);
  border-bottom: 1px solid rgba(94, 20, 32, 0.35);
  padding-bottom: 0.5rem;
  transition: color 0.35s, border-color 0.35s, letter-spacing 0.5s var(--ease-out);
}
.ig-link:hover { color: var(--gold); border-color: var(--gold); letter-spacing: 0.3em; }
.ig-link svg { width: 17px; height: 17px; }

/* ---------- CTA final ---------- */

.cta {
  position: relative;
  background:
    radial-gradient(80% 90% at 50% -20%, rgba(203, 178, 140, 0.2), transparent 60%),
    linear-gradient(165deg, var(--wine) 0%, var(--wine-deep) 90%);
  color: var(--cream);
  padding: 6rem 0 6.5rem;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(203, 178, 140, 0.28);
  border-radius: 20px;
  pointer-events: none;
}
.cta h2 { color: var(--cream); }
.cta .eyebrow { color: var(--gold-soft); }
.cta p {
  color: rgba(246, 240, 228, 0.82);
  max-width: 30em;
  margin: 1.3rem auto 0;
}
.cta .hero-actions { margin-top: 2.4rem; }
.cta .mono-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(7rem, 30vw, 14rem);
  line-height: 1;
  position: absolute;
  bottom: -0.32em;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(246, 240, 228, 0.05);
  pointer-events: none;
  user-select: none;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--cream);
  padding: 3.4rem 0 2.6rem;
}
.site-footer .brand { justify-content: center; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem 2rem;
  margin: 1.9rem 0;
}
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--wine); }
.footer-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  opacity: 0.8;
}
.footer-note .sep { color: var(--gold); margin: 0 0.5rem; }

/* ---------- service pages ---------- */

.svc-hero {
  position: relative;
  padding: calc(var(--header-h) + 4.4rem) 0 4rem;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(178, 138, 84, 0.16), transparent 70%),
    var(--cream);
  overflow: hidden;
}
.svc-hero .roman {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  color: rgba(94, 20, 32, 0.07);
  pointer-events: none;
  user-select: none;
}
.svc-hero .roman svg {
  display: block;
  width: clamp(15rem, 52vw, 24rem);
  height: auto;
  animation: markfloat 9s ease-in-out infinite alternate;
}
@keyframes markfloat {
  from { transform: translateY(-8px) rotate(-2deg); }
  to { transform: translateY(10px) rotate(2.5deg); }
}
.svc-hero .wrap { position: relative; }
.svc-hero h1 { font-weight: 700; letter-spacing: -0.015em; }
.svc-hero .lead { margin-top: 1.4rem; font-size: 1.08rem; }
.svc-hero .hero-actions { margin-top: 2.2rem; }

.check-list {
  display: grid;
  gap: 0.85rem;
  max-width: 620px;
  margin: 2.8rem auto 0;
}
.check-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.05rem 1.5rem;
  border: 1px solid rgba(94, 20, 32, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.99rem;
  color: #55413d;
  transition: border-color 0.4s, transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.check-item:hover {
  border-color: rgba(178, 138, 84, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 20px 34px -26px rgba(67, 16, 26, 0.35);
}
.check-item svg { flex-shrink: 0; color: var(--gold); }

.band {
  position: relative;
  background: linear-gradient(150deg, var(--wine), var(--wine-deep));
  color: var(--cream);
  padding: 4.6rem 0;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 100% at 50% -20%, rgba(203, 178, 140, 0.18), transparent 62%);
  pointer-events: none;
}
.band .quote {
  color: var(--cream);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
}
.band .quote .qmark { color: var(--gold-soft); }

.other-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.4rem;
}

/* ---------- inner page (acompanhamento) ---------- */

.page-hero {
  padding: calc(var(--header-h) + 4.2rem) 0 3.6rem;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(178, 138, 84, 0.16), transparent 70%),
    var(--cream);
}
.page-hero .lead { margin-top: 1.3rem; }

.inclui-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 3rem;
}
.inclui-card {
  padding: 2.4rem 1.7rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(94, 20, 32, 0.12);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
}
.inclui-card:hover {
  transform: translateY(-6px);
  border-color: rgba(178, 138, 84, 0.5);
  box-shadow: 0 26px 44px -28px rgba(67, 16, 26, 0.35);
}
.inclui-card .ic,
.esp-card .ic {
  width: 46px;
  height: 46px;
  margin: 0 auto 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(178, 138, 84, 0.55);
  color: var(--wine);
}
.inclui-card .ic svg,
.esp-card .ic svg { width: 20px; height: 20px; }
.esp-card .ic {
  margin-bottom: 0.4rem;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s;
}
.esp-card:hover .ic {
  transform: translateY(-3px) rotate(-6deg);
  border-color: var(--gold);
  background: rgba(178, 138, 84, 0.1);
}
.inclui-card h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.inclui-card p { font-size: 0.95rem; color: var(--ink-soft); }

/* timeline */
.jornada { background: linear-gradient(to bottom, var(--cream), var(--cream-soft) 60%, var(--cream)); }
.timeline {
  position: relative;
  margin-top: 3rem;
  display: grid;
  gap: 2.6rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(178, 138, 84, 0.7), transparent);
}
.t-item {
  position: relative;
  padding-top: 2.2rem;
}
.t-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px var(--cream-soft);
}
.t-item .t-step {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.26em;
  font-size: 0.95rem;
  color: var(--gold);
}
.t-item h3 { font-size: 1.6rem; margin: 0.45rem 0 0.55rem; }
.t-item p { max-width: 30em; margin-inline: auto; font-size: 0.98rem; color: var(--ink-soft); }

/* FAQ */
.faq-list {
  margin-top: 2.6rem;
  text-align: center;
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
  margin-inline: auto;
}
.faq-item {
  border: 1px solid rgba(94, 20, 32, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.faq-item.open {
  border-color: rgba(178, 138, 84, 0.55);
  box-shadow: 0 20px 36px -26px rgba(67, 16, 26, 0.3);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wine);
}
.faq-q .q-text { flex: 1; }
.faq-q .plus {
  position: relative;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.45s var(--ease-out);
}
.faq-q .plus::after { transform: rotate(90deg); }
.faq-item.open .plus::after { transform: rotate(0deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-out);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 1.6rem 1.3rem;
  text-align: center;
  font-size: 0.97rem;
  color: var(--ink-soft);
}

/* ---------- desktop ---------- */

@media (min-width: 860px) {
  :root { --header-h: 88px; }

  .brand .name { display: block; }

  .menu-btn, .mobile-menu { display: none; }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
  }
  .main-nav a {
    position: relative;
    font-size: 0.74rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--ink);
    padding: 0.4rem 0;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.45s var(--ease-out);
  }
  .main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

  .header-cta { display: inline-flex; padding: 0.78rem 1.7rem; }

  .section { padding: 7.5rem 0; }

  .hero { padding-top: calc(var(--header-h) + 4.5rem); }
  .hero-figure { margin-top: 3rem; }

  .esp-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

  .stack-card { min-height: 430px; }

  .feed-card { height: 340px; }

  .inclui-grid { grid-template-columns: repeat(3, 1fr); }

  .divider .line { max-width: 300px; }
}

@media (min-width: 1180px) {
  .hero h1 { max-width: 11em; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
