/* --------------------------------------------------------------------------
   Cianinha — variáveis, reset leve, componentes e seções
   Trocar cores: ajuste :root abaixo
   -------------------------------------------------------------------------- */

:root {
  /* Fundos: creme quente + “branco” suave (sem #fff puro) */
  --bg-page: #f6efe8;
  --bg-soft: #fcfaf6;
  --rose-mist: #f1e4ea;
  --rose-soft: #e8ccd6;
  --rose-dust: #c99aab;
  --rose-deep: #8b5c6c;
  --nude: #dfd2c8;
  --beige: #e8dfd6;
  --cream: #ebe3db;
  --white: #fcfaf6;

  --ink: #1a1618;
  --ink-muted: #4a4a4a;
  --line: rgba(26, 22, 24, 0.1);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 18px 48px rgba(26, 22, 24, 0.07);
  --shadow-card: 0 12px 36px rgba(26, 22, 24, 0.075);
  --shadow-lift: 0 10px 30px rgba(26, 22, 24, 0.055);
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* Grain global: quase imperceptível — subir até ~0.035 só se quiser mais textura */
  --grain-opacity: 0.02;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-muted);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

/* Textura grain / noise muito sutil em todo o site (não bloqueia cliques) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
}

@media (prefers-reduced-transparency: reduce) {
  body::before {
    opacity: 0;
    visibility: hidden;
  }
}

h1,
h2,
h3,
.section__title,
.logo-block__name {
  color: var(--ink);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rose-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline-offset: 2px;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.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;
}

/* Tipografia utilitária */
.section__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.65rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.section__title--light {
  color: var(--white);
}

.section__intro {
  margin: 0;
  max-width: 36rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.section__header {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

main section[id],
.hero {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10100;
  background: rgba(246, 239, 232, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(42, 36, 38, 0.05);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  padding-block: 0.35rem;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  text-decoration: none;
  color: inherit;
}

.logo-block__name {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}

.logo-block__sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1;
  opacity: 0.88;
}

.logo-block:hover .logo-block__name {
  color: var(--rose-deep);
}

.logo-block:hover .logo-block__sub {
  color: var(--rose-deep);
  opacity: 1;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.35rem;
}

@media (min-width: 1024px) {
  .site-nav__list {
    gap: 1.55rem;
  }
}

.site-nav__list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
}

.site-nav__list a:hover {
  color: var(--ink);
}

.site-header__cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav__item-wa {
  display: none;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
  }

  .site-header__cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--bg-page);
    border-bottom: 1px solid var(--line);
    padding: 1.25rem 1.5rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease-out), opacity 0.35s, visibility 0.35s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-nav__list a {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    min-height: 48px;
    font-size: 1rem;
  }

  .site-nav__item-wa {
    display: list-item;
    margin-top: 0.35rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
  }

  .site-nav__item-wa a {
    padding: 0.85rem 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--rose-deep);
  }
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s var(--ease-out),
    box-shadow 0.25s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 26px rgba(26, 22, 24, 0.2);
}

.btn--primary:hover {
  background: #2c2528;
  color: var(--white);
  box-shadow: 0 10px 32px rgba(26, 22, 24, 0.24);
}

.btn--ghost {
  background: var(--bg-soft);
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--rose-dust);
  background: var(--rose-mist);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 22, 24, 0.18);
}

.btn--outline:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}

.btn--small {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.btn--large {
  padding: 0.95rem 1.75rem;
  font-size: 0.95rem;
}

.btn--block {
  width: 100%;
}

.btn--light {
  background: var(--white);
  color: var(--ink);
}

.btn--light:hover {
  background: var(--rose-mist);
  color: var(--ink);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn__icon {
  display: flex;
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem)) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    152deg,
    var(--bg-page) 0%,
    #f2e4e8 26%,
    var(--rose-mist) 48%,
    var(--bg-soft) 72%,
    var(--beige) 100%
  );
}

.hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero__bg-glow--1 {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(212, 169, 184, 0.45) 0%, transparent 70%);
}

.hero__bg-glow--2 {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  bottom: 5%;
  left: -10%;
  background: radial-gradient(circle, rgba(232, 217, 207, 0.85) 0%, transparent 68%);
}

