/* ============================================================
   LÊ RIBEIRO MULTIMARCAS · LANDING
   desenvolvido pelo time MONS
   ============================================================ */

/* ——— FONTES ——— */
@font-face {
  font-family: "Neue Haas Display";
  src: url("assets/fonts/NeueHaasDisplay-Medium.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Neue Haas Display";
  src: url("assets/fonts/NeueHaasDisplay-RomanItalic.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue Local";
  src: url("assets/fonts/HelveticaNeue-Light.ttf") format("truetype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue Local";
  src: url("assets/fonts/HelveticaNeue-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* Kiran como display único — fonte serif fina, com todos os acentos PT-BR,
   combina com o feel editorial do logo "LÊ RIBEIRO". */
@font-face {
  font-family: "Display";
  src: url("assets/fonts/Kiran-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}

@font-face {
  font-family: "Inglesa Script";
  src: url("assets/fonts/InglesaScript-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inglesa Caps";
  src: url("assets/fonts/InglesaCaps-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ——— TOKENS ——— */
:root {
  --creme: #EEEBE4;
  --bege: #C9C0B4;
  --taupe: #ADA59B;
  --vinho: #492F2F;
  --preto: #1A1815;
  --grafite: #272421;
  --black: #000000;
  --white: #ffffff;

  --sans:  "Neue Haas Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --script:"Inglesa Script", "Apple Chancery", cursive;
  --display:"Display", "Kiran", "Times New Roman", serif;

  --gutter: clamp(1.5rem, 5vw, 6rem);
  --section-py: clamp(5rem, 12vw, 11rem);

  --ease-soft: cubic-bezier(.2,.6,.2,1);
  --ease-deep: cubic-bezier(.22,.84,.28,1);
}

/* ——— RESET ——— */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--creme);
  color: var(--preto);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.4em;
  line-height: .85;
  letter-spacing: 0;
  color: inherit;
  vertical-align: -.05em;
}
::selection { background: var(--vinho); color: var(--creme); }

/* ——— REVEAL ——— */
.reveal, .reveal-img {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-deep), transform 1.1s var(--ease-deep);
  will-change: opacity, transform;
}
.reveal-img { transform: translateY(38px) scale(.98); transition-duration: 1.3s; }
.reveal.is-in, .reveal-img.is-in { opacity: 1; transform: none; }

/* ============================================================
   BOTÕES · pill arredondado fino, sem letter-spacing
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid var(--preto);
  border-radius: 999px;
  color: var(--preto);
  background: transparent;
  transition: all .45s var(--ease-deep);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  line-height: 1;
}
.btn span { position: relative; z-index: 1; white-space: nowrap; }
.btn svg {
  width: 16px; height: 16px;
  position: relative; z-index: 1;
  transition: transform .45s var(--ease-deep);
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--preto);
  transform: translateY(101%);
  transition: transform .5s var(--ease-deep);
  z-index: 0;
  border-radius: 999px;
}
.btn:hover { color: var(--creme); }
.btn:hover::before { transform: translateY(0); }
.btn:hover svg { transform: translateX(4px); }

.btn--solid { background: var(--preto); color: var(--creme); }
.btn--solid::before { background: var(--vinho); }
.btn--solid:hover { color: var(--creme); }

.btn--ghost { background: transparent; color: var(--preto); }

/* botões sobre fundo escuro */
.btn--inverse { border-color: var(--creme); color: var(--creme); }
.btn--inverse::before { background: var(--creme); }
.btn--inverse:hover { color: var(--preto); }
.btn--inverse:hover svg { transform: translateX(4px); }

.btn--solid.btn--inverse { background: var(--creme); color: var(--preto); }
.btn--solid.btn--inverse::before { background: var(--vinho); }
.btn--solid.btn--inverse:hover { color: var(--creme); }

/* variantes de tamanho */
.btn--pill { padding: 14px 30px; }

/* ============================================================
   01 · CAPA · estilo Prancheta 1
   ============================================================ */
.capa {
  position: relative;
  height: 86svh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  background: var(--preto);
}
.capa__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(.72);
  animation: capaZoom 14s var(--ease-soft) forwards;
}
@keyframes capaZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}
.capa__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 30%, rgba(0,0,0,.15) 70%, rgba(0,0,0,.55) 100%),
    radial-gradient(ellipse at 70% 50%, transparent 0%, rgba(0,0,0,.35) 100%);
  z-index: 1;
}
.capa__hero {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(92%, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
}
.capa__hero .capa__mouse-after {
  margin-top: clamp(2rem, 4vw, 3rem);
  opacity: 0;
  animation: claimIn 1.6s var(--ease-deep) 2s forwards;
}
.capa__claim {
  margin: 0;
  color: var(--creme);
  font-weight: 400;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(.1rem, .4vw, .4rem);
}
.capa__word { display: block; }
.capa__word--serif {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7.5vw, 6rem);
  font-weight: 700;
  letter-spacing: 0;
}
.capa__word--script {
  font-family: var(--script);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: .8;
  color: var(--creme);
  margin: clamp(-.4rem, -1vw, -.8rem) 0;
}
.capa__claim .capa__word {
  opacity: 0;
  transform: translateY(20px);
  animation: claimIn 1.6s var(--ease-deep) forwards;
}
.capa__claim .capa__word:nth-child(1) { animation-delay: .3s; }
.capa__claim .capa__word:nth-child(2) { animation-delay: .7s; }
.capa__claim .capa__word:nth-child(3) { animation-delay: 1.1s; }
@keyframes claimIn {
  to { opacity: 1; transform: none; }
}
.capa__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(.6rem, 1.2vw, 1rem);
  justify-content: center;
}
.capa__sep { display: none; }   /* só visível no mobile */
.capa__cta {
  opacity: 0;
  animation: claimIn 1.4s var(--ease-deep) 1.6s forwards;
}
.capa__ctas .capa__cta:nth-child(1) { animation-delay: 1.6s; }
.capa__ctas .capa__cta:nth-child(2) { animation-delay: 1.75s; }
.capa__ctas .capa__cta:nth-child(3) { animation-delay: 1.9s; }
.capa__mouse {
  width: 22px;
  height: 36px;
  border: 1.4px solid var(--creme);
  border-radius: 999px;
  position: relative;
  display: block;
}
.capa__mouse--inline {
  margin-top: clamp(1rem, 2.5vw, 2rem);
  opacity: 0;
  animation: claimIn 1.6s var(--ease-deep) 2s forwards;
}
.capa__mouse-wheel {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 2px;
  height: 7px;
  background: var(--creme);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouseWheel 1.8s var(--ease-soft) infinite;
}
@keyframes mouseWheel {
  0%   { transform: translate(-50%, 0);   opacity: 1; }
  60%  { transform: translate(-50%, 14px); opacity: 0; }
  61%  { transform: translate(-50%, 0);   opacity: 0; }
  100% { transform: translate(-50%, 0);   opacity: 1; }
}

/* ============================================================
   02 · ABERTURA
   ============================================================ */
.abertura {
  padding: var(--section-py) var(--gutter);
  background: var(--creme);
  position: relative;
  overflow: hidden;
}
.abertura__wrap {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.abertura__deco {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;
  width: clamp(280px, 32vw, 520px);
  aspect-ratio: 3 / 5;
  opacity: 0;
  animation: decoFadeIn 1.8s var(--ease-deep) .3s forwards;
  pointer-events: none;
}
.abertura__deco img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 10s var(--ease-soft);
}
/* canto superior-direito · ~⅔ visível, só uma fatia cortada pela borda */
.abertura__deco--tl {
  top: clamp(2rem, 6vw, 5rem);
  right: clamp(-9vw, -7vw, -80px);
  transform: rotate(-4deg);
}
/* canto inferior-esquerdo · ~⅔ visível */
.abertura__deco--br {
  bottom: clamp(2rem, 6vw, 5rem);
  left: clamp(-9vw, -7vw, -80px);
  transform: rotate(4deg);
}
.abertura__deco--tl img,
.abertura__deco--br img {
  animation: decoZoom 16s var(--ease-soft) infinite alternate;
}
@keyframes decoZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@keyframes decoFadeIn {
  to { opacity: 1; }
}

.abertura__edge,
.manifesto__edge,
.historia__edge,
.marcas__edge,
.visita__edge,
.reels__edge,
.galeria__edge,
.eventos__edge {
  font-family: var(--script);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  color: var(--vinho);
  margin: 0 0 2.5rem 0;
  letter-spacing: 0;
  line-height: 1;
}
.abertura__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin: 0 0 3.5rem 0;
}
.abertura__col {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.65;
  letter-spacing: 0;
  color: var(--grafite);
  margin: 0;
  position: relative;
  padding-top: 1.2rem;
}
/* tracinhos vinho removidos */
.abertura__col strong {
  font-weight: 700;
  color: var(--preto);
  font-size: 1em;
  line-height: inherit;
  display: inline;
}
.abertura__col--left { text-align: left; }
.abertura__col--right { text-align: left; }

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

/* ============================================================
   03 · MARQUEE
   ============================================================ */
.marquee {
  background: var(--creme);
  padding: 0 0 var(--section-py) 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: clamp(40px, 8vw, 120px);
  z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--creme), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left, var(--creme), transparent); }
.marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 80s linear infinite;
}
.marquee__track figure {
  margin: 0;
  flex-shrink: 0;
  width: clamp(220px, 28vw, 420px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.marquee__track img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-deep);
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   04 · MANIFESTO
   ============================================================ */
.manifesto {
  padding: var(--section-py) var(--gutter);
  background: var(--preto);
  color: var(--creme);
  position: relative;
  overflow: hidden;
}
.manifesto__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .18;
}
.manifesto__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}
/* traço vertical do topo removido */
.manifesto > *:not(.manifesto__bg) { position: relative; z-index: 2; }
.manifesto__edge { color: var(--bege); margin-top: 0; }

.manifesto__lead {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.manifesto__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
  color: var(--creme);
}
.manifesto__title em { color: var(--bege); }
.manifesto__intro {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  letter-spacing: 0;
  color: var(--bege);
  margin: 0;
  padding-bottom: .4rem;
}
.manifesto__intro strong {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  line-height: inherit;
  color: var(--creme);
}

/* grid 2 colunas · pull à esquerda · textos à direita */
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

/* bloco de textos · agrupados no lado direito */
.manifesto__textos {
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 2.4vw, 2rem);
}
.manifesto__textos p {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--bege);
  margin: 0;
}
.manifesto__textos p strong {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  line-height: inherit;
  color: var(--creme);
}
.manifesto__textos em { color: var(--creme); }
.manifesto__split em { color: var(--creme); }

