: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;
}

.rose-em {
  color: var(--rose-mist) !important;
}

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%;
}

.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;
  }

  .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 DEGUSTACAO ===== */
.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;
}

.tasting-page {
  background: var(--ivory);
}

.tasting-page .site-header {
  background: rgba(255, 250, 247, 0.93);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(61, 41, 36, 0.06);
  backdrop-filter: blur(18px);
}

.tasting-page-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 95px;
  background:
    radial-gradient(circle at 12% 20%, rgba(214, 160, 138, 0.27), transparent 26%),
    linear-gradient(135deg, var(--ivory) 0%, #fbf1ed 55%, #efd9d1 100%);
}

.tasting-page-hero::after {
  position: absolute;
  right: -210px;
  bottom: -300px;
  width: 650px;
  height: 650px;
  content: "";
  border: 1px solid rgba(139, 81, 61, 0.18);
  border-radius: 50%;
}

.tasting-page-orbit {
  position: absolute;
  border: 1px solid rgba(139, 81, 61, 0.15);
  border-radius: 50%;
}

.tasting-page-orbit-one {
  top: 160px;
  left: -110px;
  width: 330px;
  height: 330px;
}

.tasting-page-orbit-two {
  top: 225px;
  left: -55px;
  width: 190px;
  height: 190px;
}

.tasting-page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.78fr);
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--wine);
}

.tasting-page-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
}

.tasting-page-hero-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

.tasting-page-hero-image {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
}

.tasting-page-hero-image picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 4.65;
  border: 9px solid rgba(255, 255, 255, 0.72);
  border-radius: 48% 48% 28px 28px;
  box-shadow: var(--shadow);
}

.tasting-page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tasting-page-hero-badge {
  position: absolute;
  right: -45px;
  bottom: 38px;
  display: flex;
  width: 155px;
  height: 155px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ivory);
  background: var(--wine);
  border: 8px solid var(--ivory);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transform: rotate(-5deg);
}

.tasting-page-hero-badge strong {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1;
}

.tasting-page-hero-badge span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.tasting-intro {
  position: relative;
  z-index: 3;
  background: var(--chocolate);
}

.tasting-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tasting-intro article {
  display: flex;
  min-height: 145px;
  align-items: center;
  gap: 20px;
  padding: 28px 42px;
  color: var(--ivory);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tasting-intro article:last-child {
  border-right: 0;
}

.tasting-intro article > span {
  flex: 0 0 auto;
  color: var(--rose);
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1;
}

.tasting-intro strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.tasting-intro p {
  margin: 0;
  color: rgba(255, 250, 247, 0.67);
  font-size: 0.78rem;
  line-height: 1.5;
}

.tasting-builder-section {
  background: var(--ivory-2);
}

.tasting-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
  gap: 30px;
}

.builder-main {
  display: grid;
  gap: 24px;
}

.builder-panel,
.summary-card {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.builder-panel legend {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
  padding: 0;
  color: var(--chocolate);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
}

.builder-panel legend > span,
.step-number,
.summary-step-title span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--wine);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
}

.box-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.box-choice {
  cursor: pointer;
}

