: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;
}

.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%;
}

.site-header:not(.scrolled) .nav-link {
  color: var(--ivory);
}

.site-header:not(.scrolled) .nav-link::after {
  background: var(--ivory);
}

.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: flex-end;
  overflow: hidden;
  background: var(--chocolate);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.3s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 7s ease-out;
}

.hero-slide.is-active img {
  transform: scale(1.06);
}

.hero-scrim {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(35, 21, 18, 0.32) 0%, rgba(35, 21, 18, 0.1) 34%, rgba(26, 16, 13, 0.58) 76%, rgba(18, 11, 9, 0.82) 100%),
    linear-gradient(90deg, rgba(29, 18, 15, 0.75) 0%, rgba(29, 18, 15, 0.32) 48%, rgba(29, 18, 15, 0) 70%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 190px 0 165px;
}

.hero-content .eyebrow {
  color: var(--rose-mist);
}

.hero-content h1 {
  color: var(--ivory);
}

.hero-content h1 em {
  color: var(--rose-mist);
}

.hero-text {
  max-width: 560px;
  margin-bottom: 33px;
  color: rgba(255, 250, 247, 0.82);
  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: rgba(255, 250, 247, 0.78);
  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(--rose-mist);
  border-radius: 50%;
}

.hero-proof strong {
  color: var(--ivory);
}

.hero-carousel-nav {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 46px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 250, 247, 0.4);
  border: none;
  border-radius: 999px;
  transition: width 0.4s ease, background 0.4s ease;
}

.hero-carousel-dot:hover {
  background: rgba(255, 250, 247, 0.7);
}

.hero-carousel-dot.is-active {
  width: 30px;
  background: var(--ivory);
}

.hero-carousel-arrows {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-carousel-count {
  min-width: 44px;
  color: rgba(255, 250, 247, 0.7);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.hero-carousel-arrow {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ivory);
  background: rgba(255, 250, 247, 0.12);
  border: 1px solid rgba(255, 250, 247, 0.35);
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-carousel-arrow:hover,
.hero-carousel-arrow:focus-visible {
  color: var(--wine);
  background: var(--ivory);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

.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 .section-heading > p:last-child {
  max-width: 590px;
  margin: 20px auto 0;
  color: var(--muted);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.instagram-post {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.instagram-post-header {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 10px 14px;
}

.instagram-post-header > img {
  width: 42px;
  height: 42px;
  margin-right: 10px;
  padding: 4px;
  background: var(--ivory);
  border: 2px solid var(--rose);
  border-radius: 50%;
  object-fit: contain;
}

.instagram-post-header div {
  min-width: 0;
  line-height: 1.25;
}

.instagram-post-header strong,
.instagram-post-header span {
  display: block;
}

.instagram-post-header strong {
  overflow: hidden;
  color: var(--chocolate);
  font-size: 0.76rem;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.instagram-post-header div span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.65rem;
}

.instagram-post-menu {
  margin-left: auto;
  padding-left: 8px;
  color: var(--chocolate);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.instagram-post-media {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--ivory-2);
}

.instagram-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.instagram-post:hover .instagram-post-media img {
  transform: scale(1.035);
}

.instagram-post-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 54px;
  padding: 12px 15px;
}

.instagram-post-footer svg {
  width: 23px;
  fill: none;
  stroke: var(--chocolate);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.instagram-post-footer .instagram-save {
  margin-left: auto;
}

.instagram-cta {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  margin-top: clamp(32px, 4vw, 48px);
}

.instagram-button {
  gap: 10px;
}

.instagram-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-button .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.instagram-cta > span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.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-content {
    max-width: 620px;
  }

  .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;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .experience-grid,
  .about-grid,
  .tasting-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
    padding: 150px 0 130px;
    text-align: center;
  }

  .hero-content .eyebrow,
  .hero-proof,
  .hero-actions {
    justify-content: center;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .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);
  }

  .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-content {
    padding: 130px 0 190px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin: auto;
    text-align: left;
  }

  .hero-carousel-nav {
    right: 16px;
    bottom: 28px;
    left: 16px;
    flex-direction: column-reverse;
    gap: 16px;
  }

  .hero-carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .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;
  }

  .instagram-grid {
    overflow-x: auto;
    grid-template-columns: none;
    grid-auto-columns: min(82vw, 345px);
    grid-auto-flow: column;
    margin-right: -13px;
    margin-left: -13px;
    padding: 4px 13px 22px;
    scroll-padding-inline: 13px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--rose) transparent;
  }

  .instagram-post {
    scroll-snap-align: center;
  }

  .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;
  }
}

