:root {
  --background: oklch(0.98 0.018 77); --foreground: oklch(0.28 0.032 48);
  --primary: oklch(0.34 0.128 17); --primary-dark: oklch(0.26 0.099 18);
  --primary-foreground: oklch(0.98 0.018 77); --accent: oklch(0.66 0.102 65);
  --accent-light: oklch(0.76 0.09 73); --muted: oklch(0.93 0.035 75);
  --muted-foreground: oklch(0.46 0.04 47); --border: oklch(0.86 0.04 72);
  --whatsapp: oklch(0.68 0.18 145); --whatsapp-dark: oklch(0.5 0.145 145);
  --paper: oklch(0.995 0.008 78); --shadow: 0 16px 42px oklch(0.3 0.07 35 / .12);
  --serif: Georgia, "Times New Roman", serif; --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: var(--sans); line-height: 1.55; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.bi { line-height: 1; display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; font-style: normal; color: inherit; flex: none; }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: var(--serif); color: var(--primary); line-height: 1.05; }
h1 { font-size: clamp(2.55rem, 5.2vw, 5.25rem); letter-spacing: 0; }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); letter-spacing: 0; }
h3 { letter-spacing: 0; }

.site-header {
    height: 72px;
    padding: 0 max(6vw, 28px);

    display: grid;
    grid-template-columns: 150px 1fr 180px;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 50;

    background-color: #faedde;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 50%;
}

@media (width > 900px) {
    .site-header {
        overflow: visible;
    }

    .site-header .brand {
        position: relative;
        height: 72px;
    }

    .site-header .brand img {
        position: absolute;
        left: 0;
        top: 8px;
        width: 130px;
        height: 130px;
        z-index: 60;
        pointer-events: auto;
        transition: width .3s ease, height .3s ease, top .3s ease;
    }

    .site-header.scrolled .brand img {
        width: 58px;
        height: 58px;
        top: 7px;
    }
}

@media (width > 900px) and (prefers-reduced-motion: reduce) {
    .site-header .brand img {
        transition: none;
    }
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    margin: 0;
}

.nav a {
    position: relative;

    padding: 24px 0 8px;

    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 600;

    color: var(--foreground);
    border: 0;
}

.nav a::after {
    content: "";
    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transform: translateX(-50%);
    transition: width 0.2s ease;
}

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

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a.active {
    color: var(--primary);
}

.wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background: var(--whatsapp-dark);
    color: var(--primary-foreground);

    border-radius: 10px;
    font-family: var(--sans);
    font-weight: 400;

    transition: transform 0.2s, background 0.2s;
}

.wa b,
.wa strong {
    font-weight: 400;
}

.wa small,
.wa .phone-number {
    letter-spacing: .06em;
}

.wa:hover {
    transform: translateY(-2px);
    background: var(--whatsapp);
}

.wa > .bi {
    width: 26px;
    height: 26px;
    font-size: 26px;
}

.header-wa {
    justify-self: end;
    min-width: 164px;
    padding: 9px 16px;
    gap: 14px;
    background: #006b2b;
    color: #fffaf2;
    border-radius: 11px;
}

.header-wa:hover {
    background: #005923;
}

.header-wa span {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
}

.header-wa b {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.2;
}

.header-wa small {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.3;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 10px;
}

.menu-toggle .bi {
    display: flex;
    width: 25px;
    height: 26px;
    font-size: 25px;
    color: var(--primary);
}