.hero__bg-glow--3 {
  width: min(35vw, 320px);
  height: min(35vw, 320px);
  top: 42%;
  left: 35%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 65%);
  opacity: 0.4;
  filter: blur(60px);
}

.hero__bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
}

.hero__bg-stitch {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(158, 107, 122, 0.12) 20%,
    rgba(158, 107, 122, 0.18) 50%,
    rgba(158, 107, 122, 0.12) 80%,
    transparent 100%
  );
}

.hero__bg-stitch::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 6px;
  height: 0;
  border-bottom: 1px dashed rgba(42, 36, 38, 0.06);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.25rem, 5vw, 3.5rem);
}

@media (min-width: 960px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.72fr);
    gap: clamp(2rem, 4vw, 3.25rem);
  }
}

.hero__copy {
  max-width: 36rem;
}

@media (min-width: 960px) {
  .hero__copy {
    max-width: 32rem;
    padding-right: 0.5rem;
  }
}

.hero__header {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin: 0 0 1.1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.hero__eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose-dust);
  opacity: 0.75;
}

.hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.hero__title-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 4.35rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.hero__title-tag {
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 1.35vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 0.15rem;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.6vw, 1.65rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1.1rem;
  line-height: 1.42;
  max-width: 32rem;
}

.hero__lead {
  margin: 0 0 clamp(1.75rem, 4vw, 2.25rem);
  color: var(--ink-muted);
  font-size: clamp(0.94rem, 1.5vw, 1.02rem);
  font-weight: 400;
  line-height: 1.72;
  max-width: 33rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.75rem;
}

.btn--hero-primary {
  padding: 0.88rem 1.65rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 32px rgba(26, 22, 24, 0.22);
}

.btn--hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  background: rgba(252, 250, 246, 0.72);
  border: 1px solid rgba(26, 22, 24, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s var(--ease-out);
}

.btn--hero-secondary:hover {
  background: rgba(252, 250, 246, 0.95);
  border-color: rgba(139, 92, 108, 0.35);
  color: var(--ink);
}

.btn--hero-secondary:active {
  transform: scale(0.98);
}

.btn--hero-secondary:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

.hero__trust {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.88;
}

.hero__trust-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose-dust);
  opacity: 0.5;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__visual {
    justify-content: flex-end;
  }
}

.hero__visual-card {
  position: relative;
  width: min(100%, 340px);
  padding: clamp(1rem, 3vw, 1.35rem);
  background: rgba(252, 250, 246, 0.5);
  border: 1px solid rgba(252, 250, 246, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 52px rgba(26, 22, 24, 0.08), 0 1px 0 rgba(252, 250, 246, 0.85) inset;
  backdrop-filter: blur(14px);
}

.hero__visual-frame {
  border-radius: calc(var(--radius-md) - 2px);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(252, 250, 246, 0.55) 0%, var(--rose-mist) 100%);
}

.hero__visual-frame--photo {
  position: relative;
  background: #ebe5df;
}

.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 16%;
  display: block;
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    155deg,
    rgba(252, 250, 246, 0.38) 0%,
    transparent 38%,
    transparent 62%,
    rgba(246, 239, 232, 0.45) 100%
  );
}

.hero__visual-caption {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.75;
}

@media (max-width: 959px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: clamp(2rem, 6vw, 3rem);
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__subtitle,
  .hero__lead {
    max-width: 100%;
  }

  .hero__title-brand {
    font-size: clamp(2.45rem, 10.5vw, 3.65rem);
  }

  .hero__title-tag {
    font-size: max(0.7rem, 2.85vw);
    letter-spacing: 0.22em;
  }

  .hero__eyebrow {
    font-size: max(0.65rem, 2.8vw);
    letter-spacing: 0.16em;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero__visual-card {
    width: 100%;
    max-width: min(100%, 300px);
    margin-inline: auto;
  }

  .hero__trust {
    row-gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__visual-card {
    animation: heroCardFloat 14s ease-in-out infinite;
  }
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__visual-card {
    animation: none;
  }
}

/* Faixa de valor (pós-hero) */
.value-strip {
  position: relative;
  z-index: 2;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 36px rgba(26, 22, 24, 0.04);
}

.value-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem 0;
  padding: clamp(1.15rem, 2.5vw, 1.45rem) 0;
}

.value-strip__item {
  flex: 1 1 0;
  min-width: 140px;
  text-align: center;
  padding: 0.35rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.value-strip__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.value-strip__text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.35;
  max-width: 12rem;
}

.value-strip__divider {
  width: 1px;
  align-self: stretch;
  min-height: 2.25rem;
  margin: auto 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(42, 36, 38, 0.08) 30%,
    rgba(42, 36, 38, 0.08) 70%,
    transparent 100%
  );
}