/* 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);
  }
}

/* =========================================================
   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;
  min-height: 780px;
  padding: 145px 0 95px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(214, 160, 138, 0.22), transparent 25%),
    linear-gradient(135deg, var(--ivory) 0%, #fbf2ee 52%, #f2dfd8 100%);
}

.sweets-page-orbit {
  position: absolute;
  border: 1px solid rgba(139, 81, 61, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.sweets-page-orbit-one {
  right: -210px;
  bottom: -260px;
  width: 680px;
  height: 680px;
}

.sweets-page-orbit-two {
  top: 130px;
  left: -135px;
  width: 315px;
  height: 315px;
}

.sweets-page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.sweets-page-hero-copy {
  max-width: 690px;
}

.sweets-page-hero-copy > p:not(.eyebrow) {
  max-width: 630px;
  color: var(--muted);
  font-size: 1.08rem;
}

.sweets-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.sweets-page-hero-visual {
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
}

.sweets-page-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: 48% 48% 26px 26px;
  box-shadow: var(--shadow);
}

.sweets-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sweets-page-hero-visual:hover .sweets-page-photo img {
  transform: scale(1.025);
}

.sweets-page-stamp {
  position: absolute;
  right: -42px;
  bottom: 55px;
  display: flex;
  width: 170px;
  height: 170px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--wine);
  background: rgba(255, 250, 247, 0.96);
  border: 1px solid rgba(185, 116, 88, 0.25);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transform: rotate(4deg);
}

.sweets-page-stamp strong {
  font-family: var(--font-script);
  font-size: 2rem;
  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: -20px;
}

.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: auto;
  }

  .sweets-page-hero-grid,
  .sweets-story-grid,
  .sweets-tasting-call-grid {
    grid-template-columns: 1fr;
  }

  .sweets-page-hero-copy {
    max-width: 760px;
    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-visual {
    width: min(78%, 500px);
    justify-self: center;
  }

  .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 {
    padding: 118px 0 75px;
  }

  .sweets-page-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sweets-page-hero-visual {
    width: 88%;
  }

  .sweets-page-stamp {
    right: -18px;
    bottom: 30px;
    width: 130px;
    height: 130px;
  }

  .sweets-page-stamp strong {
    font-size: 1.55rem;
  }

  .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;
  }
}

/* =========================================================
   PAGINA CONTATO
   ========================================================= */

.contact-page-hero {
  position: relative;
  display: flex;
  min-height: clamp(520px, 62svh, 640px);
  align-items: center;
  overflow: hidden;
  padding: 126px 0 68px;
  background: var(--chocolate);
}

.contact-page-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(38, 20, 17, 0.88) 0%, rgba(51, 27, 23, 0.73) 38%, rgba(51, 27, 23, 0.2) 72%, rgba(38, 20, 17, 0.08) 100%),
    linear-gradient(0deg, rgba(38, 20, 17, 0.28), transparent 42%);
}

.contact-page-glow {
  display: none;
}

.contact-page-glow-one {
  top: 120px;
  left: -90px;
  width: 250px;
  height: 250px;
}

.contact-page-glow-two {
  top: 166px;
  left: -42px;
  width: 150px;
  height: 150px;
}

.contact-page-hero-grid {
  position: static;
  display: block;
}

.contact-page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--white);
}

.contact-page-hero-copy h1 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(3.4rem, 5.25vw, 5.65rem);
  text-wrap: balance;
}

.contact-page-hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.contact-page-hero-copy .breadcrumb,
.contact-page-hero-copy .breadcrumb a,
.contact-page-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.contact-page-hero-copy .eyebrow::before {
  background: var(--rose-mist);
}

