:root {
  --ivory: #fffaf7;
  --ivory-2: #f8eee9;
  --rose-mist: #f2dfd8;
  --rose: #d6a08a;
  --copper: #b97458;
  --copper-dark: #8b513d;
  --wine: #642f2c;
  --chocolate: #3d2924;
  --text: #59433c;
  --muted: #856f67;
  --white: #ffffff;
  --line: rgba(100, 47, 44, 0.15);
  --shadow: 0 25px 70px rgba(74, 42, 33, 0.13);
  --shadow-soft: 0 14px 40px rgba(74, 42, 33, 0.08);
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 46px;
  --container: min(1180px, calc(100% - 40px));
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
  --font-script: "Parisienne", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--chocolate);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 6.5vw, 6.6rem);
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--copper-dark);
  font-family: var(--font-script);
  font-size: 1.05em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

p {
  margin-bottom: 1.35em;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 125px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--wine);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--copper-dark);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid var(--wine);
  color: var(--white);
  background: var(--wine);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(100, 47, 44, 0.2);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  box-shadow: 0 16px 38px rgba(100, 47, 44, 0.27);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--wine);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.button-small {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 0.78rem;
}

.button-light {
  color: var(--wine);
  background: var(--ivory);
  border-color: var(--ivory);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--wine);
  background: var(--white);
  border-color: var(--white);
}

.button-ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.button-ghost-light:hover,
.button-ghost-light:focus-visible {
  color: var(--wine);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.text-link span {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 94px;
  border-bottom: 1px solid transparent;
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  height: 78px;
  border-color: var(--line);
  background: rgba(255, 250, 247, 0.93);
  box-shadow: 0 8px 30px rgba(61, 41, 36, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 155px 1fr auto;
  align-items: center;
  gap: 25px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 126px;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 100%;
  transition: width 0.3s ease;
}

.scrolled .brand img {
  width: 94px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.nav-link {
  position: relative;
  padding: 10px 0;
  color: var(--chocolate);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  transition: color 0.22s ease;
}

.sweets-page .site-header:not(.scrolled) .nav-link {
  color: var(--white);
}

.sweets-page .site-header:not(.scrolled) .nav-link:hover,
.sweets-page .site-header:not(.scrolled) .nav-link:focus-visible {
  color: var(--chocolate);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  width: 0;
  height: 1px;
  margin: auto;
  content: "";
  background: var(--copper-dark);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--chocolate);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  padding: 145px 0 90px;
  background:
    radial-gradient(circle at 12% 14%, rgba(214, 160, 138, 0.24), transparent 26%),
    linear-gradient(135deg, var(--ivory) 0%, #fbf2ee 52%, #f3e0d9 100%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -28%;
  width: 48vw;
  height: 48vw;
  content: "";
  border: 1px solid rgba(139, 81, 61, 0.22);
  border-radius: 50%;
}

.hero-decoration {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(139, 81, 61, 0.16);
  border-radius: 50%;
}

.hero-decoration-one {
  top: 14%;
  left: -8%;
  width: 280px;
  height: 280px;
}

.hero-decoration-two {
  top: 18%;
  left: -4%;
  width: 160px;
  height: 160px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 0.8fr);
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
}

.hero-copy {
  max-width: 690px;
  padding-top: 35px;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 33px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 38px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-proof span {
  position: relative;
  padding-left: 18px;
}

.hero-proof span::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--copper);
  border-radius: 50%;
}

.hero-proof strong {
  color: var(--chocolate);
}

.hero-visual {
  position: relative;
  width: min(100%, 545px);
  justify-self: end;
}

.hero-image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 48% 48% 24px 24px;
  box-shadow: var(--shadow);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.hero-visual:hover .hero-image-frame img {
  transform: scale(1.025);
}

.hero-signature {
  position: absolute;
  z-index: 3;
  right: -78px;
  bottom: 70px;
  padding: 22px 28px;
  color: var(--wine);
  background: rgba(255, 250, 247, 0.94);
  border: 1px solid rgba(185, 116, 88, 0.2);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  line-height: 1.05;
  transform: rotate(-2deg);
}

.hero-seal {
  position: absolute;
  z-index: 4;
  top: 55px;
  left: -74px;
  width: 145px;
  height: 145px;
  padding: 8px;
  background: var(--ivory);
  border: 1px solid rgba(185, 116, 88, 0.25);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.hero-seal img {
  width: 100%;
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-indicator i {
  display: block;
  width: 1px;
  height: 36px;
  overflow: hidden;
  background: var(--line);
}

.scroll-indicator i::after {
  display: block;
  width: 100%;
  height: 14px;
  content: "";
  background: var(--copper-dark);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-16px); }
  100% { transform: translateY(40px); }
}

.experience {
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.experience-media {
  position: relative;
}

.experience-media picture {
  overflow: hidden;
  border-radius: 24px 120px 24px 24px;
  box-shadow: var(--shadow-soft);
}

.experience-media img {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  right: -28px;
  bottom: -30px;
  display: flex;
  width: 205px;
  height: 205px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  background: var(--wine);
  border: 10px solid var(--white);
  border-radius: 50%;
  text-align: center;
}

.experience-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-badge strong {
  font-family: var(--font-script);
  font-size: 2.2rem;
  font-weight: 400;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
}

.section-copy .text-link {
  margin-top: 12px;
}

.featured {
  overflow: hidden;
  background: var(--ivory-2);
}

.featured::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px solid rgba(139, 81, 61, 0.16);
  border-radius: 50%;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 55px;
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.sweets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 330px);
  gap: 18px;
}