.box-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.box-choice-content {
  position: relative;
  display: grid;
  min-height: 116px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: 20px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.box-choice:hover .box-choice-content {
  border-color: rgba(139, 81, 61, 0.42);
  transform: translateY(-2px);
}

.box-choice input:focus-visible + .box-choice-content {
  outline: 3px solid rgba(185, 116, 88, 0.3);
  outline-offset: 3px;
}

.box-choice input:checked + .box-choice-content {
  border-color: var(--copper-dark);
  background: #fff8f4;
  box-shadow: 0 12px 28px rgba(139, 81, 61, 0.11);
}

.box-choice-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  background: var(--rose-mist);
  border-radius: 18px;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.box-choice-content strong {
  display: block;
  margin-bottom: 5px;
  color: var(--chocolate);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
}

.box-choice input[value="12"] + .box-choice-content strong::after,
.box-choice input[value="24"] + .box-choice-content strong::after {
  display: block;
  margin-top: 6px;
  color: var(--copper-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.box-choice input[value="12"] + .box-choice-content strong::after {
  content: "R$ 45,00";
}

.box-choice input[value="24"] + .box-choice-content strong::after {
  content: "R$ 90,00";
}

.box-choice-content small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.box-choice-content i {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 81, 61, 0.35);
  border-radius: 50%;
}

.box-choice input:checked + .box-choice-content i {
  border: 5px solid var(--copper-dark);
  background: var(--white);
}

.catalog-heading,
.catalog-heading > div:first-child {
  display: flex;
  align-items: center;
}

.catalog-heading {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.catalog-heading > div:first-child {
  gap: 13px;
}

.catalog-heading h3 {
  margin: 0 0 3px;
  font-size: 2rem;
}

.catalog-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.selection-counter {
  display: flex;
  min-width: 75px;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  padding: 10px 13px;
  color: var(--wine);
  background: var(--rose-mist);
  border-radius: 999px;
}

.selection-counter strong {
  font-size: 1.12rem;
}

.selection-counter span {
  font-size: 0.68rem;
  font-weight: 700;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.sweet-search {
  position: relative;
  flex: 1 1 230px;
  max-width: 290px;
}

.sweet-search svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 18px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.7;
  transform: translateY(-50%);
}

.sweet-search input {
  width: 100%;
  min-height: 44px;
  padding: 10px 16px 10px 44px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--ivory);
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  outline: none;
}

.sweet-search input:focus {
  border-color: var(--copper-dark);
  box-shadow: 0 0 0 3px rgba(185, 116, 88, 0.12);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.filter-chip {
  min-height: 39px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.active {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.tasting-sweets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.tasting-sweet-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  color: inherit;
  background: var(--white);
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.tasting-sweet-card:hover,
.tasting-sweet-card:focus-visible {
  border-color: rgba(139, 81, 61, 0.48);
  box-shadow: 0 12px 28px rgba(74, 42, 33, 0.11);
  outline: none;
  transform: translateY(-3px);
}

.tasting-sweet-card picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 0.76;
  background: var(--rose-mist);
}

.tasting-sweet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tasting-sweet-card:hover img {
  transform: scale(1.04);
}

.tasting-sweet-content {
  display: block;
  min-height: 145px;
  padding: 16px 16px 44px;
}

.tasting-sweet-content small {
  display: block;
  margin-bottom: 5px;
  color: var(--copper-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tasting-sweet-content strong {
  display: block;
  margin-bottom: 7px;
  color: var(--chocolate);
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.05;
}

.tasting-sweet-content > span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.sweet-choice-action {
  position: absolute;
  right: 15px;
  bottom: 13px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--wine);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sweet-choice-action::after {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  content: "+";
  border: 1px solid rgba(139, 81, 61, 0.35);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.sweet-choice-number {
  position: absolute;
  z-index: 3;
  top: 11px;
  right: 11px;
  display: none;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--wine);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(61, 41, 36, 0.18);
  font-size: 0.7rem;
  font-weight: 700;
}

.tasting-sweet-card.is-selected {
  border-color: var(--wine);
  box-shadow: 0 12px 30px rgba(100, 47, 44, 0.16);
}

.tasting-sweet-card.is-selected .sweet-choice-number {
  display: inline-flex;
}

.tasting-sweet-card.is-selected .sweet-choice-action {
  color: var(--copper-dark);
}

.tasting-sweet-card.is-selected .sweet-choice-action::after {
  content: "✓";
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.tasting-sweet-card.is-limit-disabled:not(.is-selected) {
  opacity: 0.42;
  cursor: not-allowed;
  filter: grayscale(0.45);
}

.tasting-sweet-card[hidden] {
  display: none;
}

.catalog-empty {
  padding: 45px 20px;
  color: var(--muted);
  background: var(--ivory);
  border-radius: 18px;
  text-align: center;
}

.availability-note {
  margin: 22px 0 0;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  line-height: 1.55;
}

.builder-summary {
  position: sticky;
  top: 100px;
}

.summary-card {
  padding: 27px;
}

.summary-top {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.selection-progress {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  background: conic-gradient(var(--wine) var(--progress), var(--rose-mist) 0deg);
  border-radius: 50%;
}

.selection-progress::before {
  position: absolute;
  inset: 7px;
  content: "";
  background: var(--white);
  border-radius: 50%;
}

.selection-progress span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  color: var(--wine);
}

.selection-progress strong {
  font-size: 1.2rem;
}

.selection-progress small {
  font-size: 0.64rem;
  font-weight: 700;
}

.summary-top .eyebrow {
  margin-bottom: 4px;
  font-size: 0.58rem;
}

.summary-top h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
}

.summary-unit-info {
  margin: 18px 0 12px;
  padding: 11px 13px;
  color: var(--muted);
  background: var(--ivory-2);
  border-radius: 12px;
  font-size: 0.7rem;
}

.summary-unit-info strong {
  color: var(--wine);
}

.selected-sweets {
  display: grid;
  max-height: 310px;
  gap: 7px;
  overflow: auto;
  padding-right: 3px;
}

.selected-empty {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 22px;
  color: var(--muted);
  background: var(--ivory);
  border: 1px dashed rgba(139, 81, 61, 0.25);
  border-radius: 15px;
  text-align: center;
}

.selected-empty svg {
  width: 32px;
  margin-bottom: 8px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.4;
}

.selected-empty p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
}

.selected-sweet-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  background: var(--ivory);
  border-radius: 11px;
}

.selected-sweet-item > span:first-child {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--copper-dark);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
}

.selected-sweet-item strong {
  color: var(--chocolate);
  font-size: 0.68rem;
  line-height: 1.35;
}

.selected-sweet-item button {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.05rem;
}

.selected-sweet-item button:hover,
.selected-sweet-item button:focus-visible {
  color: var(--white);
  background: var(--wine);
}

.clear-selection {
  display: block;
  margin: 11px 0 0 auto;
  padding: 0;
  border: 0;
  color: var(--copper-dark);
  background: transparent;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 700;
}

.clear-selection:hover,
.clear-selection:focus-visible {
  text-decoration: underline;
}

.customer-fields {
  display: grid;
  gap: 13px;
  margin-top: 23px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.summary-step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
  color: var(--chocolate);
  font-family: var(--font-serif);
  font-size: 1.45rem;
}

.summary-step-title span {
  width: 29px;
  height: 29px;
  font-size: 0.62rem;
}

.customer-fields label {
  display: grid;
  gap: 6px;
}

.customer-fields label > span {
  color: var(--chocolate);
  font-size: 0.65rem;
  font-weight: 700;
}

.customer-fields input,
.customer-fields select,
.customer-fields textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--ivory);
  border-radius: 11px;
  font: inherit;
  font-size: 0.72rem;
  outline: none;
  resize: vertical;
}

.customer-fields textarea {
  min-height: 78px;
}

.customer-fields input:focus,
.customer-fields select:focus,
.customer-fields textarea:focus {
  border-color: var(--copper-dark);
  box-shadow: 0 0 0 3px rgba(185, 116, 88, 0.12);
}

.customer-fields input:user-invalid {
  border-color: #a84842;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-status {
  min-height: 0;
  margin: 13px 0 0;
  color: #8d352f;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.45;
}

.summary-submit {
  width: 100%;
  gap: 9px;
  margin-top: 15px;
  padding-inline: 16px;
}

.summary-submit svg {
  width: 20px;
  fill: currentColor;
}

.summary-submit:disabled {
  border-color: #c7b9b3;
  color: #8d807a;
  background: #ded4cf;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.privacy-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.45;
  text-align: center;
}

.tasting-assurance {
  background: var(--white);
}

.tasting-assurance-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(0, 0.75fr);
  align-items: center;
  gap: clamp(60px, 8vw, 115px);
}

