:root {
  --cream: #f7f3ec;
  --cream-deep: #efe8dc;
  --paper: #fdfbf8;
  --ink: #1a1814;
  --ink-soft: #4a433a;
  --muted: #7a7166;
  --gold: #c4a265;
  --gold-deep: #9a7438;
  --gold-soft: #e8d7b3;
  --line: rgba(154, 116, 56, 0.22);
  --header: #f7f3ec;
  --header-text: #1a1814;
  --footer: #efe8dc;
  --radius: 1.25rem;
  --shadow: 0 24px 60px rgba(26, 24, 20, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
}

h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 400;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow--place {
  white-space: nowrap;
  max-width: 100%;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 36rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}

.btn--gold:hover {
  background: var(--gold-deep);
  color: #fff;
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(26, 24, 20, 0.04);
}

.header__inner {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__brand img {
  height: 3.4rem;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  color: var(--header-text);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.82;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.nav a:hover {
  opacity: 1;
  color: var(--gold-deep);
}

.nav .btn--gold {
  opacity: 1;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(196, 162, 101, 0.35);
  background: transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0.55rem;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  margin: 5px 0;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* Hero */
.hero {
  width: min(1200px, calc(100% - 2rem));
  margin: 3.5rem auto 2rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.hero__visual {
  margin: 0;
  border-radius: calc(var(--radius) + 0.4rem);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--cream {
  background: var(--cream);
}

.intro {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.intro--center {
  margin-inline: auto;
  text-align: center;
}

.intro--city {
  max-width: none;
}

.city-title {
  white-space: nowrap;
  font-size: clamp(0.84rem, 4.4vw, 2.05rem);
  letter-spacing: -0.045em;
}

.intro--center p:last-child {
  margin-inline: auto;
  max-width: 36rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.6rem;
  min-height: 100%;
}

.pillar__n {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.split__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}

.split__copy strong {
  color: var(--ink);
  font-weight: 500;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

.cards--two {
  grid-template-columns: 1fr 1fr;
}

.cards--four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 24, 20, 0.04);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
}

.card__body {
  padding: 1.25rem 1.2rem 1.4rem;
}

.card__body p {
  font-size: 0.95rem;
  margin: 0;
}

.card--featured {
  border-color: rgba(154, 116, 56, 0.45);
}

.vacuo {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.25rem);
  overflow: hidden;
}

.vacuo figure {
  margin: 0;
}

.vacuo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 380px;
  object-fit: cover;
  object-position: center 40%;
}

.vacuo > div {
  padding: 1.75rem 1.75rem 1.75rem 0.25rem;
}

.cta {
  margin: 0 1.25rem;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.55), rgba(14, 14, 14, 0.72)),
    url("../assets/loja-embalagem-20260819-1404.jpg") center / cover no-repeat;
  border-radius: calc(var(--radius) + 0.5rem);
  color: #f7f3ec;
  text-align: center;
}

.cta h2,
.cta p,
.cta .eyebrow {
  color: #f7f3ec;
}

.cta .eyebrow {
  color: var(--gold-soft);
}

.cta p {
  max-width: 34rem;
  margin-inline: auto  auto;
  margin-bottom: 1.75rem;
  opacity: 0.9;
}

.cta__inner {
  max-width: 40rem;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.1rem;
}

.contact__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.35rem;
  width: 20.5rem;
  max-width: 100%;
  flex: 0 0 20.5rem;
  padding: 1.15rem 1.25rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-sizing: border-box;
  text-align: left;
  transition: border-color 0.3s var(--ease), transform 0.35s var(--ease);
}

.contact__item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.contact__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact__item strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.contact__item span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact__item--email strong {
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: -0.03em;
}

.footer {
  background: var(--footer);
  color: var(--ink);
  text-align: center;
  padding: 3rem 1.25rem 5.5rem;
  border-top: 1px solid var(--line);
}

.footer__inner {
  width: min(720px, 100%);
  margin-inline: auto;
}

.footer img {
  height: 3.6rem;
  width: auto;
  margin: 0 auto 1.25rem;
}

.footer p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer__nl {
  display: inline;
}

.footer a {
  color: var(--gold-deep);
}

.footer a:hover {
  color: var(--ink);
}

.footer__copy {
  margin-top: 1.25rem;
  font-size: 0.8rem !important;
  opacity: 0.7;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  z-index: 40;
  transition: transform 0.3s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 1.7rem;
  height: 1.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.32s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .card,
  .btn,
  .contact__item {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .cards--four,
  .vacuo,
  .pillars {
    grid-template-columns: 1fr;
  }

  .eyebrow--place {
    font-size: clamp(0.52rem, 2.9vw, 0.72rem);
    letter-spacing: 0.07em;
  }

  .cards--two {
    grid-template-columns: 1fr 1fr;
  }

  .vacuo > div {
    padding: 1.4rem 1.4rem 1.6rem;
  }

  .nav-toggle {
    display: block;
    z-index: 60;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto auto;
    top: 0;
    right: 0;
    width: min(20rem, 86vw);
    height: 100vh;
    background: var(--header);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 1.75rem 2rem;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 40px rgba(26, 24, 20, 0.08);
  }

  .nav.is-open {
    transform: none;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .hero {
    margin-top: 1.75rem;
  }

  .eyebrow--place {
    font-size: clamp(0.52rem, 2.85vw, 0.72rem);
    letter-spacing: 0.06em;
  }

  .cards--two,
  .cards--four {
    grid-template-columns: 1fr;
  }

  .contact__item {
    flex: 1 1 100%;
    width: 100%;
    max-width: 20.5rem;
  }

  .header__brand img {
    height: 2.8rem;
  }

  .contact__item--email strong {
    font-size: 0.78rem;
  }

  .footer__sep {
    display: none;
  }

  .footer__nl {
    display: block;
  }

  .cta {
    margin-inline: 0.85rem;
  }
}
