/* ============================================================================
   VAL RIBEIRO MAKEUP — style.css
   Sistema visual: claro, luminoso e sofisticado.
   Paleta extraída da logo (#BD4A71) + neutros champagne/nude/marfim.
   ========================================================================= */

/* ---------------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------------ */
:root {
  /* Neutros luminosos — base do site */
  --ivory:       #FDFBF8;
  --porcelain:   #F7F2ED;
  --linen:       #EFE6DE;
  --nude:        #E4D3C6;

  /* Metais quentes */
  --champagne:   #DEC3A0;
  --champagne-l: #F0E2CC;
  --gold:        #B99457;
  --gold-soft:   #D8BC8C;

  /* Marca — rosa da logo */
  --rose:        #BD4A71;   /* cor exata extraída da logo */
  --rose-deep:   #97385A;
  --rose-mid:    #D07A96;
  --rose-soft:   #E7B3C4;
  --rose-tint:   #FAEFF3;

  /* Tinta */
  --ink:         #1C1A1B;
  --ink-2:       #4A4344;
  --taupe:       #8B7F79;
  --taupe-l:     #B3A9A2;

  /* Linhas e sombras (quentes, nunca cinza puro) */
  --line:        rgba(28, 26, 27, .10);
  --line-soft:   rgba(28, 26, 27, .06);
  --shadow-sm:   0 2px 10px rgba(120, 90, 80, .06);
  --shadow-md:   0 18px 50px -20px rgba(120, 85, 80, .22);
  --shadow-lg:   0 40px 90px -40px rgba(120, 80, 80, .32);
  --shadow-rose: 0 24px 60px -24px rgba(189, 74, 113, .38);

  /* Tipografia */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Ritmo */
  --container:    1320px;
  --gutter:       clamp(1.25rem, 4vw, 3.5rem);
  --section-y:    clamp(5.5rem, 11vw, 10.5rem);
  --radius:       4px;
  --radius-lg:    18px;

  /* Movimento */
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.33, 1, .68, 1);
  --dur:       .7s;
}

/* ---------------------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
/* Lenis assume o controle do scroll; desliga o nativo quando ativo */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1rem, .96rem + .18vw, 1.075rem);
  line-height: 1.72;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Grão sutil — dá "papel" ao fundo e evita o branco chapado */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--rose); color: #fff; }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  top: -100px; left: 1rem;
  z-index: 9999;
  padding: .75rem 1.25rem;
  background: var(--ink);
  color: var(--ivory);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Barra de rolagem */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--porcelain); }
::-webkit-scrollbar-thumb { background: var(--nude); border-radius: 9px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose-soft); }

/* ---------------------------------------------------------------------------
   3. TIPOGRAFIA
   ------------------------------------------------------------------------ */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.015em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}

h1, h2, h3, h4 { font-weight: 400; }

.section__title {
  font-size: clamp(2.4rem, 1.1rem + 5.4vw, 5rem);
  margin-bottom: 1.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.6rem;
}
.eyebrow__line {
  width: clamp(28px, 4vw, 54px);
  height: 1px;
  background: linear-gradient(90deg, var(--rose), transparent);
  flex: none;
}

.lead {
  font-size: clamp(1.1rem, 1rem + .5vw, 1.4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.6;
}

p { color: var(--ink-2); }
p + p { margin-top: 1.15rem; }

.section__desc {
  color: var(--taupe);
  max-width: 46ch;
  font-size: 1.02rem;
}

/* ---------------------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

main { position: relative; z-index: 2; }

.section {
  position: relative;
  padding-block: var(--section-y);
}

/* Fundos alternados — sempre claros */
.section--tint {
  background: linear-gradient(180deg, var(--porcelain), #FBF7F3);
}
.section--tint::before,
.section--tint::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line-soft);
}
.section--tint::before { top: 0; }
.section--tint::after  { bottom: 0; }

.section__head { margin-bottom: clamp(2.75rem, 5vw, 4.5rem); }

.section__head--split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: end;
}
.section__head--split .section__title { margin-bottom: 0; }
.section__head--split .section__desc { padding-bottom: .6rem; }

/* ---------------------------------------------------------------------------
   5. BOTÕES
   ------------------------------------------------------------------------ */