@media (max-width: 720px) {
  .value-strip__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0;
  }

  .value-strip__item {
    flex: none;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
    min-width: 0;
  }

  .value-strip__item:last-child {
    border-bottom: none;
  }

  .value-strip__label {
    min-width: 6.5rem;
    text-align: left;
  }

  .value-strip__text {
    max-width: none;
    flex: 1;
  }

  .value-strip__divider {
    display: none;
  }
}

/* Sobre */
.section--sobre {
  background: var(--bg-soft);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 820px) {
  .sobre__grid {
    grid-template-columns: 1fr;
  }
}

.sobre__text p {
  margin: 0 0 1.15rem;
  color: var(--ink-muted);
}

.sobre__highlight {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--rose-deep);
  line-height: 1.45;
}

.sobre__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.sobre__frame img,
.sobre__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 45%;
  aspect-ratio: 4 / 5;
  display: block;
}

/* Diferenciais */
.section--diferenciais {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-page) 100%);
  border-top: 1px solid var(--line);
}

.pillars-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.15rem, 2.5vw, 1.75rem);
}

@media (max-width: 820px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }
}

.pillar-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 1.85rem);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.pillar-card:hover {
  box-shadow: 0 16px 44px rgba(26, 22, 24, 0.09);
  transform: translateY(-2px);
}

.pillar-card__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--rose-dust);
  opacity: 0.65;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--ink);
  line-height: 1.2;
}

.pillar-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* Serviços */
.section--servicos {
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--rose-mist) 92%);
}

.services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(26, 22, 24, 0.095);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--rose-deep);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.service-card__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Galeria */
.section--vitrine {
  background: var(--bg-soft);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 0.85rem;
}

.gallery__cell {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  min-height: 160px;
}

.gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__img--vitrine {
  object-position: center 22%;
}

.gallery__img--magenta {
  object-position: center 18%;
}

.gallery__img--manequim {
  object-position: center 40%;
}

.gallery__img--vestido {
  object-position: center 12%;
}

.gallery__img--wide-magenta {
  object-position: center 25%;
}

.gallery__img--manequim-alt {
  object-position: center 68%;
}

.gallery__cell--large {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 300px;
}

.gallery__cell--wide {
  grid-column: span 4;
  min-height: 220px;
}

.gallery__cell:not(.gallery__cell--large):not(.gallery__cell--wide) {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(120px, auto);
  }

  .gallery__cell--large,
  .gallery__cell--wide,
  .gallery__cell:not(.gallery__cell--large):not(.gallery__cell--wide) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__cell--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery__cell--wide {
    grid-column: span 2;
    min-height: 200px;
  }

  .gallery__cell--large {
    min-height: 260px;
  }
}

/* Lojas */
.section--lojas.stores-section {
  position: relative;
  background: var(--bg-page);
  overflow: hidden;
}

.stores-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--rose-mist) 0%, transparent 42%),
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(212, 169, 184, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.stores-section .container {
  position: relative;
  z-index: 1;
}

.stores-section__header .section__intro {
  max-width: 38rem;
}

.stores-highlights {
  list-style: none;
  margin: 0 auto 2.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 52rem;
}

.stores-highlights__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.15rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(26, 22, 24, 0.045);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.stores-highlights__num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: normal;
  color: var(--rose-deep);
  line-height: 1;
  min-width: 1.1em;
  text-align: center;
}