.tasting-assurance-image {
  position: relative;
  padding: 28px 0 0 28px;
}

.tasting-assurance-image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 72%;
  content: "";
  background: var(--rose-mist);
  border-radius: 50% 50% 22px 50%;
}

.tasting-assurance-image picture {
  position: relative;
  display: block;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 46% 46% 24px 24px;
  box-shadow: var(--shadow);
}

.tasting-assurance-image img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.assurance-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.assurance-list li {
  position: relative;
  padding: 13px 16px 13px 44px;
  color: var(--chocolate);
  background: var(--ivory-2);
  border-radius: 13px;
  font-size: 0.8rem;
  font-weight: 700;
}

.assurance-list li::before {
  position: absolute;
  top: 50%;
  left: 16px;
  display: inline-flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  content: "✓";
  color: var(--white);
  background: var(--copper-dark);
  border-radius: 50%;
  font-size: 0.62rem;
  transform: translateY(-50%);
}

.tasting-faq {
  background: var(--ivory-2);
}

@media (max-width: 1120px) {
  .tasting-builder {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .tasting-sweets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .sweet-search {
    max-width: none;
  }

  .category-filters {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .tasting-page-hero-grid,
  .tasting-assurance-grid {
    grid-template-columns: 1fr;
  }

  .tasting-page-hero-copy {
    max-width: 720px;
    text-align: center;
  }

  .tasting-page-hero-copy .eyebrow {
    justify-content: center;
  }

  .breadcrumb {
    justify-content: center;
  }

  .tasting-page-hero-image {
    width: min(82%, 540px);
    margin: 20px auto 0;
    justify-self: center;
  }

  .tasting-intro-grid {
    grid-template-columns: 1fr;
  }

  .tasting-intro article {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .tasting-intro article:last-child {
    border-bottom: 0;
  }

  .tasting-builder {
    grid-template-columns: 1fr;
  }

  .builder-summary {
    position: static;
  }

  .summary-card {
    max-width: 720px;
    margin-inline: auto;
  }

  .selected-sweets {
    max-height: 370px;
  }

  .tasting-assurance-image {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .tasting-page-hero {
    padding: 135px 0 72px;
  }

  .tasting-page-hero-copy h1 {
    font-size: clamp(3.35rem, 15vw, 5rem);
  }

  .tasting-page-hero-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .tasting-page-hero-image {
    width: 88%;
  }

  .tasting-page-hero-badge {
    right: -24px;
    bottom: 22px;
    width: 125px;
    height: 125px;
    border-width: 6px;
  }

  .tasting-page-hero-badge strong {
    font-size: 2.7rem;
  }

  .builder-panel,
  .summary-card {
    padding: 20px;
    border-radius: 22px;
  }

  .box-options {
    grid-template-columns: 1fr;
  }

  .catalog-heading {
    align-items: flex-start;
  }

  .catalog-heading h3,
  .builder-panel legend {
    font-size: 1.7rem;
  }

  .tasting-sweets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .tasting-sweet-content {
    min-height: 139px;
    padding: 13px 12px 42px;
  }

  .tasting-sweet-content strong {
    font-size: 1.05rem;
  }

  .tasting-sweet-content > span {
    font-size: 0.6rem;
  }

  .sweet-choice-action {
    right: 12px;
    left: 12px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .tasting-sweets-grid {
    grid-template-columns: 1fr;
  }

  .tasting-sweet-card {
    display: grid;
    grid-template-columns: 115px 1fr;
    min-height: 134px;
  }

  .tasting-sweet-card picture {
    height: 100%;
    aspect-ratio: auto;
  }

  .tasting-sweet-content {
    min-height: 0;
    padding: 15px 12px 38px;
  }

  .tasting-sweet-content strong {
    font-size: 1.15rem;
  }

  .tasting-sweet-content > span {
    display: none;
  }

  .sweet-choice-number {
    top: 8px;
    right: 8px;
  }
}

/* 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);
  }
}
