﻿:root {
  --ivory: #f3ebe0;
  --cream: #f3ebe0;
  --sand: #e4d8c6;
  --linen: #d8cbb8;
  --ink: #1f1b16;
  --ink-soft: #2c2721;
  --muted: #6e655b;
  --gold: #b79a74;
  --white: #fffcf7;
  --max: 1180px;
  --header: 5.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: clip;
}

body.lidi-open,
body.bag-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.55rem 0.9rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 10vw));
  margin: 0 auto;
}

.kicker,
.index {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lede {
  max-width: 36rem;
  color: var(--muted);
}

.notes {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.quote {
  margin-top: 2.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic;
  line-height: 1.35;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  min-height: 5.75rem;
  padding:
    calc(0.35rem + env(safe-area-inset-top, 0px))
    max(4vw, env(safe-area-inset-right, 0px))
    0.35rem
    max(5vw, env(safe-area-inset-left, 0px));
  background: transparent;
  transition: background 0.55s var(--ease), backdrop-filter 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(243, 235, 224, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(31, 27, 22, 0.05);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.4s var(--ease);
}

.brand:hover {
  opacity: 0.78;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(2.38rem, 3.9vw, 2.95rem);
  max-width: min(10.7rem, 40vw);
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav a,
.nav-cta {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  transition: opacity 0.4s var(--ease), background 0.45s var(--ease), color 0.45s var(--ease),
    border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.nav a:hover {
  opacity: 0.55;
}

.nav-cta {
  padding: 0.52rem 1.05rem;
  border: 1px solid rgba(31, 27, 22, 0.28);
  border-radius: 999px;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: rgba(28, 24, 20, 0.88);
  background: rgba(255, 252, 247, 0.55);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.nav-cta:hover {
  opacity: 1;
  color: var(--ink);
  background: rgba(255, 252, 247, 0.92);
  border-color: rgba(31, 27, 22, 0.42);
  box-shadow: none;
}

.nav-cta::after {
  content: " →";
  opacity: 0.7;
}

.nav-drop {
  position: relative;
}

.nav-drop-toggle {
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  transition: opacity 0.4s var(--ease);
}

.nav-drop-toggle:hover,
.nav-drop-toggle[aria-expanded="true"] {
  opacity: 0.55;
}

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 11.5rem;
  padding: 0.85rem 0;
  background: rgba(247, 242, 234, 0.97);
  border: 1px solid rgba(31, 27, 22, 0.08);
  box-shadow: 0 16px 40px rgba(31, 27, 22, 0.08);
  display: grid;
  gap: 0.15rem;
  z-index: 70;
}

.nav-drop-panel[hidden] {
  display: none;
}

.nav-drop-panel a {
  display: block;
  padding: 0.55rem 1.15rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-drop-panel a:hover {
  opacity: 1;
  background: rgba(31, 27, 22, 0.04);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
}

.header-tool {
  position: relative;
  width: 2.85rem;
  height: 2.85rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 0.35s var(--ease), background 0.35s var(--ease);
  border-radius: 50%;
}

.header-tool:hover {
  opacity: 1;
  background: rgba(31, 27, 22, 0.05);
}

.header-tool--bag {
  color: #1c1814;
}

.header-tool--bag svg {
  width: 1.5rem;
  height: 1.5rem;
}

.header-tool svg {
  display: block;
}

.bag-count {
  position: absolute;
  top: 0.32rem;
  right: 0.28rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.22rem;
  border-radius: 999px;
  background: var(--ink);
  color: #f6f1e8;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1rem;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-panel {
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  z-index: 48;
  padding: 1rem 5vw 1.15rem;
  background: rgba(247, 242, 234, 0.97);
  border-bottom: 1px solid rgba(31, 27, 22, 0.08);
  backdrop-filter: blur(14px);
  animation: rise 0.45s var(--ease);
}

.search-panel[hidden] {
  display: none;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted);
}

.search-form input {
  flex: 1;
  border: 0;
  border-bottom: 1px solid rgba(31, 27, 22, 0.22);
  background: transparent;
  padding: 0.65rem 0;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
}

.search-form input::placeholder {
  color: #9a9085;
}

.search-close {
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0;
}

.bag-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(31, 27, 22, 0.28);
  display: grid;
  justify-items: end;
  animation: lidi-veil 0.4s var(--ease);
}

.bag-drawer[hidden] {
  display: none;
}

.bag-drawer-panel {
  width: min(22rem, 100%);
  height: 100%;
  padding: 1.6rem 1.4rem;
  background: var(--ivory);
  box-shadow: -12px 0 40px rgba(31, 27, 22, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  animation: rise 0.45s var(--ease);
}

.bag-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bag-drawer-head h2 {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.bag-drawer-close {
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bag-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.categorias {
  padding-top: 5.5rem;
  padding-bottom: 4rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem 1.1rem;
}

.category-card {
  display: grid;
  grid-template-rows: auto 1fr;
  color: inherit;
  text-decoration: none;
  transition: transform 0.45s var(--ease);
}

.category-card:hover {
  transform: translateY(-3px);
}

.category-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(31, 27, 22, 0.04);
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
  display: block;
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
  filter: saturate(0.92) contrast(1.02);
}

.category-card:nth-child(2) .category-media img,
.category-card:nth-child(3) .category-media img {
  object-position: center 45%;
}

.category-card:hover .category-media img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.04);
}

.category-copy {
  padding: 1.15rem 0.15rem 0.35rem;
}

.category-card .index {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.category-card h3 {
  margin: 0 0 0.55rem;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.category-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.menu-toggle {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 0.85rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 60;
  flex-shrink: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1.15rem;
  height: 1px;
  background: var(--ink);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
}

.menu-toggle span::before {
  transform: translate(-50%, -5px);
}

.menu-toggle span::after {
  transform: translate(-50%, 5px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 0.15rem;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 0.45s var(--ease), background 0.45s var(--ease), transform 0.45s var(--ease);
}

.btn:hover {
  opacity: 0.72;
}

.btn-line {
  border-bottom: 1px solid currentColor;
}

.btn-solid {
  min-height: 2.65rem;
  padding: 0 1.2rem;
  background: #1c1814;
  color: #f6f1e8;
  border-radius: 2px;
}

.btn-solid::after {
  content: " →";
  margin-left: 0.35rem;
}

.btn-solid:hover {
  opacity: 1;
  background: #000;
}

.btn-text {
  min-height: auto;
  padding: 0.35rem 0;
  border-bottom: 1px solid currentColor;
}

.hero .btn-solid {
  background: #1c1814;
  color: #f6f1e8;
  transition: background 0.4s var(--ease), opacity 0.4s var(--ease);
}

.hero .btn-solid:hover {
  background: #000;
  opacity: 1;
}

.hero .btn-text {
  color: var(--ink);
  border: 0;
  border-bottom: none;
  box-shadow: inset 0 -1px 0 rgba(31, 27, 22, 0.4);
  font-weight: 400;
  letter-spacing: 0.18em;
  opacity: 0.8;
  padding-bottom: 0.28rem;
  transition: opacity 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero .btn-text:hover {
  opacity: 0.98;
  box-shadow: inset 0 -1px 0 rgba(31, 27, 22, 0.7);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  width: 100%;
  min-height: max(36rem, calc(100svh - 0.5rem));
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--ivory);
  animation: rise 1.1s var(--ease) both;
}

.hero-atmosphere {
  display: none;
}

.hero-stage {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: var(--ivory);
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: opacity;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide.is-leaving {
  z-index: 1;
  opacity: 0;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 72% 48%;
  display: block;
  /* ~5–8% further scale-down; keep reed breathing room */
  transform: scale(0.825) translate3d(0, 6.2%, 0);
  transform-origin: 74% 42%;
}

.hero-slide[data-fragrance="Memória"] img {
  object-position: 80% 46%;
  transform: scale(0.825) translate3d(0, 6.4%, 0);
  transform-origin: 78% 40%;
}

.hero-slide[data-fragrance="Envolve"] img {
  object-position: 86% 46%;
  transform: scale(0.79) translate3d(0, 7.5%, 0);
  transform-origin: 84% 38%;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none !important;
  }

  .hero-slide img {
    transform: scale(0.825) translate3d(0, 6.2%, 0) !important;
  }
}

.hero-veil {
  grid-area: 1 / 1;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(243, 235, 224, 0.62) 0%,
    rgba(243, 235, 224, 0.34) 20%,
    rgba(243, 235, 224, 0.1) 34%,
    transparent 46%
  );
}

.hero-copy {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: center;
  justify-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(36rem, 44%);
  min-height: inherit;
  padding: calc(var(--header) + 1.65rem) 2vw 6.25rem 5.5vw;
  color: var(--ink);
  pointer-events: none;
}

.hero-copy .btn,
.hero-copy a,
.hero-copy button {
  pointer-events: auto;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.55rem;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.hero h1,
.hero-headline {
  position: relative;
  display: grid;
  margin: 0 0 1.85rem;
  min-height: calc(3 * 1.08em);
  height: calc(3 * 1.08em);
  overflow: hidden;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.15rem, 4.1vw, 4.15rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.hero-headline-phrase {
  grid-area: 1 / 1;
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero-headline-phrase.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-headline-phrase > span {
  display: block;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .hero-headline-phrase {
    transition: none;
  }
}

.hero-line {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-note {
  max-width: 21rem;
  margin: 0 0 2.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.62;
  opacity: 0.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.55rem 1.85rem;
}

.hero-edition {
  position: absolute;
  z-index: 3;
  top: calc(var(--header) + 1.35rem);
  right: 5.5vw;
  bottom: auto;
  margin: 0;
  color: var(--muted);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.48;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 5.5vw;
  bottom: 1.45rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise 1.1s var(--ease) 1.2s both;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 1.35rem;
  background: currentColor;
  opacity: 0.7;
  position: relative;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.15rem;
  width: 0.28rem;
  height: 0.28rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0.85;
}

section {
  padding: 8.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 4.5rem;
}

.section-head h2,
.name-section h2,
.invite h2,
#valores h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 400;
}

.momentos-intro,
.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5vw;
  align-items: center;
}

.momentos-intro figure,
.feature-split figure {
  margin: 0;
  overflow: visible;
  background: transparent;
}

.momentos-intro img,
.feature-split img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  image-rendering: auto;
  transition: transform 1.25s var(--ease), opacity 1.1s var(--ease);
}

.momentos-intro figure:hover img,
.feature-split figure:hover img {
  transform: scale(1.02);
}

.product-types {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.product-types li + li {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(31, 27, 22, 0.1);
}

.product-types strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.feature-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: 0.08em;
}

/* Coleção — horizontal lookbook (campaign strip) */
.fragrance-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 3px;
  width: 100%;
  max-width: 100%;
  margin-top: 0.5rem;
  background: var(--ivory);
  overflow-x: clip;
}

.fragrance {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
  background: var(--ivory);
}

.fragrance figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e7ddd0;
  display: grid;
  place-items: center;
}

.fragrance img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 28%;
  background: transparent;
  transition: transform 1.1s var(--ease), opacity 0.45s var(--ease);
}

.fragrance figure:hover img {
  transform: scale(1.025);
}

.fragrance-nav {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.fragrance-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.05rem;
  height: 2.05rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(70, 70, 70, 0.48);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  pointer-events: auto;
  opacity: 0;
  transition:
    opacity 0.4s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}

.fragrance-arrow span {
  display: block;
  transform: translateY(-0.04em);
}

.fragrance figure:hover .fragrance-arrow,
.fragrance figure:focus-within .fragrance-arrow {
  opacity: 0.92;
}

.fragrance-arrow:hover {
  background: rgba(255, 255, 255, 0.78);
  color: rgba(45, 45, 45, 0.72);
}

.fragrance-arrow:focus-visible {
  outline: 1px solid rgba(31, 27, 22, 0.35);
  outline-offset: 2px;
  opacity: 0.92;
}

.fragrance-arrow--prev {
  left: 0.55rem;
}

.fragrance-arrow--next {
  right: 0.55rem;
}

@media (hover: none) {
  .fragrance-arrow {
    opacity: 0.55;
  }
}

.fragrance-copy {
  padding: 1.15rem 0.95rem 1.4rem;
}

.fragrance-copy h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fragrance-copy .index {
  margin: 0 0 0.45rem;
}

.fragrance-copy .notes,
.fragrance-copy p {
  margin-top: 0.35rem;
}

.fragrance-copy .notes {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fragrance-copy .product-line[hidden] {
  display: none;
}

.fragrance-story {
  margin: 1.15rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(31, 27, 22, 0.1);
}

.fragrance-story > div {
  margin: 0.75rem 0 0;
}

.fragrance-story dt {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fragrance-story dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.product-line {
  margin: 0.85rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
}

.momentos-closing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin: 2.75rem auto 0;
  padding: 0 5vw;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}

.momentos-mark {
  display: inline-block;
  width: 1.65rem;
  height: 0.7rem;
  background: center / contain no-repeat url("../assets/logo-mark.png?v=20260914k");
  opacity: 0.75;
}

#momentos {
  padding-bottom: 3.25rem;
}

#momentos .section-head {
  margin-bottom: 2.75rem;
}

#marca {
  padding-top: 3.25rem;
  padding-bottom: 2.5rem;
}

#marca .quote {
  margin-top: 1.75rem;
  margin-bottom: 0;
  text-align: center;
}

#lista {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.name-section {
  text-align: center;
}