.sweet-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sweet-card-large {
  grid-row: span 2;
}

.sweet-card picture,
.sweet-card img {
  width: 100%;
  height: 100%;
}

.sweet-card img {
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sweet-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(44, 24, 20, 0.75), transparent 58%);
}

.sweet-card:hover img {
  transform: scale(1.055);
}

.sweet-card-content {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
  color: var(--white);
}

.sweet-card-content span {
  display: block;
  margin-bottom: 3px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sweet-card-content h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.about {
  overflow: hidden;
  background: var(--white);
}

.about-shape {
  position: absolute;
  top: 8%;
  left: -10%;
  width: 550px;
  height: 730px;
  background: var(--rose-mist);
  border-radius: 52% 48% 45% 55%;
  transform: rotate(12deg);
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(75px, 10vw, 145px);
}

.about-portrait {
  position: relative;
  min-height: 690px;
}

.about-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 180px 180px 28px 28px;
  box-shadow: var(--shadow);
}

.about-image-main img {
  width: 100%;
  aspect-ratio: 0.79;
  object-fit: cover;
}

.about-image-detail {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 52%;
  overflow: hidden;
  border: 9px solid var(--white);
  border-radius: 25px;
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
}

.about-image-detail img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
}

.about-copy blockquote {
  margin: 30px 0 35px;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--copper);
  color: var(--wine);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.25;
}

.differentials {
  background: var(--chocolate);
}

.differentials .eyebrow,
.differentials h2 {
  color: var(--ivory);
}

.differentials .section-heading {
  margin-bottom: 48px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.differential-card {
  padding: 38px 28px 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 22px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.differential-card:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(214, 160, 138, 0.3);
  transform: translateY(-6px);
}

.icon-wrap {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  color: var(--rose);
  border: 1px solid rgba(214, 160, 138, 0.35);
  border-radius: 50%;
}

.icon-wrap svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.differential-card h3 {
  min-height: 60px;
  color: var(--ivory);
  font-size: 1.75rem;
  line-height: 1.02;
}

.differential-card p {
  margin-bottom: 0;
  color: rgba(255, 250, 247, 0.66);
  font-size: 0.85rem;
}

.tasting {
  background: var(--ivory);
}

.tasting-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(60px, 9vw, 125px);
}

.tasting-image {
  position: relative;
}