.btn {
  --btn-py: .95rem;
  --btn-px: 1.9rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color .45s var(--ease), transform .45s var(--ease),
              box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.btn i { font-size: 1em; }

/* preenchimento animado */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .55s var(--ease);
}

.btn--solid {
  background: var(--rose);
  color: #fff;
  box-shadow: var(--shadow-rose);
}
.btn--solid::after {
  background: var(--ink);
  transform-origin: left center;
}
.btn--solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -22px rgba(28, 26, 27, .45);
}
.btn--solid:hover::after { transform: scaleX(1); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover {
  color: var(--ivory);
  border-color: var(--ink);
  transform: translateY(-3px);
}
.btn--ghost:hover::after { transform: scaleX(1); transform-origin: left center; }

.btn--lg { --btn-py: 1.15rem; --btn-px: 2.4rem; font-size: .8rem; }
.btn--xl { --btn-py: 1.4rem; --btn-px: 3.2rem; font-size: .85rem; letter-spacing: .2em; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.8rem;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--line);
  transition: color .4s var(--ease), border-color .4s var(--ease), gap .4s var(--ease);
}
.link-arrow i { transition: transform .5s var(--ease); }
.link-arrow:hover { color: var(--rose); border-color: var(--rose); gap: 1.1rem; }
.link-arrow:hover i { transform: translateX(4px); }

/* Glassmorphism */
.glass {
  background: rgba(255, 253, 250, .62);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-md);
}

/* ---------------------------------------------------------------------------
   6. CENA 3D
   ------------------------------------------------------------------------ */
#scene-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
#scene-canvas.is-ready { opacity: 1; }

/* ---------------------------------------------------------------------------
   7. NAVEGAÇÃO
   ------------------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding-block: clamp(1rem, 2vw, 1.75rem);
  transition: padding .5s var(--ease), background .5s var(--ease),
              box-shadow .5s var(--ease), transform .5s var(--ease);
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253, 251, 248, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.nav.is-stuck { padding-block: .85rem; }
.nav.is-stuck::before { opacity: 1; }
.nav.is-hidden { transform: translateY(-105%); }

.nav__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo { flex: none; }
.nav__logo img {
  width: auto;
  height: clamp(30px, 3.4vw, 42px);
  transition: height .5s var(--ease);
}
.nav.is-stuck .nav__logo img { height: clamp(26px, 2.8vw, 34px); }

.nav__links {
  display: flex;
  gap: clamp(1.4rem, 2.6vw, 2.8rem);
  margin-left: auto;
}
.nav__links a {
  position: relative;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-block: .4rem;
  transition: color .4s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--rose); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { --btn-py: .7rem; --btn-px: 1.5rem; font-size: .7rem; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  flex: none;
  margin-left: auto;
}
.nav__toggle span {
  position: absolute;
  left: 50%;
  width: 18px; height: 1px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform .45s var(--ease), opacity .3s;
}
.nav__toggle span:nth-child(1) { top: 20px; }
.nav__toggle span:nth-child(2) { top: 26px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateX(-50%) translateY(3px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateX(-50%) translateY(-3px) rotate(-45deg); }

/* Menu mobile */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  padding: 7rem var(--gutter) 3rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s var(--ease);
  visibility: hidden;
}
.nav-mobile.is-open { clip-path: inset(0 0 0 0); visibility: visible; }

.nav-mobile__links { display: flex; flex-direction: column; gap: .35rem; }
.nav-mobile__links a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8vw, 2.9rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink);
  opacity: 0;
  transform: translateY(24px);
  transition: color .35s var(--ease);
}
.nav-mobile.is-open .nav-mobile__links a { animation: navItemIn .7s var(--ease) forwards; }
.nav-mobile__links a span {
  font-family: var(--font-sans);
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--rose-soft);
}
.nav-mobile__links a:hover { color: var(--rose); }

.nav-mobile__foot {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--taupe);
}
.nav-mobile__foot i { color: var(--rose); width: 1.2em; }

