:root {
  --wine: #6c1424;
  --wine-dark: #26070d;
  --red: #c21f34;
  --rose: #ffe2dd;
  --rose-soft: #fff0ee;
  --cream: #fff9f2;
  --paper: #fffdf9;
  --ink: #2b1718;
  --muted: #715d5f;
  --gold: #c99a48;
  --green: #18864c;
  --line: rgba(102, 18, 34, 0.13);
  --shadow: 0 24px 70px rgba(60, 14, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 8% 4%, rgba(194, 31, 52, 0.24), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(201, 154, 72, 0.2), transparent 26rem),
    linear-gradient(135deg, #fff9f1 0%, #ffecea 42%, #fffdf9 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(102, 18, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 18, 34, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 80%);
}

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

a {
  color: inherit;
}

/* ── TOPBAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
  text-decoration: none;
}

/* Logo no header — tamanho controlado pela altura */
.brand-logo {
  height: 2.6rem;
  width: auto;
  max-width: clamp(10rem, 18vw, 17rem);
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 2.5vw, 2rem);
  color: #5d4548;
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--red);
}

.topbar-button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border: 0;
  border-radius: 999px;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    linear-gradient(135deg, #22ad63, var(--green));
  box-shadow: 0 16px 34px rgba(24, 134, 76, 0.24);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.topbar-button:hover,
.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(24, 134, 76, 0.3);
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100svh - 4.4rem);
  padding: clamp(2.4rem, 5vw, 5.4rem) clamp(1rem, 4vw, 4.5rem) 2.8rem;
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  max-width: 50rem;
}

/* Logo no hero — grande e com destaque */
.hero-logo {
  width: min(32rem, 88vw);
  height: auto;
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 8px 24px rgba(60, 14, 22, 0.18));
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  color: var(--wine-dark);
  font-size: clamp(3.15rem, 7.4vw, 6.9rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.hero-text,
.section-copy p,
.section-heading p,
.final-text {
  color: #5f484b;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.78;
}

.hero-text {
  max-width: 45rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.2rem;
  margin: 1.55rem 0 1.8rem;
}

.purchase-triggers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.35rem 0 1.25rem;
}

.purchase-triggers span {
  padding: 0.58rem 0.72rem;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(60, 14, 22, 0.07);
}

.location-pill {
  display: inline-grid;
  gap: 0.2rem;
  margin-bottom: 1.1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 14px 34px rgba(60, 14, 22, 0.08);
}

.location-pill strong {
  color: var(--wine);
  font-size: 0.92rem;
}

.location-pill span {
  color: var(--muted);
  font-size: 0.88rem;
}

.whatsapp-button {
  min-height: 3.65rem;
  padding: 1rem 1.5rem;
}

.whatsapp-button.small {
  min-height: 3.3rem;
  margin-top: 0.5rem;
}

.secondary-link {
  color: var(--wine);
  font-weight: 800;
  text-decoration-color: rgba(102, 18, 34, 0.35);
  text-underline-offset: 0.25rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.quick-facts div {
  min-width: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.quick-facts dt {
  margin-bottom: 0.35rem;
  color: var(--wine);
  font-weight: 900;
}

.quick-facts dd {
  margin-left: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-stage {
  position: relative;
  align-self: center;
  min-height: auto;
  padding-top: 0;
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 238, 0.72)),
    radial-gradient(circle at 50% 14%, rgba(201, 154, 72, 0.22), transparent 22rem);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  box-shadow: 0 28px 80px rgba(80, 16, 28, 0.18);
}

.hero-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(11rem, 0.8fr);
  grid-template-rows: repeat(2, minmax(13rem, 1fr));
  gap: 0.9rem;
  min-height: clamp(34rem, 70vh, 47rem);
  padding: 1.2rem;
}

.hero-showcase figure,
.editorial-grid figure {
  display: grid;
  place-items: center;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.95), transparent 18rem),
    linear-gradient(145deg, rgba(255, 240, 238, 0.75), rgba(255, 249, 242, 0.82));
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: 0 18px 46px rgba(60, 14, 22, 0.1);
}

.hero-showcase img,
.editorial-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.85rem;
  filter: drop-shadow(0 22px 22px rgba(59, 16, 23, 0.16));
}

.hero-showcase figcaption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.7rem 0.8rem;
  color: var(--wine-dark);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(102, 18, 34, 0.1);
  border-radius: 0.45rem;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.hero-main-photo {
  grid-row: span 2;
}

.hero-main-photo img {
  padding: 0.6rem;
}