.tasting-image picture {
  overflow: hidden;
  border-radius: 170px 26px 26px 26px;
  box-shadow: var(--shadow);
}

.tasting-image img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}

.tasting-tag {
  position: absolute;
  right: -35px;
  bottom: 40px;
  padding: 14px 22px;
  color: var(--white);
  background: var(--wine);
  border: 7px solid var(--ivory);
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.tasting-steps {
  display: grid;
  gap: 8px;
  margin: 32px 0 38px;
  padding: 0;
  list-style: none;
}

.tasting-steps li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--chocolate);
  font-size: 0.9rem;
  font-weight: 600;
}

.tasting-steps span {
  color: var(--copper-dark);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  min-height: 420px;
  border-radius: 18px;
}

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 0.65s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-wide {
  border-radius: 120px 18px 18px 18px;
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 26px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}

.instagram-link > span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.instagram-link a {
  color: var(--wine);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}

.faq {
  background: var(--ivory-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(55px, 8vw, 110px);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 26px 50px 26px 0;
  color: var(--chocolate);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
  list-style: none;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--copper-dark);
  transition: transform 0.25s ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 650px;
  padding: 0 45px 25px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(100, 47, 44, 0.98), rgba(90, 43, 39, 0.93)),
    url("assets/images/mesa-doces.jpg") center / cover;
}

.contact-cta::before,
.contact-cta::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.contact-cta::before {
  top: -210px;
  left: -120px;
  width: 500px;
  height: 500px;
}

.contact-cta::after {
  right: -180px;
  bottom: -320px;
  width: 650px;
  height: 650px;
}

.contact-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
}

.contact-logo {
  width: 135px;
  margin: 0 auto 15px;
  filter: brightness(1.1);
}

.contact-cta .eyebrow {
  justify-content: center;
  color: var(--rose-mist);
}

.contact-cta h2 {
  color: var(--white);
}

.contact-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.75);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.site-footer {
  padding: 85px 0 26px;
  color: rgba(255, 250, 247, 0.68);
  background: #2d1d19;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.75fr 0.8fr 1.25fr;
  gap: 55px;
  padding-bottom: 65px;
}