/* ---------------------------------------------------------------------------
   8. HERO
   ------------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(8rem, 14vh, 11rem) clamp(4rem, 8vh, 6rem);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -25%; right: -12%;
  width: min(78vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
              rgba(231, 179, 196, .40) 0%,
              rgba(222, 195, 160, .24) 38%,
              transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: clamp(3rem, 1.1rem + 7.4vw, 7.4rem);
  margin-block: .4rem 1.8rem;
}
.hero__title .line { display: block; overflow: hidden; }

.hero__sub {
  max-width: 46ch;
  color: var(--ink-2);
  font-size: clamp(1rem, .95rem + .35vw, 1.16rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 3.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero__meta li { display: flex; flex-direction: column; }
.hero__meta strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
}
.hero__meta span {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* Visual do hero */
.hero__visual { position: relative; }

.hero__figure {
  position: relative;
  overflow: hidden;
  border-radius: 300px 300px 22px 22px;
  box-shadow: var(--shadow-lg);
  background: var(--linen);
}
.hero__figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.04) contrast(1.02) brightness(1.03);
}
/* Camada quente: harmoniza o fundo cinza do estúdio com a paleta marfim */
.hero__figure-tone,
.frame__tone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(250, 239, 243, .30) 0%, transparent 42%),
    linear-gradient(0deg,   rgba(222, 195, 160, .26) 0%, transparent 45%);
  mix-blend-mode: soft-light;
}

.hero__figure--float {
  position: absolute;
  left: -8%; bottom: -6%;
  width: 42%;
  border-radius: 140px 140px 16px 16px;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--ivory);
}
.hero__figure--float img { object-position: center 25%; }

.hero__badge {
  position: absolute;
  top: 7%; right: -6%;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1.3rem;
  border-radius: 100px;
  font-size: .74rem;
  line-height: 1.45;
  letter-spacing: .04em;
  color: var(--ink);
}
.hero__badge i { color: var(--rose); font-size: 1rem; }
.hero__badge small {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* Indicador de scroll */
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.75rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, transparent, var(--rose));
  position: relative;
  overflow: hidden;
}
.hero__scroll-text {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-block: 1.1rem;
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--taupe);
  white-space: nowrap;
}
.marquee__track i { color: var(--rose-soft); font-style: normal; }

/* ---------------------------------------------------------------------------
   9. SOBRE
   ------------------------------------------------------------------------ */
.sobre__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.sobre__visual { position: relative; }

.frame {
  position: relative;
  overflow: hidden;
  background: var(--linen);
  box-shadow: var(--shadow-lg);
}
.frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02) brightness(1.03);
}
.frame--arch { border-radius: 260px 260px 20px 20px; }
.frame--small {
  position: absolute;
  right: -14%; bottom: -12%;
  width: 46%;
  border-radius: 130px 130px 14px 14px;
  border: 7px solid var(--ivory);
  box-shadow: var(--shadow-md);
}

.sobre__stamp {
  position: absolute;
  top: 6%; left: -9%;
  width: 104px; height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--champagne);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.sobre__stamp span {
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--taupe);
}
.sobre__stamp strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 2.2rem;
}
.chips li {
  padding: .5rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(255, 255, 255, .5);
  transition: border-color .4s var(--ease), color .4s var(--ease),
              background .4s var(--ease), transform .4s var(--ease);
}
.chips li:hover {
  border-color: var(--rose-soft);
  background: var(--rose-tint);
  color: var(--rose-deep);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------------------------
   10. DIFERENCIAIS (cards)
   ------------------------------------------------------------------------ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}

.card {
  position: relative;
  padding: clamp(2rem, 3vw, 2.75rem);
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease),
              border-color .6s var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(155deg, var(--rose-tint), rgba(255,255,255,0) 62%);
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-md);
  border-color: rgba(231, 179, 196, .55);
}
.card:hover::before { opacity: 1; }

.card__num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--linen);
  line-height: 1;
  transition: color .6s var(--ease);
}
.card:hover .card__num { color: var(--rose-soft); }

.card__icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose);
  font-size: 1.1rem;
  transition: transform .6s var(--ease), background .6s var(--ease), color .6s var(--ease);
}
.card:hover .card__icon {
  transform: rotate(-8deg) scale(1.06);
  background: var(--rose);
  color: #fff;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: .7rem;
}
.card p { font-size: .95rem; color: var(--taupe); }