.hero {
    min-height: clamp(540px, 42vw, 600px);
    display: flex;
    align-items: center;
    padding: 90px max(6vw, 70px) 44px;
    background-color: #faedde;
    background-image:
        linear-gradient(180deg, #faedde 0%, rgba(250,237,222,.45) 12%, transparent 40%),
        linear-gradient(90deg, #faedde 0%, rgba(250,237,222,.8) 25%, rgba(250,237,222,.2) 50%, transparent 70%),
        url("assets/hero.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-copy { width: min(530px, 44vw); }
.eyebrow,.section-heading span { display: block; color: var(--primary); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 12px; }
.hero .eyebrow { color: #000; font-size: .75rem; font-weight: 400; letter-spacing: .26em; margin-bottom: 12px; }
.hero-copy h1 { margin-bottom: 18px; font-size: clamp(2.8rem, 4vw, 4.1rem); line-height: 1; font-weight: 700; }
.hero .intro { max-width: 460px; margin-bottom: 18px; font-size: .98rem; line-height: 1.4; }
.hero-wa { width: 330px; max-width: 100%; padding: 12px 16px; margin: 0 0 22px; gap: 10px; border-radius: 999px; text-align: left; }
.hero-wa span { display: flex; flex-direction: column; min-width: 0; }
.hero-wa b { font-size: .875rem; line-height: 1.25; }
.hero-wa small { font-size: .8rem; line-height: 1.4; }
.hero-wa strong { display: inline-flex; margin-left: auto; font-size: 1rem; }
.hero .benefit-row { display: flex; flex-wrap: nowrap; align-items: center; gap: clamp(12px, 1.4vw, 20px); color: var(--primary); font-family: var(--serif); font-size: .75rem; line-height: 1.25; }
.hero .benefit-row span { display: inline-flex; align-items: center; gap: 6px; }
.hero .benefit-row .bi { font-size: 1.15rem; }
.script { position: absolute; z-index: 2; right: 5%; top: 7%; color: var(--primary); font-family: cursive; font-size: clamp(1.4rem,2.5vw,2.2rem); font-style: italic; transform: rotate(-5deg); line-height: 1.15; }

.section { padding: 76px max(4vw,20px); }
.section-heading { text-align: center; margin-bottom: 35px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading span { margin-bottom: 7px; }
#produtos .section-heading h2,
.products-band .section-heading h2,
.story .section-heading h2,
.why .section-heading h2,
.occasions .section-heading h2,
.testimonials .section-heading h2 { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2vw, 24px); font-size: clamp(1.6rem, 3vw, 2.6rem); margin-bottom: 6px; }
#produtos .section-heading h2::before,
#produtos .section-heading h2::after,
.products-band .section-heading h2::before,
.products-band .section-heading h2::after,
.story .section-heading h2::before,
.story .section-heading h2::after,
.why .section-heading h2::before,
.why .section-heading h2::after,
.occasions .section-heading h2::before,
.occasions .section-heading h2::after,
.testimonials .section-heading h2::before,
.testimonials .section-heading h2::after { content: ""; width: clamp(28px, 4vw, 52px); height: 1px; background: var(--primary); opacity: .7; flex: none; }
#produtos .section-heading span,
.products-band .section-heading span,
.story .section-heading span,
.why .section-heading span,
.occasions .section-heading span,
.testimonials .section-heading span { margin: 0; color: var(--foreground); font-family: var(--serif); font-size: clamp(.6rem, 1vw, .75rem); font-weight: 400; letter-spacing: .16em; }
.category-grid,.product-grid { max-width: 1320px; margin: auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.category-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; border-radius: 10px; background: var(--primary); box-shadow: 0 10px 28px rgba(70,20,25,.10); cursor: pointer; transition: transform .25s ease, box-shadow .25s ease; }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(70,20,25,.16); }
.product-card:hover { transform: translateY(-5px); }
.category-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; flex: none; }
.category-card > div { position: relative; flex: 1; min-height: 100px; padding: 16px 52px 16px 16px; color: var(--primary-foreground); }
.category-card h3 { color: #fff; font-family: var(--serif); font-size: 1.35rem; font-weight: 700; margin: 0 0 4px; }
.category-card p { color: rgba(255,255,255,.88); font-size: .9rem; line-height: 1.3; margin: 0; }
.category-card .category-arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--accent-light); color: var(--primary); }

.products-band { background: var(--paper); }
.product-card { overflow: hidden; background: var(--background); border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 8px 25px oklch(0.3 0.04 40 / .07); transition: transform .25s; }
.product-card img { width: 100%; aspect-ratio: 1.22; object-fit: cover; }
.product-card > div { position: relative; padding: 15px 42px 18px 15px; }
.product-card h3 { margin-bottom: 5px; font-size: 1.15rem; }
.product-card p { margin: 0; color: var(--muted-foreground); font-size: .88rem; line-height: 1.35; }
.product-card span { position: absolute; right: 16px; top: 14px; color: var(--accent); font-size: 1.4rem; }
.products-band .product-card { position: relative; }
.product-order { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; background: rgba(104,19,38,.82); color: #fff; font-size: 1.1rem; font-weight: 700; letter-spacing: .12em; opacity: 0; transition: opacity .2s ease; }
.product-card:hover .product-order,
.product-order:focus-visible { opacity: 1; }
.product-order:focus-visible { outline-offset: -4px; }
@media (prefers-reduced-motion: reduce) {
  .product-order { transition: none; }
}
.outline-btn { display: block; margin: 32px auto 0; border: 1px solid var(--primary); border-radius: 99px; padding: 11px 20px; color: var(--primary); background: transparent; font-weight: 700; cursor: pointer; }
.outline-btn:hover { background: var(--primary); color: var(--primary-foreground); }

.story { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--primary); }
.story-image { min-height: 570px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { align-self: center; max-width: 670px; padding: 70px clamp(28px,7vw,100px); color: var(--primary-foreground); }
.story .section-heading h2,
.story .section-heading span { color: #fff; }
.story .section-heading h2::before,
.story .section-heading h2::after { background: #fff; }
.story-copy p { font-size: 1.05rem; }
.story-copy a { display: inline-block; margin-top: 12px; color: var(--accent-light); font-weight: 800; border-bottom: 1px solid currentColor; }

.why { background: #f9ecddd; }
.why-grid { max-width: 1140px; margin: auto; display: grid; grid-template-columns: repeat(4,1fr); }
.why-grid article { text-align: center; padding: 14px 28px; border-right: 1px solid var(--border); }
.why-grid article:last-child { border: 0; }
.why-grid .bi { display: flex; color: var(--primary); font-size: 2.6rem; height: 54px; }
.why-grid h3 { font-size: 1.25rem; margin: 5px 0 8px; }
.why-grid p { font-size: .9rem; margin: 0; }

.occasions { display: grid; grid-template-columns: .65fr 1.35fr; align-items: center; gap: 45px; padding: 80px max(5vw,24px); background: var(--paper); }
.occasion-heading { padding-left: 4vw; max-width: 470px; }
.occasions .section-heading .occasion-title { font: inherit; color: inherit; letter-spacing: inherit; text-transform: none; }
.occasion-title-break { display: none; }
@media (width > 900px) {
  .occasions .section-heading h2 { font-size: clamp(1.6rem, 2.6vw, 2.6rem); gap: 12px; }
  .occasions .section-heading h2::before,
  .occasions .section-heading h2::after { width: clamp(20px, 2vw, 32px); }
  .occasion-title { white-space: nowrap; }
  .occasion-title-break { display: inline; }
}
.occasion-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.occasion-grid article { position: relative; border-radius: 7px; overflow: hidden; min-height: 180px; }
.occasion-grid article:after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,var(--primary-dark)); }
.occasion-grid img { width: 100%; height: 100%; object-fit: cover; position: absolute; }
.occasion-grid h3 { position: absolute; z-index: 2; bottom: 14px; left: 14px; right: 10px; margin: 0; color: var(--primary-foreground); font-size: 1.12rem; }

.testimonials { background: var(--background); }
.placeholder-note { text-align: center; color: var(--muted-foreground); font-size: .8rem; margin: -24px 0 26px; }
.testimonial-grid { max-width: 1150px; margin: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
blockquote { margin: 0; padding: 25px; background: var(--paper); border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 8px 22px oklch(0.3 0.04 40 / .06); }
.stars { color: var(--accent); letter-spacing: .13em; }
.stars .bi { margin-right: .13em; letter-spacing: 0; }
blockquote p { margin: 12px 0; font-family: var(--serif); font-size: 1.06rem; }
blockquote footer { font-weight: 800; font-size: .82rem; color: var(--primary); }

.cta-banner { min-height: 390px; display: grid; grid-template-columns: 1.05fr .95fr; background: var(--primary); color: var(--primary-foreground); overflow: hidden; }
.cta-banner > div { position: relative; align-self: center; padding: 70px max(5vw,24px); }
.cta-banner h2 { color: inherit; margin-bottom: 10px; }
.cta-banner .script { top: 20px; right: 6%; color: var(--accent-light); font-size: 1.35rem; }
.cta-banner .wa { padding: 13px 18px; margin-top: 12px; }
.cta-banner > img { width: 100%; height: 100%; max-height: 450px; object-fit: cover; }

.contact { padding: 58px max(6vw,24px); display: grid; grid-template-columns: 120px 1fr auto; gap: 35px; align-items: center; background: var(--muted); }
.contact > img { border-radius: 50%; }
.contact h2 { margin-bottom: 8px; }
.contact p { margin-bottom: 0; }
.contact-links { display: grid; gap: 10px; }
.contact-links a { display: flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 800; }
.contact-links .bi-whatsapp { width: 22px; height: 22px; font-size: 22px; color: var(--whatsapp-dark); }

.location { background: var(--paper); }
.location-bar { margin: 0; padding: 16px 20px; font-style: normal; text-align: center; background: var(--primary-dark); color: #fff; }
.location-link { display: inline-flex; align-items: center; justify-content: center; gap: 12px; color: inherit; font-size: .9rem; }
.location-link:hover { text-decoration: underline; }
.location-map { display: block; width: 100%; height: clamp(280px, 35vw, 380px); border: 0; }

.footer { background: var(--primary-dark); color: var(--primary-foreground); padding: 36px max(6vw,24px) 18px; }
.footer-top { display: flex; justify-content: space-between; gap: 30px; }
.footer-top b { font-family: var(--serif); font-size: 1.6rem; }
.footer-top p { margin: 4px 0; opacity: .8; }
.footer nav { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.footer-bottom { border-top: 1px solid color-mix(in oklab,var(--primary-foreground) 20%,transparent); margin-top: 28px; padding-top: 16px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px 24px; text-align: left; font-size: .8rem; opacity: .75; }
.footer-bottom > a { margin-left: auto; }
.footer-bottom > a:hover { text-decoration: underline; }
.floating-wa { position: fixed; z-index: 40; right: 22px; bottom: 22px; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); color: var(--primary-foreground); box-shadow: 0 8px 24px oklch(0.35 0.13 145 / .4); }
.floating-wa .bi { width: 30px; height: 30px; font-size: 30px; }

@media (max-width: 900px) {
  .site-header {
      height: 72px;
      padding: 0 20px;

      display: flex;
      align-items: center;
      gap: 12px;
  }

  .brand img {
      width: 60px;
      height: 60px;
  }

  .menu-toggle {
      display: block;
  }

  .nav {
      display: none;

      position: absolute;
      top: 72px;
      left: 0;
      right: 0;

      padding: 16px 24px 24px;

      flex-direction: column;
      align-items: flex-start;
      gap: 4px;

      background: #f0dfca;
      box-shadow: var(--shadow);
  }

  .nav.open {
      display: flex;
  }

  .nav a {
      width: 100%;
      padding: 11px 0;
  }

  .nav a::after {
      display: none;
  }

  .header-wa {
      margin-left: auto;
      min-width: auto;
  }
  .hero { padding: 48px 32px; background-image: linear-gradient(180deg, #faedde 0%, rgba(250,237,222,.45) 12%, transparent 40%), linear-gradient(90deg, #faedde 0%, rgba(250,237,222,.85) 40%, rgba(250,237,222,.2) 68%, transparent 85%), url("assets/hero.png"); background-position: 68% center; }
  .hero-copy { width: min(460px, 65vw); }
  .hero-copy h1 { font-size: clamp(2.5rem, 5vw, 2.8rem); }
  .hero .intro,
  .hero .benefit-row { position: relative; isolation: isolate; }
  .hero .intro::before,
  .hero .benefit-row::before {
      content: "";
      position: absolute;
      inset: -6px -10px;
      z-index: -1;
      background: linear-gradient(90deg, rgba(250,237,222,.32), rgba(250,237,222,.18));
      border-radius: 12px;
      filter: blur(8px);
      pointer-events: none;
  }
  .category-grid,.product-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); gap: 24px 0; }
  .why-grid article:nth-child(2) { border-right: 0; }
  .occasions { grid-template-columns: 1fr; }
  .occasion-heading { padding: 0; max-width: none; text-align: center; }
  .contact { grid-template-columns: 90px 1fr; }
  .contact-links { grid-column: 2; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 72px; }
  .header-wa { width: 43px; height: 43px; padding: 0; border-radius: 50%; }
  .header-wa span { display: none; }
  .hero { min-height: 0; display: block; padding: 44px 20px 280px; background-image: linear-gradient(180deg, #faedde 0%, #faedde calc(100% - 300px), rgba(250,237,222,.9) calc(100% - 270px), transparent calc(100% - 210px)), linear-gradient(90deg, rgba(250,237,222,.45), transparent 70%), url("assets/hero.png"); background-size: 100% 100%, 100% 100%, auto 320px; background-position: center, center, right bottom; }
  .hero-copy { width: 100%; max-width: 460px; }
  .hero-copy h1 { font-size: clamp(2rem, 7.5vw, 2.8rem); }
  .hero .benefit-row { flex-wrap: wrap; gap: 12px 16px; }
  .section { padding: 55px 16px; }
  .category-grid { gap: 10px; }
  .category-card > div { padding: 13px 42px 13px 13px; }
  .category-card h3 { font-size: 1.2rem; }
  .category-card .category-arrow { right: 10px; width: 25px; height: 25px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card img { aspect-ratio: 1.45; }
  .story { grid-template-columns: 1fr; }
  .story-image { min-height: 360px; }
  .story-copy { padding: 48px 22px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-grid article { padding: 10px 13px; }
  .why-grid p { font-size: .82rem; }
  .occasions { padding: 55px 16px; gap: 25px; }
  .occasion-grid { grid-template-columns: repeat(2,1fr); gap: 9px; }
  .occasion-grid article { min-height: 150px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cta-banner { display: flex; flex-direction: column; }
  .cta-banner > div { padding: 58px 20px 35px; }
  .cta-banner .wa { width: 100%; font-size: .9rem; }
  .cta-banner > img { height: 250px; }
  .contact { grid-template-columns: 70px 1fr; gap: 20px; padding: 45px 20px; }
  .contact-links { grid-column: 1 / -1; }
  .footer-top { flex-direction: column; }
  .footer nav { gap: 12px 18px; }
  .floating-wa { right: 16px; bottom: 16px; }
}

@media (max-width: 380px) {
  .category-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: appear .7s ease both; }
  @keyframes appear { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
}

/* Static refactor helpers */
[hidden] { display: none !important; }

.menu-toggle {
  cursor: pointer;
}

.menu-toggle:focus-visible,
.outline-btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