.manifesto__pull {
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--creme);
  margin: clamp(2rem, 4vw, 3rem) 0 0 0;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(238,235,228,.2);
  max-width: 720px;
}
.manifesto__pull em { color: var(--bege); }

/* ============================================================
   05 · HISTÓRIA
   ============================================================ */
.historia {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(1.5rem, 3vw, 2.5rem) var(--gutter);
  background: var(--creme);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: stretch;
  max-width: 1480px;
  margin: 0 auto;
}
.historia__media {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 2rem);
}
.historia__foto {
  width: 72%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  will-change: transform;
}
.historia__foto--1 {
  align-self: flex-start;
  animation: histFloat1 9s var(--ease-soft) infinite alternate;
}
.historia__foto--2 {
  align-self: flex-end;
  margin-top: clamp(-3rem, -4vw, -4.5rem);
  animation: histFloat2 11s var(--ease-soft) infinite alternate;
}
@keyframes histFloat1 {
  0%   { transform: translate(0, 0)    scale(1)    rotate(0deg); }
  100% { transform: translate(-8px, -12px) scale(1.04) rotate(-.6deg); }
}
@keyframes histFloat2 {
  0%   { transform: translate(0, 0)   scale(1.03) rotate(.4deg); }
  100% { transform: translate(8px, 10px) scale(1)    rotate(0deg); }
}
.historia__copy { max-width: 540px; }
.historia__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 0 2.5rem 0;
  color: var(--preto);
}
.historia__title em { color: var(--vinho); }
.historia__logo {
  display: inline-block;
  height: .55em;
  width: auto;
  vertical-align: .05em;
  margin: 0 .12em;
}
.historia__body p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  color: var(--grafite);
  margin: 0 0 1.4rem 0;
}
.historia__body strong {
  font-weight: 500;
  color: var(--preto);
}
.historia__body p.historia__body--regular {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0;
  color: var(--grafite);
}
.historia__body p.historia__body--regular strong {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-weight: 300 !important;
  color: inherit;
}

/* ============================================================
   06 · MARCAS
   ============================================================ */