/* ---------------------------------------------------------------------------
   11. SERVIÇOS (lista editorial)
   ------------------------------------------------------------------------ */
.services { border-top: 1px solid var(--line); }

.service {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3.5rem);
  padding-block: clamp(1.6rem, 2.6vw, 2.4rem);
  border-bottom: 1px solid var(--line);
  transition: padding-inline .6s var(--ease);
  isolation: isolate;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0 -1.5rem;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, var(--rose-tint), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity .55s var(--ease);
}
.service:hover::before { opacity: 1; }
.service:hover { padding-inline: 1.5rem; }

.service__idx {
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--rose-soft);
  transition: color .5s var(--ease);
}
.service:hover .service__idx { color: var(--rose); }

/* Grade de duas colunas: mantém todas as descrições alinhadas na mesma
   vertical, independentemente do tamanho do título. */
.service__body {
  display: grid;
  grid-template-columns: minmax(0, 21rem) minmax(0, 1fr);
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
}
.service h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1rem + 2.1vw, 2.9rem);
  font-weight: 300;
  line-height: 1.1;
  transition: color .5s var(--ease), transform .6s var(--ease);
}
.service:hover h3 { color: var(--rose); }
.service p { font-size: .95rem; color: var(--taupe); max-width: 42ch; }

.service__go {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  flex: none;
  transition: background .5s var(--ease), color .5s var(--ease),
              border-color .5s var(--ease), transform .5s var(--ease);
}
.service:hover .service__go {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: rotate(-45deg);
}

.service__link { position: absolute; inset: 0; }

/* ---------------------------------------------------------------------------
   12. PORTFÓLIO
   ------------------------------------------------------------------------ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}
.filter {
  padding: .6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: all .45s var(--ease);
}
.filter:hover { border-color: var(--rose-soft); color: var(--rose); }
.filter.is-active {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  box-shadow: var(--shadow-rose);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 15rem;
  grid-auto-flow: dense;          /* fecha buracos ao filtrar */
  gap: clamp(.75rem, 1.4vw, 1.15rem);
}
/* Composição editorial em ciclo de 6: o padrão se repete sozinho conforme
   você acrescenta fotos, sem deixar vãos na grade. */
.gallery__item:nth-child(6n + 1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(6n + 4) { grid-column: span 2; }

/* Se o bloco grande calhar de ser um dos últimos, ele volta ao tamanho normal:
   um destaque no fim da grade deixaria um vão grande do lado. */
.gallery__item:nth-child(6n + 1):nth-last-child(-n + 3) {
  grid-column: auto;
  grid-row: auto;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--linen);
  cursor: pointer;
  transition: opacity .5s var(--ease), transform .5s var(--ease),
              box-shadow .6s var(--ease), filter .5s var(--ease);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,26,27,0) 45%, rgba(28,26,27,.62));
  opacity: 0;
  transition: opacity .55s var(--ease);
}
.gallery__item:hover { box-shadow: var(--shadow-lg); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }

.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1.5rem;
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: none; }
.gallery__cat {
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rose-soft);
}
.gallery__name { font-family: var(--font-display); font-size: 1.35rem; }

/* Estado filtrado — display:none tira o item da grade sem deixar rastro,
   o que é essencial com grid-auto-flow: dense. */
.gallery__item.is-hidden { display: none; }

/* Carrossel do portfólio */
.portfolio-swiper {
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
  padding-bottom: 3rem;
  overflow: hidden;
}
.portfolio-swiper .swiper-slide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--linen);
  box-shadow: var(--shadow-sm);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.portfolio-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.portfolio-swiper .swiper-slide:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.swiper-pagination-bullet { background: var(--taupe-l); opacity: .5; }
.swiper-pagination-bullet-active { background: var(--rose); opacity: 1; width: 22px; border-radius: 4px; }

/* ---------------------------------------------------------------------------
   13. PROCESSO (timeline)
   ------------------------------------------------------------------------ */