.stores-highlights__icon {
  display: flex;
  color: var(--rose-deep);
}

.stores-highlights__text {
  white-space: nowrap;
}

@media (max-width: 520px) {
  .stores-highlights {
    flex-direction: column;
    align-items: center;
  }

  .stores-highlights__item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .stores-highlights__text {
    white-space: normal;
    text-align: center;
  }
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.35rem, 2.8vw, 2rem);
  align-items: stretch;
}

@media (max-width: 720px) {
  .stores-grid {
    grid-template-columns: 1fr;
  }
}

.store-card {
  --store-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-soft);
  border-radius: var(--store-radius);
  border: 1px solid rgba(26, 22, 24, 0.08);
  box-shadow: var(--shadow-lift), 0 1px 0 rgba(252, 250, 246, 0.9) inset;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(26, 22, 24, 0.1), 0 1px 0 rgba(252, 250, 246, 0.95) inset;
}

.store-card__media {
  position: relative;
  padding: 12px 12px 0;
}

.store-card__photo {
  position: relative;
  border-radius: calc(var(--store-radius) - 6px);
  overflow: hidden;
  background: var(--beige);
  box-shadow: 0 1px 0 rgba(42, 36, 38, 0.06);
}

.store-card__index {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 0.35rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: rgba(252, 250, 246, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  border: 1px solid rgba(26, 22, 24, 0.07);
  line-height: 1;
}

.store-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

/* Recorte fino por fachada (fotos verticais em área 16:10) */
.store-card__img--01 {
  object-position: center 32%;
}

.store-card__img--02 {
  object-position: center 28%;
}

.store-card__img--03 {
  object-position: center 22%;
}

.store-card__img--04 {
  object-position: center 30%;
}

.store-card__placeholder {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: clamp(200px, 38vw, 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  overflow: hidden;
}

@media (max-width: 720px) {
  .store-card__placeholder {
    min-height: 220px;
  }
}

.store-card__placeholder-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.22) 11px,
      rgba(255, 255, 255, 0.22) 12px
    ),
    repeating-linear-gradient(
      12deg,
      transparent,
      transparent 17px,
      rgba(42, 36, 38, 0.03) 17px,
      rgba(42, 36, 38, 0.03) 18px
    );
  pointer-events: none;
}

.store-card__placeholder--a {
  background: linear-gradient(145deg, #ead4dc 0%, var(--nude) 48%, var(--beige) 100%);
}

.store-card__placeholder--b {
  background: linear-gradient(160deg, var(--beige) 0%, #dcc9c8 45%, var(--rose-soft) 100%);
}

.store-card__placeholder--c {
  background: linear-gradient(135deg, var(--rose-mist) 0%, var(--rose-dust) 55%, #c49aab 100%);
}

.store-card__placeholder--c .store-card__placeholder-title,
.store-card__placeholder--c .store-card__placeholder-hint,
.store-card__placeholder--c .store-card__placeholder-icon {
  color: rgba(255, 255, 255, 0.95);
}

.store-card__placeholder--c .store-card__placeholder-icon {
  opacity: 0.9;
}

.store-card__placeholder--d {
  background: linear-gradient(155deg, #e8dfd8 0%, var(--rose-soft) 50%, #d8b8c4 100%);
}

.store-card__placeholder-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  max-width: 14rem;
}

.store-card__placeholder-icon {
  color: var(--ink-muted);
  opacity: 0.55;
  margin-bottom: 0.25rem;
}

.store-card__placeholder-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.store-card__placeholder-hint {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.85;
}

.store-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.5rem 1.5rem;
  gap: 0.65rem;
}

@media (min-width: 721px) {
  .store-card__body {
    padding: 1.5rem 1.65rem 1.65rem;
  }
}

.store-card__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.store-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.55rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--ink);
  line-height: 1.2;
}

.store-card__address {
  margin: 0 0 auto;
  padding: 0;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.6;
  color: var(--ink-muted);
}

.store-card__address-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--rose-deep);
  opacity: 0.85;
}

.store-card__address-text {
  flex: 1;
}