.marcas {
  padding: clamp(2rem, 4vw, 3.5rem) var(--gutter) calc(var(--section-py) / 1.4) var(--gutter);
  background: var(--creme);
}
.marcas__head {
  max-width: 1480px;
  margin: 0 auto clamp(1.8rem, 3vw, 2.8rem) auto;
  text-align: center;
}
.marcas__edge { text-align: center; }
.marcas__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0 auto;
  max-width: 22ch;
  color: var(--preto);
}
.marcas__title em { color: var(--vinho); }
.marcas__grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--taupe);
  border: 1px solid var(--taupe);
}
.marcas__cell {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: transform .8s var(--ease-deep);
}
.marcas__cell img {
  max-width: 70%;
  max-height: 55%;
  object-fit: contain;
  transition: transform .8s var(--ease-deep), opacity .6s ease;
  opacity: .85;
}
.marcas__cell:hover img { transform: scale(1.06); opacity: 1; }
.marcas__cell--dark  { background: var(--preto); }
.marcas__cell--light { background: var(--white); }
.marcas__cell--more {
  background: var(--preto);
  padding: clamp(1.2rem, 2vw, 2rem);
}
.marcas__more {
  font-family: "Kiran", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--creme);
  margin: 0;
  text-align: center;
  max-width: 18ch;
}
.marcas__more em {
  font-family: var(--script);
  font-size: 1.4em;
  color: var(--bege);
  line-height: .85;
  vertical-align: -.05em;
}

/* ============================================================
   07 · VISITA
   ============================================================ */
.visita {
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
  background: var(--vinho);
  color: var(--creme);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.visita::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8%;
  width: 60%;
  height: 130%;
  background: url("assets/logo/icone-1-large.png") center / contain no-repeat;
  transform: translateY(-50%) rotate(-8deg);
  opacity: .18;
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
}
/* textura sutil sobre o vinho — granulado tipo papel */
.visita::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(238,235,228,.04) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(238,235,228,.03) 0, transparent 45%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .29  0 0 0 0 .18  0 0 0 0 .18  0 0 0 .12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .35;
  z-index: 1;
  pointer-events: none;
}
.visita > * { position: relative; z-index: 2; }
/* animação removida — logo estático em alta qualidade */
.visita__edge { color: var(--bege); }
.visita__copy { max-width: 560px; }
.visita__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
  margin: 0 0 2rem 0;
  color: var(--creme);
}
.visita__title em { color: var(--bege); }
.visita__body {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  letter-spacing: 0;
  margin: 0 0 3rem 0;
  color: var(--bege);
}
.visita__ctas { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.visita__horario {
  margin-top: 3rem;
  font-size: .9rem;
  letter-spacing: 0;
  color: var(--bege);
}
.visita__media { aspect-ratio: 5 / 6; overflow: hidden; }
.visita__media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   08 · REELS
   ============================================================ */
.reels {
  padding: var(--section-py) 0 clamp(2rem, 4vw, 3.5rem) 0;
  background: var(--creme);
  overflow: hidden;
}
.reels__head { padding: 0 var(--gutter); max-width: 1480px; margin: 0 auto 4rem auto; text-align: center; }
.reels__edge { text-align: center; }
.reels__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 auto;
  max-width: 22ch;
  color: var(--preto);
}
.reels__title em { color: var(--vinho); }
.reels__logo {
  display: inline-block;
  height: .85em;
  width: auto;
  vertical-align: -.05em;
  margin: 0 .2em;
}
.reels__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 22vw, 320px);
  gap: 1.2rem;
  padding: 0 var(--gutter) 1.5rem var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--taupe) transparent;
  -webkit-overflow-scrolling: touch;
}
.reels__track::-webkit-scrollbar { height: 6px; }
.reels__track::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 3px; }
.reel {
  scroll-snap-align: center;
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--preto);
  transition: transform .7s var(--ease-deep);
  border-radius: 4px;
}
.reel:hover { transform: translateY(-6px); }
.reel__video, .reel__fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel__fallback {
  background: linear-gradient(135deg, var(--grafite), var(--vinho));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.reel__fallback::after {
  content: "";
  width: 60px; height: 60px;
  border: 1.5px solid var(--creme);
  border-radius: 50%;
  background: url("assets/logo/LOGO-REDONDO-LE-RIBEIRO.png") center/70% no-repeat;
  filter: brightness(0) invert(1);
  opacity: .5;
}
.reel__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  color: var(--creme);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 500;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  padding: .35rem .65rem;
  border-radius: 999px;
  z-index: 2;
}
.reels__cta {
  display: flex;
  justify-content: center;
  padding: 0 var(--gutter);
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

/* ============================================================
   09 · GALERIA
   ============================================================ */
.galeria {
  padding: clamp(2rem, 4vw, 3.5rem) var(--gutter) var(--section-py) var(--gutter);
  background: var(--creme);
}
.galeria__edge { text-align: center; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.galeria__grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.galeria__item { margin: 0; overflow: hidden; aspect-ratio: 4/5; }
.galeria__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.8s var(--ease-soft); }
.galeria__item:hover img { transform: scale(1.05); }
.galeria__item:nth-child(1) { grid-column: span 5; aspect-ratio: 4/5; }
.galeria__item:nth-child(2) { grid-column: span 7; aspect-ratio: 4/3; }
.galeria__item:nth-child(3) { grid-column: span 4; aspect-ratio: 1/1; }
.galeria__item:nth-child(4) { grid-column: span 4; aspect-ratio: 1/1; }
.galeria__item:nth-child(5) { grid-column: span 4; aspect-ratio: 1/1; }
.galeria__item:nth-child(6) { grid-column: 1 / -1; aspect-ratio: 16/7; }

/* ============================================================
   10 · EVENTOS
   ============================================================ */
.eventos {
  padding: var(--section-py) var(--gutter);
  background: var(--preto);
  color: var(--creme);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.eventos__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .22;
}
.eventos__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.eventos > *:not(.eventos__bg) { position: relative; z-index: 2; }
.eventos__edge { color: var(--bege); text-align: center; }
.eventos__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0 auto 2rem auto;
  max-width: 22ch;
  color: var(--creme);
}
.eventos__title em { color: var(--bege); }
.eventos__body {
  max-width: 640px;
  margin: 0 auto 3rem auto;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: var(--bege);
}
.eventos__cta { display: flex; justify-content: center; }