.name-section h2 {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.air-line {
  width: min(18rem, 70%);
  height: 2.4rem;
  margin: 1.8rem auto 2.8rem;
  color: var(--gold);
  opacity: 0.7;
}

.narrow {
  max-width: 34rem;
  margin: 0 auto;
  text-align: left;
  color: var(--muted);
}

.essence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem 5vw;
}

.essence h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  font-weight: 400;
  max-width: 12ch;
}

.essence-offset {
  margin-top: 2.5rem;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
}

.manifesto h3,
.values h3 {
  font-size: 1.85rem;
  font-weight: 400;
}

.manifesto p,
.values p,
.essence p {
  color: var(--muted);
}

#valores {
  padding-top: 4rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 4vw;
  margin-top: 3.5rem;
}

.invite {
  max-width: 36rem;
  text-align: center;
}

.invite .lede {
  margin: 0 auto 2.8rem;
}

.form {
  display: grid;
  gap: 1.4rem;
  justify-items: center;
}

.fields {
  width: 100%;
}

.fields label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(31, 27, 22, 0.28);
  background: transparent;
  padding: 0.85rem 0;
  text-align: center;
  color: var(--ink);
}

.form input::placeholder {
  color: #9a9085;
}

.form-note,
.form-success {
  color: var(--muted);
  font-size: 0.85rem;
}