.store-card__cta {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, transform 0.2s var(--ease-out), box-shadow 0.25s;
  box-shadow: 0 10px 28px rgba(42, 36, 38, 0.15);
}

.store-card__cta:hover {
  background: var(--rose-deep);
  color: var(--white);
}

.store-card__cta:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

.store-card__cta:active {
  transform: scale(0.99);
}

.store-card__cta-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.stores-grid .store-card.reveal:nth-child(1) {
  transition-delay: 0.04s;
}

.stores-grid .store-card.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.stores-grid .store-card.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.stores-grid .store-card.reveal:nth-child(4) {
  transition-delay: 0.22s;
}

@media (prefers-reduced-motion: reduce) {
  .stores-grid .store-card.reveal {
    transition-delay: 0s !important;
  }
}

/* Confiança / depoimento */
.section--trust {
  padding: clamp(3.75rem, 9vw, 5.5rem) 0;
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.trust-bundle {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
  max-width: 52rem;
  margin-inline: auto;
}

.testimonial-card {
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--rose-soft);
  opacity: 0.55;
  pointer-events: none;
}

.testimonial-card__quote {
  margin: 0;
  padding-top: 0.5rem;
}

.testimonial-card__quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
}

.testimonial-card__cite {
  margin: 1.15rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.trust-brand {
  margin: 0;
  text-align: center;
  padding: 0 0.5rem;
}

.trust-brand__text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0 0 0.85rem;
}

.trust-brand__footer {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
}

/* Contato */
.section--contato {
  padding-bottom: clamp(4rem, 12vw, 7rem);
  background: var(--bg-page);
}

.contato__panel {
  background: linear-gradient(145deg, var(--ink) 0%, #3d3438 45%, var(--rose-deep) 120%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.25rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .contato__panel {
    grid-template-columns: 1fr;
  }
}

.contato__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
}

.contato__lead {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.86);
}

.contato__copy .section__label {
  color: var(--rose-soft);
}

.contato__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contato__hint {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.contato__hint a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contato__hint a:hover {
  color: var(--rose-soft);
}

/* Rodapé */
.site-footer {
  background: linear-gradient(180deg, #252022 0%, var(--ink) 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(2.75rem, 6vw, 3.75rem) 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
}

.site-footer__logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
}

.site-footer__logo:hover {
  color: var(--rose-soft);
}

.site-footer__descriptor {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__pitch {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 28rem;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

@media (max-width: 480px) {
  .site-footer__cols {
    grid-template-columns: 1fr;
  }
}

.site-footer__heading {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.site-footer__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__note {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer__nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--white);
}

.site-footer__bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__legal {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.32);
  font-style: italic;
}

/* Animações scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.12s;
}

/* Menu mobile: evita scroll do fundo quando aberto */
@media (max-width: 880px) {
  body.is-nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

/* ——— Responsividade: leitura, toque e grids ——— */
@media (max-width: 480px) {
  .container {
    width: min(1120px, 100% - 1.25rem);
  }
}

@media (max-width: 640px) {
  .section {
    padding: clamp(2.75rem, 9vw, 4rem) 0;
  }

  .section__header {
    margin-bottom: 2.25rem;
  }

  .section__intro {
    font-size: max(1rem, 3.2vw);
  }

  .section__title {
    font-size: clamp(1.75rem, 6.5vw, 2.5rem);
  }

  .service-card {
    padding: 1.5rem 1.25rem;
  }

  .pillar-card {
    padding: 1.35rem 1.25rem;
  }

  .contato__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .store-card__cta {
    min-height: 48px;
  }
}

@media (max-width: 520px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery__cell--large,
  .gallery__cell--wide,
  .gallery__cell:not(.gallery__cell--large):not(.gallery__cell--wide) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery__cell {
    min-height: 240px;
  }

  .gallery__cell--large {
    min-height: 300px;
  }

  .gallery__cell--wide {
    min-height: 260px;
  }
}

@media (min-width: 521px) and (max-width: 768px) {
  .gallery__cell {
    min-height: 180px;
  }

  .gallery__cell--large {
    min-height: 320px;
  }

  .gallery__cell--wide {
    min-height: 240px;
  }
}
