/* Lume Veste — vitrine estática (estrutura tipo loja + WhatsApp)
   Paleta: creme #F5F0E6 · marrom #8B5E3C · azul #88A0B0 · ocre #D4A574 · sálvia #A3B18A
   Sem carrinho / checkout. Mobile-first. Sem framework. */

:root {
  --cream: #f5f0e6;
  --cream-deep: #ebe3d4;
  --cream-soft: #faf6ef;
  --brown: #8b5e3c;
  --brown-ink: #6f4a30;
  --brown-deep: #5a3c28;
  --blue: #88a0b0;
  --blue-soft: #a8bcc8;
  --orange: #d4a574;
  --orange-soft: #e0b88e;
  --sage: #a3b18a;
  --sage-soft: #b8c4a3;
  --ink: #5a3c28;
  --muted: #7a6550;
  --line: #e0d5c4;
  --white: #fffdf9;
  --wa: #25d366;
  --wa-dark: #1ebe57;
  --header-h: 4.25rem;
  --wrap: 68rem;
  --ease: 180ms ease;
  --radius: 1rem;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.5rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
table {
  margin: 0;
}

.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;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 100;
  background: var(--brown);
  color: var(--cream);
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
}

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

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  min-height: var(--header-h);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(100% - 1.5rem, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 2.75rem;
  width: auto;
  border-radius: 0.55rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--cream-soft);
  cursor: pointer;
  color: var(--brown);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: var(--ease);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--brown-ink);
  padding: 0.65rem 0.4rem;
  border-radius: 0.5rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--cream-soft);
  color: var(--brown-deep);
}

.site-nav .btn-nav {
  text-align: center;
  margin-top: 0.35rem;
}

body.nav-open {
  overflow: hidden;
}

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

  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem 1rem;
    position: static;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .site-nav a {
    padding: 0.35rem 0.1rem;
    font-size: 0.95rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: transparent;
  }

  .site-nav .btn-nav {
    margin-top: 0;
    margin-left: 0.35rem;
    padding: 0.55rem 1rem;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
    transform var(--ease);
  line-height: 1.2;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-brown {
  background: var(--brown);
  color: var(--cream-soft);
}

.btn-brown:hover,
.btn-brown:focus-visible {
  background: var(--brown-deep);
}

.btn-soft {
  background: var(--blue);
  color: #24343c;
}

.btn-soft:hover,
.btn-soft:focus-visible {
  background: var(--blue-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--brown-ink);
  border-color: var(--brown);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(139, 94, 60, 0.08);
}

.btn-buy {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.25rem 3.2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 165, 116, 0.18), transparent 45%),
    radial-gradient(ellipse at 85% 10%, rgba(136, 160, 176, 0.2), transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(163, 177, 138, 0.16), transparent 50%),
    var(--cream);
}