/* Foto da Val em atendimento — prova visual ao lado do texto do processo */
.processo__figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--linen);
}
.processo__figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.03) brightness(1.02);
}
.processo__figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.4rem 1.1rem;
  font-size: .78rem;
  letter-spacing: .08em;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(28, 26, 27, .62));
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  padding-top: 3.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--line);
}
.timeline::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: var(--progress, 0%); height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--champagne));
  transition: width .1s linear;
}

.timeline__step { position: relative; }
.timeline__dot {
  position: absolute;
  top: calc(-3.5rem - 4px);
  left: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--rose-soft);
  transition: background .5s var(--ease), transform .5s var(--ease);
}
.timeline__step.is-on .timeline__dot { background: var(--rose); transform: scale(1.35); }

.timeline__num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--linen);
  margin-bottom: .9rem;
  transition: color .55s var(--ease);
}
.timeline__step.is-on .timeline__num { color: var(--rose-soft); }

.timeline h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: .6rem;
}
.timeline p { font-size: .94rem; color: var(--taupe); }

/* ---------------------------------------------------------------------------
   14. RESULTADOS (contadores)
   ------------------------------------------------------------------------ */
.section--rose {
  background:
    radial-gradient(120% 140% at 12% 0%, rgba(231,179,196,.35), transparent 55%),
    radial-gradient(110% 130% at 88% 100%, rgba(222,195,160,.35), transparent 55%),
    var(--porcelain);
  border-block: 1px solid var(--line-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}
.stat { position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(.75rem, 1.5vw, 1.5rem));
  top: 12%; bottom: 12%;
  width: 1px;
  background: var(--line);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 1.2rem + 5vw, 5.2rem);
  font-weight: 300;
  line-height: 1;
  color: var(--rose);
  letter-spacing: -.02em;
}
.stat__label {
  display: block;
  margin-top: .7rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------------------------------------------------------------------------
   15. DEPOIMENTOS
   ------------------------------------------------------------------------ */
.depo-swiper { padding: .5rem .5rem 4.5rem; overflow: hidden; }
.depo-swiper .swiper-slide { height: auto; }

.depo {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.9rem, 3vw, 2.6rem);
  border-radius: var(--radius-lg);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.depo:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.depo__stars { display: flex; gap: .3rem; color: var(--gold); font-size: .8rem; }

.depo blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
}

.depo figcaption {
  display: flex;
  align-items: center;
  flex-wrap: wrap;          /* o botão desce sozinho quando falta largura */
  gap: .75rem .9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
/* Bloco do nome: pode encolher, mas nunca a ponto de quebrar "Noiva · 2023" */
.depo figcaption > span:not(.depo__avatar) {
  flex: 1 1 7rem;
  min-width: 0;
}
.depo figcaption small { white-space: nowrap; }
/* Inicial da cliente no lugar da foto: identifica sem expor rosto ou perfil */
.depo__avatar {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--rose-tint);
  border: 1px solid rgba(231, 179, 196, .6);
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  flex: none;
}

/* Botão "ver print" — comprovação de que o depoimento é real */
.depo__proof {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .85rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, .6);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
  flex: none;
  transition: color .4s var(--ease), border-color .4s var(--ease),
              background .4s var(--ease), transform .4s var(--ease);
}
.depo__proof i { font-size: .8em; }
.depo__proof:hover {
  color: var(--rose-deep);
  border-color: var(--rose-soft);
  background: var(--rose-tint);
  transform: translateY(-2px);
}
.depo cite {
  display: block;
  font-style: normal;
  font-size: .95rem;
  color: var(--ink);
}
.depo small {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe);
}

.depo-swiper .swiper-button-prev,
.depo-swiper .swiper-button-next {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.depo-swiper .swiper-button-prev::after,
.depo-swiper .swiper-button-next::after { font-size: .8rem; font-weight: 700; }
.depo-swiper .swiper-button-prev:hover,
.depo-swiper .swiper-button-next:hover { background: var(--rose); border-color: var(--rose); color: #fff; }

/* ---------------------------------------------------------------------------
   16. CURSOS
   ------------------------------------------------------------------------ */
.courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}

.course {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(1.9rem, 3vw, 2.6rem);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.course:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(231,179,196,.5);
}

.course__tag {
  align-self: flex-start;
  padding: .35rem .9rem;
  border-radius: 100px;
  background: var(--rose);
  color: #fff;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.course__tag--soon { background: var(--linen); color: var(--taupe); }

.course h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + .8vw, 1.95rem);
  font-weight: 400;
  line-height: 1.15;
}
.course > p { font-size: .95rem; color: var(--taupe); }