/* ============================================================
   10.5 · LANÇAMENTOS DA SEMANA
   ============================================================ */
.lancamentos {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--creme);
  text-align: center;
}
.lancamentos__head {
  max-width: 1480px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem) auto;
  text-align: center;
}
.lancamentos__edge {
  font-family: var(--script);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  color: var(--vinho);
  margin: 0 0 1.5rem 0;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
.lancamentos__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 auto 1.2rem auto;
  max-width: 22ch;
  color: var(--preto);
}
.lancamentos__title em { color: var(--vinho); }
.lancamentos__sub {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
  color: var(--grafite);
  margin: 0 auto;
  max-width: 48ch;
  letter-spacing: 0;
}
.lancamentos__grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.lancamento {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--preto);
  transition: transform .6s var(--ease-deep);
}
.lancamento img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-soft), filter .6s ease;
  filter: brightness(.92);
}
.lancamento:hover img { transform: scale(1.06); filter: brightness(.7); }
.lancamento__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(1rem, 1.6vw, 1.4rem);
  z-index: 2;
  pointer-events: none;
}
.lancamento__badge {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--preto);
  background: var(--creme);
  padding: .4rem .75rem;
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: lowercase;
}
.lancamento__cta {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: .85rem;
  color: var(--creme);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease-deep), transform .5s var(--ease-deep);
  letter-spacing: 0;
}
.lancamento:hover .lancamento__cta { opacity: 1; transform: none; }
.lancamentos__cta {
  max-width: 1480px;
  margin: clamp(2rem, 3.5vw, 3rem) auto 0 auto;
  display: flex;
  justify-content: center;
}

/* ============================================================
   11 · RODAPÉ
   ============================================================ */
.rodape {
  background: var(--grafite);
  color: var(--bege);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) 2rem var(--gutter);
}
.rodape__top {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(238,235,228,.1);
}
.rodape__brand img {
  width: clamp(180px, 16vw, 260px);
  filter: brightness(0) invert(1);
  opacity: .92;
  margin-bottom: 1.5rem;
  margin-left: -.7rem;        /* compensa o whitespace embutido no PNG */
}
.rodape__tagline {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--bege);
  max-width: 24ch;
  margin: 0;
}
.rodape__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.rodape__col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--creme);
  margin: 0 0 1rem 0;
}
.rodape__col p { margin: 0 0 .6rem 0; font-size: .95rem; line-height: 1.6; }
.rodape__col a { transition: color .3s ease; }
.rodape__col a:hover { color: var(--creme); }
.rodape__envios {
  margin-top: 1rem !important;
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: .95rem;
  color: var(--creme);
  line-height: 1.5;
  letter-spacing: 0;
}

/* 12 · CRÉDITO */
.rodape__credito {
  max-width: 1480px;
  margin: 2rem auto 0 auto;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0;
  color: var(--taupe);
}
.rodape__credito a { transition: color .3s ease; }
.rodape__credito a:hover { color: var(--creme); }