.footer-brand img {
  width: 120px;
  margin-bottom: 16px;
  filter: brightness(1.15);
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
  font-size: 0.82rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  font-size: 0.8rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-cta .text-link {
  margin-top: 12px;
  color: var(--rose);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #25d366;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(24, 126, 64, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  box-shadow: 0 14px 38px rgba(24, 126, 64, 0.36);
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--copper-dark);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 125px 1fr auto;
  }

  .main-nav {
    gap: 20px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.75fr);
    gap: 55px;
  }

  .hero-signature {
    right: -25px;
  }

  .hero-seal {
    left: -45px;
  }

  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .section {
    padding: 92px 0;
  }

  .site-header,
  .site-header.scrolled {
    height: 76px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand,
  .scrolled .brand img {
    width: 88px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 90px 30px 40px;
    background: rgba(255, 250, 247, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 12px;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .sweets-page .site-header:not(.scrolled) .nav-link {
    color: var(--chocolate);
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 95px;
  }

  .hero-grid,
  .experience-grid,
  .about-grid,
  .tasting-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 700px;
    padding-top: 0;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-proof,
  .hero-actions {
    justify-content: center;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    width: min(82%, 510px);
    margin-top: 15px;
    justify-self: center;
  }

  .hero-signature {
    right: -55px;
    bottom: 65px;
  }

  .hero-seal {
    top: 40px;
    left: -58px;
  }

  .experience-grid {
    gap: 80px;
  }

  .experience-media img {
    min-height: 440px;
  }

  .sweets-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 360px);
  }

  .sweet-card-large {
    grid-row: span 1;
  }

  .about-grid {
    gap: 65px;
  }

  .about-portrait {
    width: min(100%, 620px);
    margin: auto;
  }

  .about-copy {
    max-width: 650px;
    margin: auto;
  }

  .tasting-grid {
    gap: 65px;
  }

  .tasting-image {
    width: min(100%, 680px);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-wide {
    grid-column: 1 / -1;
  }

  .faq-grid {
    gap: 25px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 26px, 520px);
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  h1 em {
    white-space: normal;
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .section {
    padding: 78px 0;
  }

  .eyebrow {
    font-size: 0.67rem;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin: auto;
    text-align: left;
  }

  .hero-visual {
    width: 86%;
    margin-top: 28px;
  }

  .hero-image-frame {
    border-width: 7px;
    border-radius: 44% 44% 20px 20px;
  }

  .hero-signature {
    right: -25px;
    bottom: 24px;
    padding: 15px 18px;
    font-size: 1.55rem;
  }

  .hero-seal {
    top: 24px;
    left: -34px;
    width: 100px;
    height: 100px;
  }

  .scroll-indicator {
    display: none;
  }

  .experience-media picture {
    border-radius: 18px 70px 18px 18px;
  }

  .experience-media img {
    min-height: 350px;
  }

  .experience-badge {
    right: -5px;
    bottom: -42px;
    width: 155px;
    height: 155px;
    border-width: 7px;
  }

  .experience-badge strong {
    font-size: 1.7rem;
  }

  .sweets-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .sweet-card,
  .sweet-card-large {
    min-height: 360px;
  }

  .about-shape {
    left: -45%;
  }

  .about-portrait {
    min-height: 520px;
  }

  .about-image-main {
    width: 78%;
    border-radius: 130px 130px 22px 22px;
  }

  .about-image-detail {
    width: 52%;
  }

  .about-copy blockquote {
    font-size: 1.35rem;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .differential-card h3 {
    min-height: 0;
  }

  .tasting-image picture {
    border-radius: 90px 20px 20px 20px;
  }

  .tasting-tag {
    right: -3px;
    bottom: 18px;
    border-width: 5px;
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: auto;
    border-radius: 70px 18px 18px 18px;
  }

  .gallery-item {
    min-height: 360px;
  }

  .instagram-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .instagram-link a {
    overflow-wrap: anywhere;
  }

  .accordion summary {
    font-size: 1.35rem;
  }

  .contact-actions {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-cta {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   PAGINA NOSSOS DOCES
   ========================================================= */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb a {
  transition: color 0.2s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--wine);
}

.sweets-page-hero {
  position: relative;
  display: flex;
  min-height: clamp(720px, 92vh, 940px);
  align-items: flex-end;
  padding: 150px 0 90px;
  overflow: hidden;
  background: var(--chocolate);
}

.sweets-page-hero-media,
.sweets-page-hero-shade {
  position: absolute;
  inset: 0;
}

.sweets-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.015);
  animation: sweets-hero-image 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sweets-page-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(35, 20, 17, 0.9) 0%, rgba(43, 25, 21, 0.7) 38%, rgba(38, 21, 17, 0.16) 72%),
    linear-gradient(0deg, rgba(35, 20, 17, 0.66) 0%, transparent 45%, rgba(35, 20, 17, 0.12) 100%);
}

.sweets-page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: end;
  gap: 40px;
}

.sweets-page-hero-copy {
  max-width: 720px;
}

.sweets-page-hero-copy .breadcrumb {
  color: rgba(255, 250, 247, 0.66);
}

.sweets-page-hero-copy .breadcrumb a:hover,
.sweets-page-hero-copy .breadcrumb a:focus-visible,
.sweets-page-hero-copy .eyebrow {
  color: #f0b89f;
}

.sweets-page-hero-copy h1 {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3.8rem, 6.6vw, 7rem);
  text-wrap: balance;
}

.sweets-page-hero-copy h1 em {
  color: #f3c1aa;
}

.sweets-page-hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 250, 247, 0.8);
  font-size: 1.02rem;
}

.sweets-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.sweets-page-hero-actions .button {
  color: var(--wine);
  background: var(--ivory);
  border-color: var(--ivory);
  box-shadow: 0 14px 34px rgba(24, 12, 10, 0.2);
}