/* ── STORE INFO ── */
.store-info {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin: 0 clamp(1rem, 4vw, 4.5rem) clamp(3rem, 6vw, 5rem);
  padding: 1.4rem;
  background: linear-gradient(135deg, #fff, #fff4f1);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 18px 46px rgba(60, 14, 22, 0.08);
}

.store-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Logo na store info */
.store-logo img {
  width: min(16rem, 50vw);
  height: auto;
}

.store-logo strong,
.store-logo small {
  display: block;
}

.store-logo strong {
  color: var(--wine);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 900;
}

.store-logo small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-address {
  display: grid;
  gap: 0.35rem;
  color: #4f383b;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.5;
}

.store-address p {
  margin-bottom: 0;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(1rem, 4vw, 4.5rem) 1rem;
}

.intro-band div {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.intro-band span,
.product-card span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-band p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.sales-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 clamp(1rem, 4vw, 4.5rem) clamp(3rem, 6vw, 5rem);
  padding: 1.2rem;
  color: white;
  background:
    radial-gradient(circle at 18% 0, rgba(255, 255, 255, 0.2), transparent 16rem),
    linear-gradient(135deg, #8a172c, var(--red));
  border-radius: 0.75rem;
  box-shadow: 0 20px 54px rgba(102, 18, 34, 0.18);
}

.sales-strip strong,
.sales-strip span {
  display: block;
}

.sales-strip strong {
  margin-bottom: 0.25rem;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
}

.sales-strip span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.custom-section,
.process-section,
.gallery,
.assortment,
.final-call,
.why-buy,
.gift-match {
  padding: clamp(3.5rem, 7vw, 6.8rem) clamp(1rem, 4vw, 4.5rem);
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(20rem, 1.02fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.section-copy {
  max-width: 48rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 1rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #4d3639;
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  background: var(--red);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(12rem, 0.85fr);
  grid-template-rows: repeat(2, minmax(13rem, 1fr));
  gap: 1rem;
  min-height: clamp(32rem, 54vw, 42rem);
}

.editorial-large {
  grid-row: span 2;
}

.process-section {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.4), rgba(255, 255, 255, 0.65));
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

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

.steps article {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 18px 46px rgba(60, 14, 22, 0.08);
}

.steps article:hover,
.benefit-grid article:hover,
.match-grid article:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(60, 14, 22, 0.13);
}

.steps span {
  display: inline-grid;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  place-items: center;
  color: white;
  background: var(--wine);
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gift-match {
  background:
    radial-gradient(circle at 14% 10%, rgba(201, 154, 72, 0.18), transparent 24rem),
    linear-gradient(135deg, #fff, #fff0ee);
}

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

.match-grid article {
  min-width: 0;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 18px 44px rgba(60, 14, 22, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.match-grid strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--wine);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
}

.match-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.why-buy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 240, 238, 0.6));
  border-block: 1px solid var(--line);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-grid article {
  min-width: 0;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 16px 38px rgba(60, 14, 22, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-grid strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--wine);
  font-weight: 900;
  line-height: 1.25;
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.gallery {
  background: var(--paper);
}

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

.product-card {
  display: grid;
  grid-template-rows: clamp(18rem, 31vw, 25rem) auto;
  min-width: 0;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 18px 44px rgba(60, 14, 22, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card.wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  grid-template-rows: auto;
  align-items: center;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  min-height: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.9), transparent 19rem),
    linear-gradient(145deg, rgba(255, 240, 238, 0.72), rgba(255, 249, 242, 0.72));
  border-radius: 0.35rem;
}

.product-card.wide img {
  min-height: clamp(20rem, 34vw, 29rem);
}

.product-card div {
  padding: 1rem 0.25rem 0.2rem;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.assortment {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.assortment-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

.assortment-images img {
  width: 100%;
  min-height: 15rem;
  object-fit: contain;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 18px 44px rgba(60, 14, 22, 0.08);
}

.assortment-images img:first-child {
  grid-row: span 2;
}

/* ── FINAL CALL ── */
.final-call {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.62fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(195, 32, 53, 0.58), transparent 24rem),
    radial-gradient(circle at 12% 80%, rgba(201, 154, 72, 0.22), transparent 22rem),
    linear-gradient(135deg, var(--wine), var(--wine-dark));
}

.final-call .eyebrow {
  color: #ffd9ab;
}

.final-call h2 {
  max-width: 12ch;
  color: white;
}

/* Logo no final — branca sobre fundo vinho */
.final-logo {
  width: min(22rem, 80vw);
  height: auto;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

.final-text {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.84);
}

.final-call img {
  width: min(100%, 28rem);
  justify-self: center;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.28));
}

/* garante que .final-logo não herda o filter do .final-call img */
.final-call .final-logo {
  filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

.maintenance-note {
  display: grid;
  gap: 0.25rem;
  max-width: 42rem;
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.maintenance-note strong {
  color: #ffe0b4;
  font-size: 1.04rem;
}

.maintenance-note span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.mobile-sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: none;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, #22ad63, var(--green));
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(24, 134, 76, 0.35);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .custom-section,
  .assortment,
  .final-call {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: auto;
  }

  .product-grid,
  .steps,
  .intro-band,
  .benefit-grid,
  .match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-info {
    grid-template-columns: 1fr;
  }

  .final-call img {
    max-height: 30rem;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 4.7rem;
  }

  .topbar {
    position: relative;
    grid-template-columns: 1fr auto;
    gap: 0.65rem;
    padding-inline: 1rem;
  }

  .brand-logo {
    height: 2rem;
    width: auto;
  }

  .brand-text {
    display: none;
  }

  .brand small {
    display: none;
  }

  .topbar-button {
    min-height: 2.75rem;
    padding-inline: 1rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .hero {
    gap: 1.4rem;
    padding-top: 2rem;
  }

  .hero-actions,
  .whatsapp-button,
  .secondary-link {
    width: 100%;
  }

  .quick-facts,
  .product-grid,
  .steps,
  .intro-band,
  .assortment-images,
  .benefit-grid,
  .match-grid {
    grid-template-columns: 1fr;
  }

  .sales-strip {
    display: grid;
  }

  .hero-stage::before {
    inset: 0;
    border-radius: 1rem;
  }

  .hero-showcase,
  .editorial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
    padding: 0.8rem;
  }

  .hero-main-photo,
  .editorial-large {
    grid-row: auto;
  }

  .hero-showcase figure,
  .editorial-grid figure {
    aspect-ratio: 1 / 1.16;
  }

  .store-logo {
    align-items: flex-start;
  }

  .product-card,
  .product-card.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 18.5rem auto;
  }

  .final-call {
    padding-bottom: 5.5rem;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}