/* ============================================================
   UTILITÁRIO · Inglesa Caps em palavras pontuais
   ============================================================ */
.font-caps {
  font-family: "Inglesa Caps", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}
.nowrap { white-space: nowrap; }

/* ============================================================
   ACENTOS OVERLAY · desenha til/agudo/cedilha por cima do glifo
   ============================================================ */
.acc {
  position: relative;
  display: inline-block;
}
.acc::after {
  position: absolute;
  left: 50%;
  font-family: var(--sans);
  font-weight: 400;
  pointer-events: none;
  line-height: 1;
}
.acc--til::after {
  content: "~";
  top: -.18em;
  font-size: .75em;
  transform: translateX(-50%) scaleX(.95);
}
.acc--agudo::after {
  content: "´";
  top: -.42em;
  font-size: 1em;
  transform: translateX(-50%);
}
.acc--circ::after {
  content: "^";
  top: -.32em;
  font-size: .85em;
  transform: translateX(-50%);
}
.acc--cedilha::after {
  content: "¸";
  bottom: -.45em;
  top: auto;
  font-size: 1em;
  transform: translateX(-50%);
}

/* ============================================================
   RESPONSIVO · TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .historia, .visita {
    grid-template-columns: 1fr;
  }
  .historia__media, .visita__media { aspect-ratio: 16/10; }
  .visita__copy { order: 2; max-width: none; }
  .visita__media { order: 1; }
  .marcas__grid { grid-template-columns: repeat(3, 1fr); }
  .galeria__item:nth-child(1) { grid-column: span 12; aspect-ratio: 16/9; }
  .galeria__item:nth-child(2) { grid-column: span 12; aspect-ratio: 16/9; }
  .galeria__item:nth-child(3),
  .galeria__item:nth-child(4),
  .galeria__item:nth-child(5) { grid-column: span 4; aspect-ratio: 1/1; }
  .galeria__item:nth-child(6) { grid-column: span 12; }
  .rodape__top { grid-template-columns: 1fr; }

  .abertura__deco { width: clamp(220px, 36vw, 360px); }
  .abertura__deco--tl { right: -12vw; }
  .abertura__deco--br { left: -12vw; }
}

/* ============================================================
   RESPONSIVO · MOBILE
   ============================================================ */