.sweets-page-hero-actions .button:hover,
.sweets-page-hero-actions .button:focus-visible {
  background: var(--white);
  border-color: var(--white);
}

.sweets-page-hero-actions .button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.sweets-page-hero-actions .button-outline:hover,
.sweets-page-hero-actions .button-outline:focus-visible {
  color: var(--wine);
  background: var(--white);
}

.sweets-page-stamp {
  position: relative;
  display: flex;
  width: 156px;
  height: 156px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  justify-self: end;
  margin-bottom: 4px;
  color: var(--white);
  background: rgba(46, 25, 21, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  text-align: center;
  transform: rotate(3deg);
}

.sweets-page-stamp strong {
  font-family: var(--font-script);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.sweets-page-stamp span {
  margin-top: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sweets-intro {
  position: relative;
  z-index: 3;
  margin-top: -24px;
}

@keyframes sweets-hero-image {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.015); }
}

.sweets-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.sweets-intro article {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 30px;
}

.sweets-intro article + article {
  border-left: 1px solid var(--line);
}

.sweets-intro article > span {
  color: var(--copper-dark);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1;
}

.sweets-intro strong {
  display: block;
  margin-bottom: 4px;
  color: var(--chocolate);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.05;
}

.sweets-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.sweets-catalog-section {
  background: var(--white);
}

.sweets-catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 26px;
  margin: 52px 0 18px;
  padding: 18px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.catalog-search {
  position: relative;
  display: block;
}

.catalog-search svg {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 19px;
  fill: none;
  stroke: var(--copper-dark);
  stroke-width: 1.8;
  transform: translateY(-50%);
  pointer-events: none;
}

.catalog-search input {
  width: 100%;
  min-height: 50px;
  padding: 12px 18px 12px 50px;
  color: var(--chocolate);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  font: inherit;
  font-size: 0.82rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-search input:focus {
  border-color: rgba(139, 81, 61, 0.55);
  box-shadow: 0 0 0 4px rgba(185, 116, 88, 0.11);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.catalog-filter {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.catalog-filter:hover,
.catalog-filter:focus-visible {
  color: var(--wine);
  border-color: rgba(100, 47, 44, 0.35);
  transform: translateY(-1px);
}

.catalog-filter.active {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.catalog-results-line {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sweets-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.catalog-sweet-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 32px rgba(74, 42, 33, 0.055);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.catalog-sweet-card:hover {
  border-color: rgba(185, 116, 88, 0.35);
  box-shadow: 0 20px 44px rgba(74, 42, 33, 0.11);
  transform: translateY(-6px);
}

.catalog-sweet-card[hidden] {
  display: none !important;
}

.catalog-sweet-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.16 / 1;
  background: var(--rose-mist);
}

.catalog-sweet-image picture,
.catalog-sweet-image img {
  width: 100%;
  height: 100%;
}

.catalog-sweet-image img {
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-sweet-card:hover .catalog-sweet-image img {
  transform: scale(1.045);
}

.catalog-sweet-image > span {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 7px 11px;
  color: var(--wine);
  background: rgba(255, 250, 247, 0.92);
  border: 1px solid rgba(185, 116, 88, 0.17);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-sweet-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 25px 23px;
}

.catalog-sweet-copy h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.02;
}

.catalog-sweet-copy p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.catalog-interest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.catalog-interest span {
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.catalog-interest:hover span,
.catalog-interest:focus-visible span {
  transform: translateX(4px);
}

.catalog-empty {
  padding: 60px 25px;
  background: var(--ivory);
  border: 1px dashed rgba(139, 81, 61, 0.3);
  border-radius: 22px;
  text-align: center;
}

.catalog-empty strong {
  display: block;
  margin-bottom: 5px;
  color: var(--chocolate);
  font-family: var(--font-serif);
  font-size: 2rem;
}

.catalog-empty p {
  margin: 0;
  color: var(--muted);
}

.sweets-story-section {
  overflow: hidden;
  background: var(--ivory-2);
}

.sweets-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.sweets-story-media {
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 26px 150px 26px 26px;
  box-shadow: var(--shadow);
}

.sweets-story-media img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
}

.sweets-story-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.sweets-story-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 36px;
  padding: 0;
  list-style: none;
}

.sweets-story-list li {
  position: relative;
  padding: 12px 0 12px 27px;
  border-bottom: 1px solid var(--line);
  color: var(--chocolate);
  font-size: 0.86rem;
  font-weight: 600;
}

.sweets-story-list li::before {
  position: absolute;
  top: 1.25em;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--copper);
  border-radius: 50%;
}

.sweets-tasting-call {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 22%, rgba(214, 160, 138, 0.23), transparent 25%),
    linear-gradient(135deg, #4a2d27 0%, #2f1d19 100%);
}

.sweets-tasting-call-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.68fr);
  align-items: center;
  gap: 70px;
}

.sweets-tasting-copy .eyebrow,
.sweets-tasting-copy h2 {
  color: var(--ivory);
}

.sweets-tasting-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 250, 247, 0.7);
}