.course__list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-block: .4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  flex: 1;
}
.course__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: var(--ink-2);
}
.course__list i { color: var(--rose); width: 1.1em; text-align: center; font-size: .85rem; }

.course .btn { align-self: flex-start; margin-top: .6rem; }

.course--cta {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(150deg, var(--rose-tint), rgba(255,255,255,.6));
  border-color: rgba(231,179,196,.5);
}
.course--cta > i { font-size: 1.4rem; color: var(--rose); }
.course--cta .link-arrow { margin-top: .8rem; }

/* ---------------------------------------------------------------------------
   17. PACOTES
   ------------------------------------------------------------------------ */
.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.pack {
  position: relative;
  padding: clamp(2rem, 3vw, 2.8rem);
  text-align: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.55);
  overflow: hidden;
  isolation: isolate;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.pack::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(90% 90% at 50% 0%, var(--rose-tint), transparent 70%);
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.pack:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(231,179,196,.55);
}
.pack:hover::before { opacity: 1; }

.pack > i {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  border: 1px solid var(--champagne);
  color: var(--rose);
  font-size: 1.15rem;
  transition: transform .6s var(--ease), background .6s var(--ease), color .6s var(--ease);
}
.pack:hover > i { transform: translateY(-4px) scale(1.05); background: var(--rose); color: #fff; border-color: var(--rose); }

.pack h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: .5rem;
}
.pack p { font-size: .9rem; color: var(--taupe); }

.pacotes__cta { text-align: center; margin-top: clamp(2.5rem, 4vw, 3.75rem); }

/* ---------------------------------------------------------------------------
   18. FAQ (accordion)
   ------------------------------------------------------------------------ */
.faq__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.faq .section__head { margin-bottom: 0; position: sticky; top: 8rem; }
.faq .section__head .btn { margin-top: 1.75rem; }

.accordion { border-top: 1px solid var(--line); }

.acc { border-bottom: 1px solid var(--line); }
.acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(1.2rem, 2vw, 1.6rem);
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  transition: color .4s var(--ease);
}
.acc__head:hover { color: var(--rose); }
.acc.is-open .acc__head { color: var(--rose); }

.acc__icon {
  position: relative;
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.acc__icon::before,
.acc__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .45s var(--ease), background .45s var(--ease);
}
.acc__icon::before { width: 11px; height: 1px; }
.acc__icon::after  { width: 1px; height: 11px; }
.acc.is-open .acc__icon { background: var(--rose); border-color: var(--rose); transform: rotate(90deg); }
.acc.is-open .acc__icon::before,
.acc.is-open .acc__icon::after { background: #fff; }
.acc.is-open .acc__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.acc__panel {
  height: 0;
  overflow: hidden;
  transition: height .55s var(--ease);
}
.acc__inner { padding-bottom: 1.6rem; padding-right: clamp(0rem, 4vw, 3.5rem); }
.acc__inner p { font-size: .97rem; color: var(--taupe); }

/* ---------------------------------------------------------------------------
   19. CONTATO
   ------------------------------------------------------------------------ */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.contato__channels { display: flex; flex-direction: column; gap: .7rem; }

.channel {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.6);
  transition: transform .5s var(--ease), border-color .5s var(--ease),
              background .5s var(--ease), box-shadow .5s var(--ease);
}
.channel > i:first-child {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose);
  font-size: 1.05rem;
  transition: background .5s var(--ease), color .5s var(--ease);
}
.channel span { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.channel strong { font-size: .95rem; font-weight: 400; }
.channel small { font-size: .82rem; color: var(--taupe); word-break: break-word; }
.channel__go { color: var(--taupe-l); font-size: .75rem; transition: transform .5s var(--ease), color .5s var(--ease); }

a.channel:hover {
  transform: translateX(5px);
  border-color: rgba(231,179,196,.6);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
a.channel:hover > i:first-child { background: var(--rose); color: #fff; }
a.channel:hover .channel__go { color: var(--rose); transform: translate(3px, -3px); }

.channel--static { background: transparent; border-style: dashed; }

.contato__map {
  margin-top: .5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.contato__map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  filter: grayscale(.35) contrast(1.02);
}

/* Formulário */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-radius: var(--radius-lg);
}
.form__intro { font-size: .95rem; color: var(--taupe); }

.field { display: flex; flex-direction: column; gap: .45rem; }
.field label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.field__opt { text-transform: none; letter-spacing: .02em; color: var(--taupe-l); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 300;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--taupe-l); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--rose-soft);
  box-shadow: 0 0 0 4px rgba(231, 179, 196, .22);
}