.contact-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-page-hero-actions .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
}

.contact-page-hero-actions .button-outline:hover {
  color: var(--chocolate);
  background: var(--white);
  border-color: var(--white);
}

.contact-page-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 26px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  list-style: none;
}

.contact-page-highlights li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-page-highlights li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--copper);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-page-hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
}

.contact-page-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-page-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  display: none;
}

.contact-page-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 62% 52%;
  transition: transform 0.9s ease;
}

.contact-page-hero-visual:hover .contact-page-photo img {
  transform: scale(1.025);
}

.contact-page-note {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 80px);
  bottom: 46px;
  min-width: 210px;
  padding: 22px 30px;
  color: var(--ivory);
  background: var(--wine);
  border: 1px solid rgba(255, 250, 247, 0.42);
  border-radius: 22px 22px 60px 22px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transform: rotate(-2deg);
}

.contact-page-note span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-page-note strong {
  display: block;
  color: var(--rose-mist);
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.contact-page-seal {
  display: none;
}

.contact-page-seal::before,
.contact-page-seal::after {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px solid rgba(185, 116, 88, 0.28);
  border-radius: inherit;
}

.contact-page-seal::after {
  inset: 14px;
  border-style: dashed;
}

.contact-page-seal span,
.contact-page-seal strong {
  position: relative;
  z-index: 1;
}

.contact-page-seal span {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page-seal strong {
  margin: 3px 0;
  color: var(--copper-dark);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 0.95;
}

.contact-shortcuts {
  position: relative;
  z-index: 4;
  margin-top: -28px;
}

.contact-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(100, 47, 44, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 65px rgba(68, 36, 28, 0.12);
}

.contact-shortcut-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  min-height: 142px;
  padding: 28px 26px;
  transition: color 0.25s ease, background 0.25s ease;
}

.contact-shortcut-card + .contact-shortcut-card {
  border-left: 1px solid var(--line);
}

.contact-shortcut-card:hover,
.contact-shortcut-card:focus-visible {
  color: var(--white);
  background: var(--wine);
}

.contact-shortcut-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--copper-dark);
  background: var(--ivory-2);
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease;
}

.contact-shortcut-card:hover .contact-shortcut-icon,
.contact-shortcut-card:focus-visible .contact-shortcut-icon {
  color: var(--wine);
  background: var(--rose-mist);
}

.contact-shortcut-icon svg {
  width: 24px;
  fill: currentColor;
}

.contact-shortcut-card small,
.contact-shortcut-card strong,
.contact-shortcut-card em {
  display: block;
}

.contact-shortcut-card small {
  margin-bottom: 2px;
  color: var(--copper-dark);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.contact-shortcut-card:hover small,
.contact-shortcut-card:focus-visible small {
  color: var(--rose-mist);
}

.contact-shortcut-card strong {
  color: var(--chocolate);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.05;
  transition: color 0.25s ease;
}

.contact-shortcut-card:hover strong,
.contact-shortcut-card:focus-visible strong {
  color: var(--white);
}

.contact-shortcut-card em {
  overflow: hidden;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.contact-shortcut-card:hover em,
.contact-shortcut-card:focus-visible em {
  color: rgba(255, 255, 255, 0.67);
}

.contact-shortcut-card b {
  color: var(--copper);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.contact-shortcut-card:hover b,
.contact-shortcut-card:focus-visible b {
  color: var(--rose-mist);
  transform: translateX(4px);
}

.contact-form-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 70%, rgba(214, 160, 138, 0.12), transparent 25%),
    var(--ivory);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(48px, 7vw, 90px);
}

.contact-form-copy {
  position: sticky;
  top: 125px;
}

.contact-form-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-form-image {
  position: relative;
  overflow: hidden;
  margin-top: 36px;
  border: 7px solid var(--white);
  border-radius: 28px 110px 28px 28px;
  box-shadow: var(--shadow-soft);
}

.contact-form-image img {
  width: 100%;
  aspect-ratio: 1.25 / 0.9;
  object-fit: cover;
}

.contact-form-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(48, 26, 21, 0.43));
}