@media (max-width: 720px) {
  body { font-size: 16px; }
  :root { --gutter: 1.4rem; --section-py: 4.5rem; }

  /* ===== CAPA · texto maior, ícone separador, mouse no fim ===== */
  .capa { height: 100svh; min-height: 640px; }
  .capa__hero {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    padding: 14vh 1rem 10vh 1rem;
    gap: 1.4rem;
    justify-content: flex-start;
    align-items: center;
  }
  .capa__claim {
    gap: .1rem;
    margin: 0;
  }
  .capa__word--serif {
    font-size: clamp(2.9rem, 13vw, 4.4rem);
    line-height: 1;
  }
  .capa__word--script {
    font-size: clamp(5rem, 20vw, 7.2rem);
    line-height: .85;
    margin: -.3rem 0;
  }
  .capa__sep {
    display: block;
    width: 34px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: .55;
    margin: .4rem 0 .2rem 0;
  }
  .capa__ctas {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: .7rem;
    width: 100%;
    align-items: center;
    padding: 0 1rem;
    margin: 0;
  }
  .capa__ctas .btn {
    width: min(280px, 80%);
    padding: 13px 22px;
    font-size: 12px;
    justify-content: center;
    letter-spacing: .04em;
  }
  .capa__mouse--inline {
    margin-top: auto;
    width: 20px;
    height: 32px;
  }
  .capa__mouse-wheel { top: 6px; height: 6px; }

  /* ===== ABERTURA · sem ovais no mobile, tudo centralizado ===== */
  .abertura { padding: 4rem 1.4rem; text-align: center; }
  .abertura__deco { display: none !important; }
  .abertura__wrap { position: relative; z-index: 3; }
  .abertura__edge { text-align: center; }

  .abertura__split { grid-template-columns: 1fr; gap: 2rem; }
  .abertura__col { text-align: center; }
  .abertura__ctas {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
  }
  .abertura__ctas .btn {
    width: min(280px, 90%);
    justify-content: center;
  }

  /* ===== MARQUEE ===== */
  .marquee__track { gap: .8rem; animation-duration: 55s; }
  .marquee__track figure { width: 65vw; }

  /* ===== MANIFESTO · 1 coluna, fundo mais sutil ===== */
  .manifesto { padding: 4rem 1.4rem; }
  .manifesto__bg { opacity: .07; }
  .manifesto__title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    line-height: 1;
    max-width: none;
    margin-bottom: 2rem;
  }
  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .manifesto__pull {
    font-size: 1.15rem;
    padding-top: 1.5rem;
    margin-top: 0 !important;
  }
  .manifesto__textos { max-width: none; margin: 0; }

  /* ===== HISTÓRIA ===== */
  .historia {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .historia__media {
    flex-direction: row;
    justify-content: center;
    gap: .8rem;
  }
  .historia__foto {
    width: 48%;
    aspect-ratio: 4/5;
  }
  .historia__foto--2 { margin-top: 1.5rem; }

  /* ===== MARCAS ===== */
  .marcas__grid { grid-template-columns: repeat(2, 1fr); }
  .marcas__cell { padding: 1.5rem; }
  .marcas__title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* esconde "Fortaleza, CE" no mobile pro botão respirar */
  .hide-mobile { display: none !important; }

  /* ===== VISITA · tudo centralizado no mobile ===== */
  .visita {
    grid-template-columns: 1fr;
    padding: 3rem 1.4rem;
    text-align: center;
  }
  .visita::before { opacity: .12; width: 80%; left: -20%; }
  .visita__copy {
    order: 2;
    max-width: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .visita__edge { text-align: center; }
  .visita__media { order: 1; aspect-ratio: 5/4; }
  .visita__title { font-size: clamp(2rem, 9vw, 3rem); text-align: center; }
  .visita__body { text-align: center; }
  .visita__horario { text-align: center; }
  .visita__ctas {
    gap: .7rem;
    align-items: center;
    width: 100%;
  }
  .visita__ctas .btn {
    width: min(320px, 100%);
    padding: 13px 20px;
    font-size: 12px;
    letter-spacing: 0;
    justify-content: center;
    white-space: normal;
    line-height: 1.3;
  }
  .visita__ctas .btn span {
    white-space: normal;
    text-align: center;
  }

  /* ===== REELS ===== */
  .reels__track { grid-auto-columns: 75vw; gap: .8rem; }
  .reels__title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .reels__logo { height: .75em; }

  /* ===== GALERIA ===== */
  .galeria__grid { gap: .8rem; }
  .galeria__item:nth-child(1),
  .galeria__item:nth-child(2) { grid-column: span 12; aspect-ratio: 4/5; }
  .galeria__item:nth-child(3),
  .galeria__item:nth-child(4),
  .galeria__item:nth-child(5) { grid-column: span 12; aspect-ratio: 4/5; }
  .galeria__item:nth-child(6) { aspect-ratio: 4/3; }

  /* ===== EVENTOS ===== */
  .eventos__title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .eventos__cta .btn { width: 100%; justify-content: space-between; }

  /* ===== LANÇAMENTOS ===== */
  .lancamentos { padding: 3rem 1.4rem; }
  .lancamentos__title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .lancamentos__cta .btn { width: 100%; justify-content: space-between; }

  /* ===== RODAPÉ ===== */
  .rodape__top { grid-template-columns: 1fr; gap: 2rem; }
  .rodape__cols { grid-template-columns: 1fr; gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-img { opacity: 1; transform: none; }
}

/* ============================================================
   TOUR VIRTUAL · seção panorama (embedado na página)
   ============================================================ */
.tour-section {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--preto);
  color: var(--creme);
  text-align: center;
  position: relative;
}
.tour-section__head {
  max-width: 880px;
  margin: 0 auto clamp(2rem, 4vw, 3rem) auto;
}
.tour-section__edge {
  font-family: var(--script);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  color: var(--bege);
  margin: 0 0 1.2rem 0;
  letter-spacing: 0;
  line-height: 1;
}
.tour-section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0 auto 1.2rem auto;
  color: var(--creme);
}
.tour-section__title em { color: var(--bege); }
.tour-section__sub {
  font-family: "Helvetica Neue Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
  color: var(--bege);
  margin: 0 auto;
  max-width: 56ch;
  letter-spacing: 0;
}
.tour-section__frame {
  max-width: 1480px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--grafite);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  transition-duration: .5s !important;   /* reveal mais rápido */
}
.tour-section__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.tour-section__cta {
  max-width: 1480px;
  margin: clamp(2rem, 3.5vw, 3rem) auto 0 auto;
  display: flex;
  justify-content: center;
}
.tour-section__cta .btn { border-color: rgba(238,235,228,.4); color: var(--creme); }
.tour-section__cta .btn::before { background: var(--creme); }
.tour-section__cta .btn:hover { color: var(--preto); }