.sweets-tasting-numbers {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 28px;
}

.sweets-tasting-numbers > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sweets-tasting-numbers strong {
  color: var(--rose-mist);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.8;
}

.sweets-tasting-numbers span {
  color: rgba(255, 250, 247, 0.7);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.sweets-tasting-numbers i {
  width: 1px;
  height: 74px;
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1020px) {
  .sweets-page-hero {
    min-height: 760px;
  }

  .sweets-page-hero-grid,
  .sweets-story-grid,
  .sweets-tasting-call-grid {
    grid-template-columns: 1fr;
  }

  .sweets-page-hero-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .sweets-page-hero-copy .eyebrow,
  .sweets-page-hero-actions {
    justify-content: center;
  }

  .sweets-page-hero-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .sweets-page-hero-shade {
    background:
      linear-gradient(0deg, rgba(35, 20, 17, 0.86) 0%, rgba(39, 22, 18, 0.58) 58%, rgba(35, 20, 17, 0.22) 100%),
      linear-gradient(90deg, rgba(35, 20, 17, 0.3), rgba(35, 20, 17, 0.3));
  }

  .sweets-page-stamp {
    display: none;
  }

  .breadcrumb {
    justify-content: center;
  }

  .sweets-intro-grid {
    grid-template-columns: 1fr;
  }

  .sweets-intro article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .sweets-catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    justify-content: flex-start;
  }

  .sweets-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sweets-story-media img {
    min-height: 420px;
  }

  .sweets-tasting-numbers {
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  .sweets-page-hero {
    min-height: 720px;
    padding: 118px 0 64px;
  }

  .sweets-page-hero-media img {
    object-position: center 54%;
  }

  .sweets-page-hero-copy h1 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .sweets-page-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sweets-intro {
    margin-top: 0;
    padding: 0 0 20px;
    background: var(--ivory);
  }

  .sweets-catalog-toolbar {
    margin-top: 38px;
    padding: 13px;
  }

  .catalog-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .catalog-filter {
    flex: 0 0 auto;
  }

  .sweets-catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-sweet-image {
    aspect-ratio: 1.28 / 1;
  }

  .sweets-story-media {
    border-width: 7px;
    border-radius: 22px 80px 22px 22px;
  }

  .sweets-story-media img {
    min-height: 330px;
  }

  .sweets-tasting-numbers {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }

  .sweets-tasting-numbers i {
    width: 100%;
    height: 1px;
  }

  .sweets-tasting-numbers > div {
    justify-content: center;
  }
}

/* O menu mobile precisa escapar da altura do header para ocupar a viewport. */
@media (max-width: 860px) {
  body.menu-open .site-header,
  body.menu-open .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .menu-open .main-nav {
    height: 100vh;
    height: 100dvh;
  }

  body.menu-open .site-header:not(.scrolled) .main-nav .nav-link {
    color: var(--chocolate);
  }
}