.contact-form-image-caption {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 26px;
  color: var(--white);
}

.contact-form-image-caption span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-image-caption strong {
  display: block;
  color: var(--rose-mist);
  font-family: var(--font-script);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1;
}

.contact-help-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 25px;
  padding: 25px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.contact-help-number {
  color: var(--copper);
  font-family: var(--font-serif);
  font-size: 2.1rem;
  line-height: 1;
}

.contact-help-card h3 {
  margin: 0 0 7px;
  font-size: 1.45rem;
}

.contact-help-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.contact-form-card {
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  border: 1px solid rgba(100, 47, 44, 0.11);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(68, 36, 28, 0.11);
}

.contact-form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 31px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.contact-form-heading span {
  color: var(--chocolate);
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
}

.contact-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
}

.contact-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-field label {
  margin-bottom: 8px;
  color: var(--chocolate);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(100, 47, 44, 0.18);
  color: var(--chocolate);
  background: #fffdfb;
  border-radius: 13px;
  outline: none;
  font: 500 0.84rem/1.5 var(--font-sans);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-field select {
  cursor: pointer;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #aa948c;
  font-weight: 400;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--copper);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(185, 116, 88, 0.1);
}

.contact-field input[aria-invalid="true"],
.contact-field select[aria-invalid="true"],
.contact-field textarea[aria-invalid="true"] {
  border-color: #a53d3d;
  background: #fffafa;
}

.field-error {
  min-height: 18px;
  padding-top: 4px;
  color: #9c3737;
  font-size: 0.65rem;
}

.contact-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
  margin-top: 8px;
  cursor: pointer;
}