.form-success,
.form.is-done .form-note,
.form.is-done .fields,
.form.is-done button {
  display: none;
}

.form.is-done .form-success {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.2rem 5vw 3.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lidi-float {
  position: fixed;
  right: 1.35rem;
  bottom: 1.2rem;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 0.82rem 0.3rem 0.3rem;
  border: 1px solid rgba(31, 27, 22, 0.09);
  border-radius: 999px;
  background: rgba(247, 242, 234, 0.9);
  backdrop-filter: blur(10px);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(31, 27, 22, 0.06);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), background 0.55s var(--ease);
  animation: rise 0.9s var(--ease) 0.8s both;
}

.lidi-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 27, 22, 0.09);
  background: rgba(255, 252, 247, 0.96);
}

.lidi-avatar {
  position: relative;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f3ebe0;
  border: 1px solid rgba(31, 27, 22, 0.08);
  overflow: hidden;
  padding: 0.35rem 0.28rem;
}

.lidi-avatar img {
  width: 100%;
  height: auto;
  max-height: 0.95rem;
  object-fit: contain;
  object-position: center;
}

.lidi-avatar::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #7d9476;
  box-shadow: 0 0 0 1.5px #f7f2ea;
}

.lidi-meta {
  display: grid;
  text-align: left;
  line-height: 1.2;
}