.hero-deco {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.star {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  background: var(--blue);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  opacity: 0.85;
}

.star-orange {
  background: var(--orange);
}

.star-blue {
  background: var(--blue);
}

.star-tl {
  top: 1.4rem;
  left: 8%;
  width: 1rem;
  height: 1rem;
}

.star-tr {
  top: 2rem;
  right: 10%;
  width: 0.7rem;
  height: 0.7rem;
}

.cloud {
  position: absolute;
  bottom: -0.4rem;
  left: -0.6rem;
  width: 7rem;
  height: 3.4rem;
  background: var(--sage-soft);
  border-radius: 50% 50% 40% 40%;
  opacity: 0.55;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud::before {
  width: 3.2rem;
  height: 3.2rem;
  top: -1.4rem;
  left: 1rem;
}

.cloud::after {
  width: 2.4rem;
  height: 2.4rem;
  top: -0.9rem;
  left: 3.4rem;
}

.rainbow {
  position: absolute;
  right: -1.2rem;
  bottom: -0.2rem;
  width: 7.5rem;
  height: 3.8rem;
  border-radius: 7.5rem 7.5rem 0 0;
  box-shadow:
    0 0 0 0.55rem var(--orange-soft),
    0 0 0 1.1rem var(--blue-soft),
    0 0 0 1.65rem var(--sage-soft);
  opacity: 0.55;
  background: transparent;
}

.hero-inner {
  position: relative;
  width: min(100%, 40rem);
  margin-inline: auto;
}

.hero-logo {
  width: min(72vw, 15rem);
  margin: 0 auto 1.1rem;
  border-radius: 1.25rem;
  box-shadow: 0 12px 40px rgba(90, 60, 40, 0.1);
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 0.75rem;
}

.eyebrow.accent {
  color: var(--orange);
}

.eyebrow.on-cream {
  color: var(--sage);
}

h1 {
  font-size: clamp(1.85rem, 5.5vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brown-deep);
  margin: 0 0 1rem;
  font-weight: 750;
}

.lede {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 36rem;
  margin: 0 auto 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

/* Sections */

.section {
  padding: 3.2rem 0;
}

.section h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  letter-spacing: -0.02em;
  color: var(--brown-deep);
  margin: 0 0 0.55rem;
  font-weight: 750;
}

.section-lead {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 1.8rem;
}

.divider {
  display: block;
  width: 2.6rem;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  margin: 0.7rem 0 1rem;
}

/* Brand story taglines */

.brand-story {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tagline-grid {
  display: grid;
  gap: 1.5rem;
}

.tagline-card {
  display: grid;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(90, 60, 40, 0.05);
}

.tagline-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.tagline-copy {
  padding: 0 1.25rem 1.35rem;
}

.tagline-copy h2 {
  font-size: 1.35rem;
  margin: 0;
}

.tagline-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

@media (min-width: 800px) {
  .tagline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .tagline-card {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .tagline-copy {
    padding: 1.25rem 1.35rem 1.25rem 0.25rem;
  }
}

/* Products */

.produtos {
  background: var(--cream);
}

.collection-title {
  font-size: 1.25rem;
  color: var(--brown);
  margin: 2rem 0 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.collection-title:first-of-type {
  margin-top: 0.5rem;
}

.product-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(90, 60, 40, 0.04);
  transition: box-shadow var(--ease), transform var(--ease);
}

.product-card:hover {
  box-shadow: 0 10px 28px rgba(90, 60, 40, 0.08);
  transform: translateY(-2px);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-media {
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 165, 116, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(136, 160, 176, 0.18), transparent 45%),
    var(--cream-soft);
}

.placeholder-media.accent-sage {
  background:
    radial-gradient(circle at 40% 30%, rgba(163, 177, 138, 0.25), transparent 55%),
    var(--cream-soft);
}

.placeholder-media.accent-blue {
  background:
    radial-gradient(circle at 50% 40%, rgba(136, 160, 176, 0.28), transparent 55%),
    var(--cream-soft);
}

.placeholder-media.accent-ochre {
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 165, 116, 0.28), transparent 55%),
    var(--cream-soft);
}

.placeholder-media img {
  width: 42%;
  max-width: 7.5rem;
  opacity: 0.88;
  border-radius: 0.75rem;
}

.badge-soon {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--brown);
  color: var(--cream-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

.product-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.product-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.product-name {
  font-size: 1.05rem;
  color: var(--brown-deep);
  font-weight: 700;
  line-height: 1.3;
}

.product-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

@media (min-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Quem somos */

.quem-somos {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
}

.quem-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.quem-art img {
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(90, 60, 40, 0.08);
  width: 100%;
  max-width: 28rem;
}

.quem-copy p {
  color: var(--muted);
  margin-bottom: 0.9rem;
  max-width: 36rem;
}

.moment-chips {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.moment-chips li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-ink);
}

.chip-star {
  margin-right: 0.2rem;
}

.chip-star.blue {
  color: var(--blue);
}

.chip-star.orange {
  color: var(--orange);
}

.chip-star.sage {
  color: var(--sage);
}

.fecho-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}

.fecho-thumb {
  width: 5.5rem;
  border-radius: 0.65rem;
}

.fecho-quote {
  flex: 1;
  min-width: 14rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.fecho-quote strong {
  color: var(--brown-deep);
  display: block;
  margin-bottom: 0.25rem;
}

@media (min-width: 820px) {
  .quem-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.4rem;
  }
}

/* Guia de medidas */

.guia {
  background: var(--cream);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 1rem;
}

.measures {
  width: 100%;
  border-collapse: collapse;
  min-width: 28rem;
  font-size: 0.95rem;
}

.measures th,
.measures td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.measures thead th {
  background: var(--cream-soft);
  color: var(--brown-deep);
  font-weight: 700;
}

.measures tbody th {
  color: var(--brown);
  font-weight: 700;
}

.measures tbody tr:last-child th,
.measures tbody tr:last-child td {
  border-bottom: 0;
}

.guia-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.guia-note a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Contato */

.contact {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(163, 177, 138, 0.22), transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(136, 160, 176, 0.2), transparent 40%),
    var(--cream-deep);
  text-align: center;
}

.contact-inner {
  max-width: 40rem;
}

.contact .section-lead {
  margin-inline: auto;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

/* Footer */

.site-footer {
  background: var(--brown-deep);
  color: #e8d8c4;
  padding: 2.4rem 0 1.5rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.footer-brand img {
  width: 3.2rem;
  height: auto;
  border-radius: 0.55rem;
  background: var(--cream);
}

.footer-tag {
  margin-top: 0.55rem;
  color: var(--orange-soft);
  font-weight: 600;
}

.footer-col h3 {
  font-size: 0.95rem;
  color: var(--cream-soft);
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.footer-col p {
  margin: 0;
  color: #d4c4b0;
  line-height: 1.55;
}

.site-footer a {
  color: var(--orange-soft);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 216, 196, 0.18);
  padding-top: 1.1rem;
  text-align: center;
  display: grid;
  gap: 0.35rem;
  color: #cbb9a4;
  font-size: 0.85rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}

/* Floating WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--wa);
  color: #fff;
  padding: 0.75rem 1rem 0.75rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: background var(--ease), transform var(--ease);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--wa-dark);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .whatsapp-float-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .whatsapp-float {
    width: 3.4rem;
    height: 3.4rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}