.contact-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.contact-consent > span {
  position: relative;
  display: block;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(100, 47, 44, 0.28);
  background: var(--white);
  border-radius: 6px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-consent > span::after {
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 9px;
  content: "";
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-consent input:checked + span {
  border-color: var(--wine);
  background: var(--wine);
}

.contact-consent input:checked + span::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.contact-consent input:focus-visible + span {
  outline: 2px solid var(--copper-dark);
  outline-offset: 3px;
}

.contact-consent input[aria-invalid="true"] + span {
  border-color: #a53d3d;
}

.contact-consent small {
  color: var(--muted);
  font-size: 0.68rem;
}

.consent-error {
  display: block;
  padding-left: 32px;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-form-footer > p {
  display: flex;
  max-width: 280px;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.5;
}

.contact-form-footer > p svg {
  width: 17px;
  min-width: 17px;
  fill: var(--copper-dark);
}

.contact-submit {
  min-width: 225px;
  cursor: pointer;
}

.contact-submit span {
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.contact-submit:hover span,
.contact-submit:focus-visible span {
  transform: translateX(4px);
}

.contact-form-status {
  display: none;
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: 11px;
  font-size: 0.73rem;
}

.contact-form-status.is-success,
.contact-form-status.is-error {
  display: block;
}

.contact-form-status.is-success {
  color: #245b3a;
  background: #edf8f0;
  border: 1px solid #cbe8d3;
}

.contact-form-status.is-error {
  color: #8f3030;
  background: #fff1f1;
  border: 1px solid #f0cccc;
}

.contact-steps {
  background: var(--ivory-2);
}

.contact-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.contact-step-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 38px 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(100, 47, 44, 0.11);
  border-radius: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-step-card::after {
  position: absolute;
  right: -46px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(185, 116, 88, 0.2);
  border-radius: 50%;
}

.contact-step-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.contact-step-card > span {
  display: block;
  margin-bottom: 50px;
  color: var(--copper);
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1;
}

.contact-step-card h3 {
  font-size: 2rem;
}

.contact-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-faq {
  background: var(--ivory);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.contact-faq-heading {
  position: sticky;
  top: 130px;
}

.contact-faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-faq-heading .text-link {
  display: inline-flex;
  margin-top: 10px;
}

.contact-faq-list .accordion {
  border-top: 1px solid var(--line);
}

.contact-faq-list .accordion:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-final-cta {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 50%, rgba(214, 160, 138, 0.19), transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(214, 160, 138, 0.12), transparent 24%),
    linear-gradient(135deg, #4b2d27 0%, #2d1d19 100%);
}

.contact-final-cta::before,
.contact-final-cta::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-final-cta::before {
  top: -230px;
  left: -180px;
  width: 520px;
  height: 520px;
}

.contact-final-cta::after {
  right: -230px;
  bottom: -280px;
  width: 650px;
  height: 650px;
}

.contact-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.contact-final-cta-inner > img {
  width: 125px;
  margin: 0 auto 12px;
  filter: brightness(1.12);
}

.contact-final-cta .eyebrow {
  justify-content: center;
  color: var(--rose-mist);
}

.contact-final-cta h2 {
  color: var(--white);
}

.contact-final-cta-inner > p:not(.eyebrow) {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1080px) {
  .contact-shortcut-card {
    padding: 25px 18px;
  }

  .contact-shortcut-icon {
    width: 46px;
    height: 46px;
  }

  .contact-shortcut-card strong {
    font-size: 1.38rem;
  }

  .contact-form-layout {
    grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .contact-page-hero {
    min-height: 570px;
    padding-bottom: 62px;
  }

  .contact-form-layout,
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-hero-copy {
    max-width: 650px;
  }

  .contact-page-hero-visual {
    width: 100%;
  }

  .contact-page-note { display: none; }

  .contact-shortcuts-grid {
    grid-template-columns: 1fr;
  }

  .contact-shortcut-card + .contact-shortcut-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-shortcut-card {
    min-height: 118px;
  }

  .contact-form-copy,
  .contact-faq-heading {
    position: static;
  }

  .contact-form-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 26px;
  }

  .contact-form-copy > .eyebrow,
  .contact-form-copy > h2,
  .contact-form-copy > p {
    grid-column: 1 / -1;
  }

  .contact-form-image {
    margin-top: 0;
  }

  .contact-help-card {
    align-self: stretch;
    margin-top: 0;
  }

  .contact-steps-grid {
    grid-template-columns: 1fr;
  }

  .contact-step-card {
    min-height: 0;
  }

  .contact-step-card > span {
    margin-bottom: 32px;
  }
}

@media (max-width: 620px) {
  .contact-page-hero {
    min-height: 560px;
    padding: 108px 0 52px;
  }

  .contact-page-hero::before {
    background:
      linear-gradient(90deg, rgba(38, 20, 17, 0.88), rgba(38, 20, 17, 0.46)),
      linear-gradient(0deg, rgba(38, 20, 17, 0.38), transparent 48%);
  }

  .contact-page-hero-copy h1 {
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .contact-page-hero-copy > p:not(.eyebrow),
  .contact-page-highlights {
    display: none;
  }

  .contact-page-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-page-hero-visual {
    width: 100%;
  }

  .contact-page-photo {
    border-radius: 0;
  }

  .contact-page-photo img {
    object-position: 66% 52%;
  }

  .contact-shortcuts {
    margin-top: -20px;
  }

  .contact-shortcuts-grid {
    border-radius: 18px;
  }

  .contact-shortcut-card {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 108px;
    padding: 22px 18px;
  }

  .contact-shortcut-card b {
    display: none;
  }

  .contact-shortcut-card em {
    font-size: 0.62rem;
  }

  .contact-form-copy {
    display: block;
  }

  .contact-form-image {
    margin-top: 30px;
    border-width: 6px;
    border-radius: 22px 70px 22px 22px;
  }

  .contact-help-card {
    margin-top: 20px;
  }

  .contact-form-card {
    padding: 25px 18px;
    border-radius: 22px;
  }

  .contact-form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .contact-fields-grid {
    grid-template-columns: 1fr;
  }

  .contact-field-full {
    grid-column: auto;
  }

  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-footer > p {
    max-width: none;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
  }

  .contact-step-card {
    padding: 30px 25px;
  }

  .contact-final-cta {
    padding: 82px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page-photo img,
  .contact-shortcut-card,
  .contact-shortcut-icon,
  .contact-shortcut-card b,
  .contact-step-card,
  .contact-submit span,
  .contact-consent > span,
  .contact-consent > span::after {
    transition: none !important;
  }
}