@media (max-width: 720px) {
  .tour-section { padding: 3rem 1rem; }
  .tour-section__frame { aspect-ratio: 4 / 5; border-radius: 6px; }
  .tour-section__title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .tour-section__cta .btn { width: 100%; justify-content: space-between; }
}

/* ============================================================
   TOUR VIRTUAL · modal embed (legado · não usado)
   ============================================================ */
.tour {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 11, 9, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.2rem, 3vw, 3rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s var(--ease-deep), visibility .55s var(--ease-deep);
}
.tour.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.tour__frame {
  width: min(1200px, 100%);
  height: min(75vh, 800px);
  background: var(--preto);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  transform: translateY(20px) scale(.98);
  transition: transform .55s var(--ease-deep);
}
.tour.is-open .tour__frame { transform: none; }
.tour__iframe { width: 100%; height: 100%; border: 0; display: block; }
.tour__close {
  position: absolute;
  top: clamp(1rem, 2vw, 1.8rem);
  right: clamp(1rem, 2vw, 1.8rem);
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(238,235,228,.35);
  background: rgba(0,0,0,.4);
  color: var(--creme);
  font-size: 26px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease-deep);
  padding: 0;
}
.tour__close:hover { background: var(--creme); color: var(--preto); border-color: var(--creme); transform: rotate(90deg); }
.tour__open {
  margin-top: 1.2rem;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--bege);
  text-decoration: none;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(238,235,228,.22);
  transition: all .3s var(--ease-deep);
}
.tour__open:hover { background: var(--creme); color: var(--preto); border-color: var(--creme); }
html.tour-locked, body.tour-locked { overflow: hidden; }
@media (max-width: 720px) {
  .tour { padding: 1rem; }
  .tour__frame { height: 70vh; border-radius: 6px; }
  .tour__close { width: 38px; height: 38px; font-size: 22px; }
}

/* ============================================================
   FAB WHATSAPP · botão flutuante fixo
   ============================================================ */
.wa-fab {
  position: fixed;
  right: clamp(1rem, 2.2vw, 1.8rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 99;
  width: clamp(54px, 6vw, 64px);
  height: clamp(54px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--preto);
  color: var(--creme);
  border-radius: 999px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, .22),
    0 2px 6px rgba(0, 0, 0, .15);
  transition:
    transform .45s var(--ease-deep),
    background-color .45s var(--ease-deep),
    box-shadow .45s var(--ease-deep);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid var(--preto);
  opacity: 0;
  transition: opacity .35s var(--ease-deep), transform .8s var(--ease-soft);
  pointer-events: none;
}
.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(26, 24, 21, .35);
  animation: waPulse 2.6s var(--ease-soft) infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0    rgba(26, 24, 21, .35); }
  70%  { box-shadow: 0 0 0 16px rgba(26, 24, 21, 0); }
  100% { box-shadow: 0 0 0 0    rgba(26, 24, 21, 0); }
}
.wa-fab:hover {
  background: var(--vinho);
  transform: translateY(-3px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, .28),
    0 4px 8px rgba(0, 0, 0, .18);
}
.wa-fab:hover::before { opacity: .25; transform: scale(1.08); }
.wa-fab__icon {
  width: 56%;
  height: 56%;
  position: relative;
  z-index: 1;
}

/* esconde o FAB no print mode */
.print-mode .wa-fab { display: none !important; }

/* PRINT MODE · screenshot da landing inteira (?print=1) */
.print-mode *, .print-mode *::before, .print-mode *::after {
  animation: none !important;
  transition: none !important;
}
.print-mode .reveal,
.print-mode .reveal-img {
  opacity: 1 !important;
  transform: none !important;
}
.print-mode .capa {
  height: 980px !important;
  min-height: 980px !important;
}
.print-mode .capa__img { transform: scale(1) !important; }
.print-mode .capa__hero { top: 50% !important; transform: translate(-50%, -50%) !important; }
/* mantém o mouse no print pra ficar igual ao site real */
.print-mode .reel__video { display: none !important; }
.print-mode .reel__fallback { z-index: 0 !important; }
.print-mode .marquee__track { transform: translateX(0) !important; }
.print-mode .historia__foto--1,
.print-mode .historia__foto--2 { transform: none !important; }