.field.has-error input,
.field.has-error select { border-color: #C0392B; }
.field__error {
  font-size: .75rem;
  color: #C0392B;
  min-height: 0;
  opacity: 0;
  transition: opacity .3s;
}
.field.has-error .field__error { opacity: 1; }

.form__note { font-size: .78rem; color: var(--taupe-l); text-align: center; }

/* ---------------------------------------------------------------------------
   20. CTA FINAL
   ------------------------------------------------------------------------ */
.cta-final {
  position: relative;
  padding-block: clamp(6rem, 14vw, 12rem);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta-final__bg { position: absolute; inset: 0; z-index: -2; }
.cta-final__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.9) brightness(1.06);
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(253,251,248,.94), rgba(250,239,243,.90)),
    radial-gradient(70% 80% at 50% 50%, rgba(222,195,160,.30), transparent 70%);
}

.cta-final__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-final__lottie { width: 90px; height: 90px; margin-bottom: -1rem; }

.cta-final__title {
  font-size: clamp(2.6rem, 1rem + 6.6vw, 6.4rem);
  max-width: 16ch;
}
.cta-final__title .line { display: block; overflow: hidden; }

.cta-final__sub {
  max-width: 52ch;
  font-size: clamp(1rem, .95rem + .35vw, 1.18rem);
  color: var(--ink-2);
}
.cta-final .btn { margin-top: 1rem; }
.cta-final__foot {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------------------------------------------------------------------------
   21. RODAPÉ
   ------------------------------------------------------------------------ */
.footer {
  position: relative;
  z-index: 2;
  background: var(--porcelain);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.footer__brand img { height: 42px; width: auto; margin-bottom: 1.25rem; }
.footer__brand p { font-size: .92rem; color: var(--taupe); }

.footer h3 {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.15rem;
}
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: .65rem; }
.footer__nav a, .footer__contact a {
  font-size: .92rem;
  color: var(--ink-2);
  transition: color .4s var(--ease), transform .4s var(--ease);
  width: fit-content;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--rose); transform: translateX(4px); }
.footer__contact i { color: var(--rose); width: 1.2em; margin-right: .35rem; }
.footer__contact p { font-size: .92rem; }
.footer__contact span { color: var(--taupe); }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
}
.footer__bar small { font-size: .76rem; color: var(--taupe-l); }

/* ---------------------------------------------------------------------------
   22. WHATSAPP FLUTUANTE
   ------------------------------------------------------------------------ */
.wa-float {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 850;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .6);
  opacity: 0;
  transform: scale(.6);
  pointer-events: none;
  transition: transform .5s var(--ease), opacity .5s var(--ease), box-shadow .5s var(--ease);
}
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 20px 44px -10px rgba(37,211,102,.7); }

/* ---------------------------------------------------------------------------
   23. LIGHTBOX
   ------------------------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(253, 251, 248, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox__figure {
  position: relative;
  max-width: min(92vw, 1000px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: scale(.94);
  opacity: 0;
  transition: transform .6s var(--ease), opacity .5s var(--ease);
}
.lightbox.is-open .lightbox__figure { transform: none; opacity: 1; }

.lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.lightbox__figure figcaption {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe);
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: background .4s var(--ease), color .4s var(--ease),
              border-color .4s var(--ease), transform .4s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--rose); border-color: var(--rose); color: #fff; }

.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left: clamp(.75rem, 3vw, 2rem); }
.lightbox__nav--next { right: clamp(.75rem, 3vw, 2rem); }