.lidi-meta strong {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lidi-meta small {
  display: none;
}

.lidi-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(28, 24, 20, 0.34);
  backdrop-filter: blur(8px);
  animation: lidi-veil 0.55s var(--ease) both;
}

.lidi-overlay[hidden] {
  display: none;
}

@keyframes lidi-veil {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lidi-window {
  width: min(440px, 100%);
  height: min(720px, 92svh);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background: linear-gradient(180deg, #f7f2ea 0%, var(--ivory) 42%, #efe6d8 100%);
  border: 1px solid rgba(31, 27, 22, 0.08);
  box-shadow:
    0 24px 80px rgba(28, 24, 20, 0.18),
    0 2px 0 rgba(255, 252, 247, 0.4) inset;
  animation: rise 0.7s var(--ease);
}

.lidi-head {
  padding: 1.35rem 1.45rem 1.15rem;
  border-bottom: 1px solid rgba(31, 27, 22, 0.08);
  background: rgba(247, 242, 234, 0.92);
}

.lidi-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.lidi-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.lidi-head h2 {
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.lidi-head-note {
  margin: 0;
  max-width: 18rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.lidi-close {
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.62rem;
  padding: 0.2rem 0;
  transition: color 0.35s var(--ease);
}

.lidi-close:hover {
  color: var(--ink);
}

.lidi-body {
  position: relative;
  min-height: 0;
  background: transparent;
}

.lidi-bot,
typebot-standard.lidi-bot {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: transparent;
}

typebot-standard {
  --typebot-host-bubble-bg-color: #1c1814;
  --typebot-host-bubble-color: #f7f2ea;
  --typebot-guest-bubble-bg-color: #ebe1d3;
  --typebot-guest-bubble-color: #1f1b16;
  --typebot-button-bg-color: #1c1814;
  --typebot-button-color: #f7f2ea;
  --typebot-input-bg-color: #fffcf7;
  --typebot-input-color: #1f1b16;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0);
  transition:
    opacity 1.25s var(--ease),
    transform 1.35s var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--fade {
  transform: none;
}

.reveal--media,
.reveal figure {
  overflow: hidden;
}

.reveal--media img,
.reveal figure img {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.35s var(--ease),
    transform 1.55s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible.reveal--media img,
.reveal.is-visible figure img {
  opacity: 1;
  transform: scale(1);
}

.reveal-stagger > .reveal:nth-child(1) {
  --delay: 0ms;
}
.reveal-stagger > .reveal:nth-child(2) {
  --delay: 140ms;
}
.reveal-stagger > .reveal:nth-child(3) {
  --delay: 280ms;
}
.reveal-stagger > .reveal:nth-child(5) {
  --delay: 560ms;
}

.hero-copy > * {
  opacity: 0;
  transform: translate3d(0, 0.7rem, 0);
  animation: rise 1.15s var(--ease) both;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.18s;
}
.hero-copy > *:nth-child(2) {
  animation-delay: 0.34s;
}
.hero-copy > *:nth-child(3) {
  animation-delay: 0.48s;
}
.hero-copy > *:nth-child(4) {
  animation-delay: 0.62s;
}
.hero-copy > *:nth-child(5) {
  animation-delay: 0.78s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 981px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav.is-open {
    position: fixed;
    inset: 0;
    left: 0;
    transform: none;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: var(--ivory);
  }

  .nav-cta-bar {
    margin-left: 0;
  }

  .header-right {
    margin-left: auto;
  }

  .header-tools {
    margin-left: 0;
    margin-right: 0;
  }

  .nav-cta-in-menu {
    display: none;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .nav {
    gap: 1.15rem;
  }

  .nav a {
    letter-spacing: 0.12em;
  }
}

@media (max-width: 1180px) {
  .fragrance-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 3px;
  }

  .hero-copy {
    width: min(38rem, 48%);
  }

  .fragrance-copy {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}

@media (max-width: 980px) {
  .wrap {
    width: min(var(--max), calc(100% - 11vw));
  }

  .hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .hero-atmosphere,
  .hero-veil {
    position: absolute;
    inset: 0;
  }

  .hero-stage {
    position: relative;
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    min-height: 100svh;
  }

  .hero-slide img {
    object-position: 68% 40%;
    transform: scale(0.84) translate3d(0, 6.8%, 0);
    transform-origin: 70% 36%;
  }

  .hero-slide[data-fragrance="Memória"] img {
    object-position: 72% 38%;
    transform: scale(0.84) translate3d(0, 7%, 0);
    transform-origin: 74% 34%;
  }

  .hero-slide[data-fragrance="Envolve"] img {
    object-position: 78% 38%;
    transform: scale(0.8) translate3d(0, 7.8%, 0);
    transform-origin: 80% 34%;
  }

  .hero-copy {
    position: relative;
    grid-area: 1 / 1;
    align-self: start;
    width: min(92%, 26rem);
    min-height: 0;
    padding: calc(var(--header) + 1.2rem) 7vw 1.2rem;
  }

  .hero h1,
  .hero-headline {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    line-height: 1.1;
    margin-bottom: 1.35rem;
    min-height: calc(3 * 1.1em);
    height: calc(3 * 1.1em);
  }

  .hero-headline-phrase > span {
    display: block;
    white-space: nowrap;
  }

  .hero-note {
    display: block;
    max-width: 18rem;
    margin-bottom: 1.75rem;
    font-size: 0.78rem;
    opacity: 0.78;
  }

  .hero-actions {
    gap: 1.25rem 1.5rem;
  }

  .hero-edition {
    top: calc(var(--header) + 0.85rem);
    right: 7vw;
    bottom: auto;
    opacity: 0.4;
  }

  .hero-scroll {
    left: 7vw;
    bottom: 1.2rem;
  }

  .hero-veil {
    background: linear-gradient(
      180deg,
      rgba(243, 235, 224, 0.88) 0%,
      rgba(243, 235, 224, 0.62) 18%,
      rgba(243, 235, 224, 0.22) 36%,
      transparent 52%
    );
  }

  .momentos-intro,
  .feature-split,
  .essence-grid,
  .manifesto,
  .values {
    grid-template-columns: 1fr;
  }

  .fragrance-gallery {
    width: min(var(--max), calc(100% - 11vw));
    margin-left: auto;
    margin-right: auto;
  }

  .category-grid {
    gap: 1.75rem;
  }

  .category-card:first-child .category-media img {
    object-position: 78% 38%;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .momentos-closing {
    letter-spacing: 0.16em;
    gap: 0.55rem 0.75rem;
  }

  .nav-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .nav-drop-panel {
    position: static;
    transform: none;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 0.85rem;
    justify-items: center;
  }

  .nav-drop-panel a {
    padding: 0;
  }

  .header-right {
    margin-left: auto;
    gap: 0.25rem;
  }

  .header-tools {
    margin-left: 0;
    margin-right: 0;
  }

  .fragrance figure {
    aspect-ratio: 4 / 5;
  }

  .fragrance-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .essence-offset {
    margin-top: 0;
  }

  .menu-toggle {
    margin-left: 0.35rem;
  }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: var(--ivory);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }

  .nav-cta-in-menu {
    margin-top: 0.6rem;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Tablet — between phone and desktop */
@media (min-width: 641px) and (max-width: 980px) {
  .hero-copy {
    width: min(90%, 30rem);
    padding-bottom: 4.5rem;
  }

  .hero h1,
  .hero-headline {
    font-size: clamp(2.1rem, 5vw, 2.9rem);
    min-height: calc(3 * 1.08em);
    height: calc(3 * 1.08em);
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .category-media {
    aspect-ratio: 4 / 5;
  }

  .fragrance-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem 1.35rem;
  }

  .fragrance-copy {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header: 4.85rem;
  }

  section {
    padding: 4.75rem 0;
  }

  #momentos {
    padding-bottom: 2.5rem;
  }

  #marca {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  #essencia {
    padding-top: 2rem;
  }

  .wrap {
    width: min(var(--max), calc(100% - 10vw));
  }

  .site-header {
    min-height: var(--header);
    padding-left: max(5vw, env(safe-area-inset-left, 0px));
    padding-right: max(4vw, env(safe-area-inset-right, 0px));
  }

  .brand img {
    height: 2.15rem;
    max-width: min(9.4rem, 46vw);
  }

  .site-footer {
    flex-direction: column;
    gap: 1rem;
    padding-left: max(5vw, env(safe-area-inset-left, 0px));
    padding-right: max(5vw, env(safe-area-inset-right, 0px));
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  }

  .lidi-float {
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    padding: 0.28rem 0.75rem 0.28rem 0.28rem;
  }

  .hero-copy {
    width: min(94%, 22.5rem);
    padding:
      calc(var(--header) + 0.85rem + env(safe-area-inset-top, 0px))
      6vw
      max(1.1rem, env(safe-area-inset-bottom, 0px))
      max(6vw, env(safe-area-inset-left, 0px));
  }

  .hero h1,
  .hero-headline {
    font-size: clamp(1.72rem, 7.2vw, 2.2rem);
    line-height: 1.12;
    margin-bottom: 1.15rem;
    min-height: calc(3 * 1.12em);
    height: calc(3 * 1.12em);
  }

  .hero-kicker {
    margin-bottom: 1.05rem;
    letter-spacing: 0.26em;
  }

  .hero-line {
    letter-spacing: 0.22em;
  }

  .hero-note {
    max-width: 17.5rem;
    font-size: 0.76rem;
  }

  .hero-note br {
    display: none;
  }

  .hero-actions {
    gap: 1rem 1.25rem;
  }

  .hero-actions .btn-solid {
    min-height: 2.55rem;
    padding: 0 1rem;
  }

  .hero-slide img {
    object-position: 62% 36%;
    transform: scale(0.84) translate3d(0, 7.2%, 0);
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-media {
    aspect-ratio: 16 / 11;
  }

  .fragrance-gallery {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0.15rem 0 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .fragrance-gallery::-webkit-scrollbar {
    display: none;
  }

  .fragrance {
    flex: 0 0 100vw;
    width: 100vw;
    max-width: 100vw;
    padding-left: max(5vw, env(safe-area-inset-left, 0px));
    padding-right: max(5vw, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .fragrance figure {
    aspect-ratio: 4 / 5;
    width: 100%;
  }

  .fragrance-nav {
    display: block;
  }

  .fragrance-arrow {
    width: 2.35rem;
    height: 2.35rem;
    background: rgba(255, 252, 247, 0.72);
    color: rgba(31, 27, 22, 0.62);
    opacity: 0.92;
    font-size: 1.15rem;
  }

  .fragrance-arrow--prev {
    left: 0.75rem;
  }

  .fragrance-arrow--next {
    right: 0.75rem;
  }

  .fragrance-arrow.is-disabled {
    opacity: 0.28;
    pointer-events: none;
  }

  .fragrance-copy {
    padding: 1rem 0.1rem 0.25rem;
  }

  .fragrance-story dd {
    font-size: 0.74rem;
  }

  .momentos-closing {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  .hero h1,
  .hero-headline {
    font-size: clamp(1.55rem, 7.4vw, 1.85rem);
    min-height: calc(3 * 1.12em);
    height: calc(3 * 1.12em);
  }

  .hero-kicker {
    font-size: 0.54rem;
    letter-spacing: 0.2em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal--media img,
  .reveal figure img,
  .hero-copy > *,
  .hero-scroll,
  .hero-edition {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
