@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/fraunces-400.ttf) format('truetype');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(assets/fonts/fraunces-500.ttf) format('truetype');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/fonts/fraunces-600.ttf) format('truetype');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(assets/fonts/fraunces-700.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/inter-400.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(assets/fonts/inter-500.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/fonts/inter-600.ttf) format('truetype');
}


:root {
  --paper: #ffffff;
  --white: #ffffff;
  --black: #000000;
  --beige: #ddd9d0;
  --ink: #0b0b0c;
  --muted: #3b3b40;
  --line: rgba(0, 0, 0, 0.12);

  --blue: #00249c;
  --red: #d6001c;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);

  --max: 1200px;
  --gutter: 24px;

  --serif: "Fraunces", ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.specs-list--large li {
  padding: 18px 0;
  font-size: 1.05rem;
}

.specs-list--large li:first-child {
  padding-top: 0;
}

.specs-list--large li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.specs-list--large li > span:first-child {
  width: 140px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* Mobile-only line breaks - hidden on desktop */
.mobile-only { display: none; }
@media (max-width: 640px) {
  .mobile-only { display: inline; }
}

/* ==========================================================================
   VALUES GRID
   ========================================================================== */

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 80px 0 120px;
}

.values-grid__header {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.values-grid__header .kicker {
  justify-content: center;
}

.values-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-card__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}

.value-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

.value-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(30, 30, 30, 0.75);
  margin: 0;
}

@media (max-width: 1024px) {
  .values-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .values-grid__items {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SPECS GRID (CAFÉS)
   ========================================================================== */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.specs-grid__info {
  max-width: 520px;
}

.specs-grid__list {
  background: rgba(0, 36, 156, 0.04);
  padding: 56px;
  border-radius: 24px;
  border: 1px solid rgba(0, 36, 156, 0.08);
}

.sca-badge {
  margin-top: 40px;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--white), rgba(255,255,255,0.4));
  border: 1px solid rgba(0, 36, 156, 0.1);
  box-shadow: 0 16px 40px rgba(0, 36, 156, 0.04);
  position: relative;
  overflow: hidden;
}

.sca-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.sca-badge__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
}

.sca-badge__score {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
}

.sca-badge__score::after {
  content: "pts";
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--red);
  margin-left: 8px;
  font-weight: 500;
  vertical-align: middle;
}

.sca-badge__desc {
  font-size: 0.9rem;
  color: rgba(30, 30, 30, 0.7);
  line-height: 1.5;
  max-width: 240px;
}

@media (max-width: 1024px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   BRAND SYMBOL ACCENTS
   ========================================================================== */

.lampejo-flor {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: url("assets/images/lampejo-flor.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
}

.lampejo-flor--top-right {
  top: -60px;
  right: -20px;
}

.lampejo-flor--top-left {
  top: -140px;
  left: 0;
  transform: translate(-14%, 0);
}

.brand-symbol-watermark {
  position: absolute;
  width: 400px;
  height: 400px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  background-image: url("assets/images/lampejo-logo-horizontal.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.brand-symbol-watermark--rotated {
  transform: none;
}

.brand-symbol-watermark--top-right {
  top: -100px;
  right: -100px;
}

.brand-symbol-watermark--bottom-left {
  bottom: -150px;
  left: -150px;
}

.card-editorial,
.product-gallery__item {
  position: relative;
}

.card-editorial::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background-image: url("assets/images/lampejo-logo-horizontal.webp");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.card-editorial:hover::after {
  opacity: 0.15;
}

/* ==========================================================================
   PRODUCT GALLERY (CAFÉS PREVIEW)
   ========================================================================== */

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.product-gallery--single {
  grid-template-columns: minmax(0, 1180px);
  justify-content: center;
}

.product-gallery__item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.product-gallery__item--featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(580px, 1.22fr);
  min-height: 500px;
  border: 1px solid rgba(107, 122, 82, 0.2);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(37, 45, 35, 0.12);
}

.product-gallery__item--featured .product-gallery__img {
  height: 100%;
  aspect-ratio: auto;
  border-radius: 22px 0 0 22px;
}

.product-gallery__item--featured .product-gallery__info {
  justify-content: center;
  padding: clamp(32px, 3.2vw, 48px);
}

.product-gallery__item--featured .product-gallery__title {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  margin-bottom: 16px;
}

.product-gallery__item--featured .product-gallery__desc {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-gallery__status {
  width: max-content;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(190, 47, 38, 0.3);
  border-radius: 100px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-gallery__details {
  display: grid;
  grid-template-columns: minmax(130px, 0.82fr) minmax(170px, 1fr) minmax(180px, 1fr);
  gap: 24px;
  margin: 0 0 28px;
}

.product-gallery__details div {
  padding-top: 14px;
  border-top: 1px solid rgba(37, 45, 35, 0.14);
}

.product-gallery__details dt {
  margin-bottom: 4px;
  color: rgba(30, 30, 30, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-gallery__details dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  white-space: nowrap;
}

.product-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-gallery__item:hover .product-gallery__img img {
  transform: scale(1.05);
}

.product-gallery__item:hover .btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-1px);
}

.product-gallery__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--beige);
}

.product-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-gallery__info {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-gallery__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-gallery__desc {
  font-size: 0.9rem;
  color: rgba(30, 30, 30, 0.7);
  line-height: 1.5;
  margin-bottom: 24px;
}

.product-gallery__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  margin-top: auto;
}

.product-gallery__meta > span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1px solid rgba(0, 36, 156, 0.15);
  border-radius: 100px;
  color: var(--blue);
}

.product-gallery__meta > span > span {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.product-gallery__btn-wrap {
  margin-top: 16px;
  display: flex;
}

.product-gallery__btn-wrap .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  pointer-events: none;
}

.boutique-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1120px;
  margin: 56px auto 0;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(107, 122, 82, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 252, 246, 0.72)),
    var(--white);
  box-shadow: 0 28px 80px rgba(37, 45, 35, 0.1);
}

.boutique-feature__content {
  max-width: 460px;
}

.boutique-feature__intro {
  margin: 18px 0 18px;
  max-width: 360px;
  color: rgba(30, 30, 30, 0.62);
  font-size: 0.92rem;
  line-height: 1.65;
}

.boutique-feature .h2 {
  margin-bottom: 18px;
}

.boutique-feature .lede {
  margin-bottom: 30px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.72;
}

.boutique-carousel {
  position: relative;
}

.boutique-carousel__viewport {
  position: relative;
  min-height: clamp(440px, 56vw, 640px);
  overflow: hidden;
  border-radius: 22px;
  background: var(--beige);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
}

.boutique-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.65s ease, transform 0.9s ease;
  pointer-events: none;
}

.boutique-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.boutique-carousel__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.boutique-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.boutique-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(190, 47, 38, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.boutique-carousel__arrow:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.boutique-carousel__dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.boutique-carousel__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(190, 47, 38, 0.42);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}

.boutique-carousel__dots button.is-active {
  width: 24px;
  border-radius: 99px;
  background: var(--red);
  transform: none;
}

@media (max-width: 1024px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-gallery--single {
    grid-template-columns: minmax(0, 940px);
  }

  .boutique-feature {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .boutique-feature__content {
    max-width: 640px;
    text-align: center;
    margin: 0 auto;
  }

  .boutique-feature__intro {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .product-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-gallery__item--featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-gallery__item--featured .product-gallery__img {
    height: 320px;
    border-radius: 22px 22px 0 0;
    object-fit: contain;
    background: var(--paper);
    padding: 16px;
  }

  body[data-page="cafes"] .product-gallery__item--featured .product-gallery__img {
    height: 500px;
    border-radius: 28px;
  }

  body[data-page="cafes"] .product-gallery__item--featured .product-gallery__img img {
    border-radius: 28px;
  }

  body[data-page="cafes"] .center-content {
    margin-top: -20px;
    padding-top: 80px;
  }

  body[data-page="cafes"] .center-content .lede {
    margin-top: 12px;
  }

  body[data-page="cafes"] .product-gallery__item--featured .product-gallery__info {
    padding: 20px 16px;
  }

  body[data-page="cafes"] .product-gallery__item--featured .product-gallery__title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  body[data-page="cafes"] .product-gallery__item--featured .product-gallery__desc {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .product-gallery__details {
    grid-template-columns: 1fr;
  }

  .boutique-feature {
    grid-template-columns: 1fr;
    padding: 22px;
    margin-top: 40px;
  }

  .boutique-feature__content {
    max-width: none;
    text-align: center;
  }

  .boutique-feature__intro {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="cafes"] .boutique-feature {
    padding: 16px;
    margin-top: 8px;
    gap: 20px;
  }

  body[data-page="cafes"] .boutique-feature .lede {
    margin-bottom: 16px;
  }

  body[data-page="cafes"] .boutique-feature__intro {
    display: none;
  }

  .boutique-carousel__viewport {
    min-height: min(118vw, 560px);
    border-radius: 18px;
  }

  .boutique-carousel__controls {
    gap: 14px;
  }

  .boutique-carousel__arrow {
    width: 38px;
    height: 38px;
  }
}

/* ==========================================================================
   LAMPEJO REDESIGN - ART DIRECTED EDITORIAL
   ========================================================================== */

/* --------------------------------------------------------------------------
   TYPOGRAPHY & UTILS
   -------------------------------------------------------------------------- */
.h1--display {
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.h2--large {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.kicker--light { color: rgba(255,255,255,0.8); }
.kicker--light::before { background: rgba(255,255,255,0.4); }
.hero__seal--light { 
  background: rgba(255,255,255,0.1); 
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}
.lede--light { color: rgba(255,255,255,0.9); }
.h2--light { color: #fff; }

.section--overlap {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  padding-top: 140px;
}

.section--padding-lg {
  padding: 160px 0;
}

.center-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-content .lede {
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   HERO EDITORIAL
   -------------------------------------------------------------------------- */
.hero--editorial {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__media-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero--editorial .hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  border-radius: 0;
  border: none;
  box-shadow: none;
  clip-path: none;
  overflow: hidden;
}

.hero--editorial .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 20s linear infinite alternate alternate;
}

body[data-page="receitas"] .hero--editorial .hero__media img {
  object-position: center;
  transform: scale(1);
}

/* Video support for hero/backgrounds */
.hero--editorial .hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: none; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero__grid-editorial {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 60px;
  align-items: center;
}

.hero__product-float {
  display: flex;
  justify-content: flex-end;
}

.hero__content-box,
.hero__content-box * {
  color: var(--white);
}

.hero--editorial .hero__content-box .lede,
.hero--editorial .hero__content-box .kicker,
.section-fullbleed .fullbleed-content,
.section-fullbleed .fullbleed-content * {
  color: #fff;
}

.product-card-editorial {
  background: var(--white);
  padding: 16px;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  transform: rotate(2deg) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: 360px;
  margin-left: auto;
}

.product-card-editorial:hover {
  transform: rotate(0deg) translateY(0);
}

.product-card-editorial img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.product-card-editorial--text {
  transform: rotate(0deg) translateY(20px);
  max-width: 420px;
}

.product-card-editorial--text:hover {
  transform: translateY(0);
}

.product-card__info {
  padding: 20px 10px 10px;
}

.product-card__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  font-weight: 600;
}

.product-card__info p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   EDITORIAL SPLIT (Essência & História)
   -------------------------------------------------------------------------- */
.editorial-split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.editorial-split--reverse {
  grid-template-columns: 6fr 5fr;
}

.editorial-split--reverse .editorial-split__content {
  order: 2;
}

.editorial-split--reverse .editorial-split__media {
  order: 1;
}

.editorial-split__text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.editorial-split__text {
  margin-top: 22px;
}

.editorial-split__text p + p {
  margin-top: 24px;
}

#essencia .editorial-split {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

#essencia .editorial-split__content,
#essencia .editorial-split__media {
  align-self: center;
}

#essencia .image-stack {
  padding-right: 0;
  padding-bottom: 0;
}

.history-world {
  padding-top: 112px;
  padding-bottom: 112px;
}

.history-world__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.02fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
}

.history-world__content {
  max-width: 680px;
}

.history-world__text {
  margin-top: 26px;
}

.history-world__text p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.history-world__text p + p {
  margin-top: 22px;
}

.history-world__media {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.history-world__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.history-world--verbena {
  padding-top: 96px;
}

.history-world--verbena .history-world__grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.9fr);
  align-items: center;
}

.history-world--verbena .history-world__media img {
  aspect-ratio: 5 / 6;
  object-position: center;
}

.values-list {
  margin-top: 48px;
  display: grid;
  gap: 32px;
}

.value-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.value-item__num {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--blue);
  font-style: italic;
  opacity: 0.8;
}

.value-item__title {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--ink);
}

.value-item p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.image-stack {
  position: relative;
  padding-bottom: 80px;
  padding-right: 40px;
}

.image-stack__main {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
}

.image-stack__main--tall {
  height: 720px;
}

.image-stack__float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 8px solid var(--white);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.image-stack__float-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 320px;
  background: var(--white);
  border-radius: 20px;
  border: 8px solid var(--white);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Clips the scaled image to maintain perfect rounded corners */
}

.parallax-element {
  will-change: transform;
}

.image-stack__float-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08); /* Scales image to crop out uneven transparent PNG edges */
  transform-origin: center center;
  display: block;
}

/* --------------------------------------------------------------------------
   FULL-BLEED MANIFESTO
   -------------------------------------------------------------------------- */
.section-fullbleed {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
}

.fullbleed-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fullbleed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fullbleed-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fullbleed-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.7)),
    rgba(0,0,0,0.18);
}

.fullbleed-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  padding: clamp(40px, 7vw, 92px);
}

.fullbleed-quote {
  font-size: clamp(40px, 6vw, 80px);
  max-width: 16ch;
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   CARDS OVERLAP (Para Quem)
   -------------------------------------------------------------------------- */
.cards-overlap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 80px;
  align-items: start;
}

.card-editorial {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: max-content;
}

.card-editorial:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.card-editorial--offset {
  margin-top: 80px;
}

.card-editorial__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  contain: paint;
}

.card-editorial__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.card-editorial__img img.img--zoom {
  transform: scale(1.58);
  object-position: center 42%;
}

.card-editorial:hover .card-editorial__img img {
  transform: scale(1.05);
}

.card-editorial:hover .card-editorial__img img.img--zoom {
  transform: scale(1.62);
}

.card-editorial__content {
  padding: 32px 32px 32px;
}

.card-editorial__title {
  font-family: var(--serif);
  font-size: 28px;
  margin: 12px 0 16px;
  line-height: 1.1;
}

.card-editorial__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   PRODUCT EDITORIAL (Cafés)
   -------------------------------------------------------------------------- */
.product-editorial {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.product-editorial__content {
  display: grid;
  gap: 22px;
}

.product-editorial__media img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 24px;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.specs-list li {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 36, 156, 0.1);
  font-size: 15px;
  color: var(--ink);
  align-items: center;
}

.specs-list li > span:first-child {
  width: 140px;
  flex-shrink: 0;
  color: rgba(30, 30, 30, 0.6);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.specs-list li > span:first-child::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   JOURNAL GRID (Receitas)
   -------------------------------------------------------------------------- */
.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.journal-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.section-recipes-library .container {
  display: grid;
  gap: 72px;
}

.recipes-library-head {
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.recipes-library-head .body {
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 640px;
  color: var(--muted);
}

.recipe-category {
  display: grid;
  gap: 28px;
}

.recipe-category__head {
  display: grid;
  gap: 12px;
  max-width: 680px;
}

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.recipe-entry {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: 1fr;
  align-items: stretch;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.06);
}

.recipe-entry__media {
  min-height: unset;
  height: 100%;
  position: relative;
  background: var(--beige);
  overflow: hidden;
}

.recipe-entry__media img,
.recipe-entry__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.recipe-entry__media--video {
  min-height: 580px;
}

.recipe-video {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0;
  border: 0;
  display: block;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.recipe-video video {
  transform: scale(1.01);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.recipe-video__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.24)),
    linear-gradient(135deg, rgba(0, 36, 156, 0.18), rgba(214, 0, 28, 0.08));
  opacity: 0.82;
  pointer-events: none;
}

.recipe-video__play {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.recipe-video__play::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  border-left: 16px solid var(--blue);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.recipe-video__caption {
  position: absolute;
  right: 22px;
  bottom: 27px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.recipe-video:hover video,
.recipe-video:focus-visible video {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

.recipe-video.is-playing .recipe-video__play,
.recipe-video.is-playing .recipe-video__caption {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

/* Controls container — shown only while playing */
.recipe-video__progress {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
  z-index: 10;
  cursor: pointer;
}

.recipe-video.is-playing .recipe-video__progress {
  display: flex;
  animation: fadeInProgress 0.3s ease;
}

/* Pause button */
.recipe-video__pause-btn {
  display: none;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  position: relative;
}

.recipe-video.is-playing .recipe-video__pause-btn {
  display: block;
}

.recipe-video__pause-btn::before,
.recipe-video__pause-btn::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 4px;
  height: 12px;
  background: var(--blue);
  border-radius: 1px;
}

.recipe-video__pause-btn::before { left: 10px; }
.recipe-video__pause-btn::after { right: 10px; }

/* Time display */
.recipe-video__time {
  display: none;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.recipe-video.is-playing .recipe-video__time {
  display: block;
}

/* Seekbar */
.recipe-video__seekbar {
  flex: 1;
  height: 32px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.recipe-video__seekbar-fill {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 0%;
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
  pointer-events: none;
  transition: width 0.1s linear;
}

.recipe-video__seekbar-thumb {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  pointer-events: none;
  transition: left 0.1s linear;
}

.recipe-video.is-playing .recipe-video__seekbar-fill {
  background: rgba(255,255,255,0.9);
}

@keyframes fadeInProgress {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 640px) {
  .recipe-video video::-webkit-media-controls {
    display: none !important;
  }
}

.recipe-video:focus-visible {
  outline: 3px solid rgba(214, 0, 28, 0.45);
  outline-offset: -6px;
}


.recipe-entry__body {
  padding: 28px 28px 30px;
  display: grid;
  gap: 20px;
}

.recipe-entry__eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.recipe-entry__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 28px);
  line-height: 1.02;
  margin: 0;
}

.recipe-entry__dek {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.recipe-entry__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.recipe-entry__spec {
  min-width: 120px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0, 36, 156, 0.05);
  display: grid;
  gap: 4px;
}

.recipe-entry__spec span,
.recipe-entry__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(30, 30, 30, 0.52);
}

.recipe-entry__spec strong {
  font-size: 13px;
  color: var(--ink);
}

.recipe-entry__cta {
  display: none;
}

.recipe-entry__section {
  display: grid;
  gap: 12px;
}

.recipe-entry__list,
.recipe-entry__steps {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.recipe-entry__note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(198, 61, 84, 0.06);
  display: grid;
  gap: 6px;
}

.recipe-entry__note strong {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.recipe-entry__note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section-instagram {
  padding: 34px 0 44px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.instagram-header {
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.instagram-handle {
  font-family: var(--serif);
  font-weight: 520;
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(0, 0, 0, 0.84);
  text-decoration: none;
}

.instagram-handle:hover {
  color: rgba(0, 36, 156, 0.88);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.instagram-tile {
  display: block;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  outline: 1px solid rgba(0, 0, 0, 0.04);
  outline-offset: -1px;
}

.instagram-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: opacity 260ms ease;
}

.instagram-tile img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 260ms ease;
}

.instagram-tile:hover img {
  transform: scale(1.06);
}

.instagram-tile:hover::after {
  opacity: 1;
}

@media (max-width: 640px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   CTA EDITORIAL
   -------------------------------------------------------------------------- */
.section-cta-editorial {
  padding: 40px 24px;
}

.cta-editorial__inner {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 120px 40px;
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: var(--beige);
}

.cta-editorial__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-editorial__bg img {
  display: none;
}

.cta-editorial__overlay {
  display: none;
}

.cta-editorial__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: center;
}

.cta-editorial__content .kicker--light {
  color: var(--ink);
  justify-content: center;
}

.cta-editorial__content .h2--light {
  color: var(--ink);
}

.cta-editorial__content .lede--light {
  color: rgba(0, 0, 0, 0.7);
}

.btn-row--center {
  justify-content: center;
  margin-top: 40px;
}

.section-cta-editorial .btn--wa {
  display: none !important;
}

/* --------------------------------------------------------------------------
   FORM EDITORIAL
   -------------------------------------------------------------------------- */
.form-editorial {
  max-width: 800px;
  margin: 64px auto 0;
  background: var(--white);
  padding: 64px;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

body[data-page] .form-editorial .fields {
  gap: 32px 24px;
}

body[data-page] .form-editorial .label {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
}

body[data-page] .form-editorial .control {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--line);
  border-radius: 0;
  padding: 12px 0;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

body[data-page] .form-editorial .control:focus {
  border-color: var(--blue);
  box-shadow: none;
  outline: none;
}

@media (max-width: 640px) {
  .form-editorial {
    padding: 32px 20px;
  }
}

/* --------------------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid-editorial,
  .editorial-split,
  .editorial-split--reverse,
  .history-world__grid,
  .cards-overlap,
  .product-editorial,
  .journal-grid,
  .recipe-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .editorial-split--reverse .editorial-split__content {
    order: 1;
  }
  
  .editorial-split--reverse .editorial-split__media {
    order: 2;
  }

  .history-world {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .history-world__content {
    max-width: none;
  }

  .history-world__media {
    max-width: 520px;
  }
  
  .card-editorial--offset {
    margin-top: 0;
  }
  
  .image-stack__main,
  .image-stack__main--tall,
  .product-editorial__media img {
    height: 500px;
  }
  
  .hero--editorial {
    padding: 140px 0 80px;
    min-height: auto;
  }
  
  .hero--editorial .hero__media {
    min-height: auto;
  }
  
  .product-card-editorial {
    transform: none;
    margin: 0 auto;
  }

  .recipe-entry {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .recipe-entry__media {
    min-height: unset;
  }

  .recipe-entry__media img,
  .recipe-entry__media video {
    min-height: unset;
    width: 120%;
    height: 120%;
    object-fit: cover;
  }

  .recipe-entry__media--video,
  .recipe-video {
    min-height: min(92vh, 620px);
  }
}

@media (max-width: 640px) {
  .section--padding-lg {
    padding: 80px 0;
  }
  
  .image-stack__float,
  .image-stack__float-wrapper {
    width: 70%;
    height: 200px;
    border-width: 4px;
  }

  .section-recipes-library .container {
    gap: 56px;
  }

  .recipe-entry__body {
    padding: 22px 20px 24px;
  }

  .recipe-entry__title {
    font-size: 26px;
  }

  .recipe-entry__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .recipe-entry__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    background: var(--blue);
    color: var(--paper);
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    margin-top: 4px;
    transition: background 0.2s, transform 0.2s;
  }

  .recipe-entry__cta:hover {
    background: #001a6b;
    transform: translateY(-1px);
  }

  .recipe-entry__cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .recipe-entry__spec {
    min-width: 0;
  }

  .recipe-video__play {
    left: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }

  .recipe-video__play::before {
    left: 20px;
    top: 15px;
    border-left-width: 14px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }

  .recipe-video__caption {
    right: 16px;
    bottom: 21px;
    max-width: calc(100% - 90px);
    white-space: normal;
    text-align: center;
  }

  .cta-editorial__inner {
    padding: 80px 20px;
    border-radius: 24px;
  }
  
  .section-cta-editorial {
    padding: 20px 16px;
  }
  
  .fullbleed-quote {
    font-size: 32px;
  }

  /* Receitas hero — shift focal point so text sits over darker coffee area */
  body[data-page="receitas"] .hero--editorial .hero__media img {
    object-position: 25% 50%;
    transform: scale(1.08);
  }

  /* Stronger gradient over text zone on mobile */
  body[data-page="receitas"] .hero__media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.25) 100%);
  }

  /* Adjust clip-path to reveal more of the darker left side */
  body[data-page="receitas"] .hero__media {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  /* Narrower, cleaner text block — keep it inside the darker image zone */
  body[data-page="receitas"] .hero__content-box {
    max-width: 360px;
    padding-right: 24px;
  }

  /* Smaller, more breathable title on mobile */
  body[data-page="receitas"] .hero__content-box .h1 {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }

  /* Narrower paragraph — shorter lines, less visual density */
  body[data-page="receitas"] .hero__content-box .lede {
    font-size: 14px;
    line-height: 1.6;
    max-width: 32ch;
  }

  /* Tighter spacing between elements */
  body[data-page="receitas"] .hero__content-box .btn-row {
    margin-top: 16px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(0, 36, 156, 0.16);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 36, 156, 0.18);
}

.container {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.col-1-6 {
  grid-column: 1 / span 6;
}

.col-7-end {
  grid-column: 7 / -1;
}

.col-1-7 {
  grid-column: 1 / span 7;
}

.col-8-end {
  grid-column: 8 / -1;
}

.section {
  padding: 112px 0;
}

.section--tight {
  padding: 80px 0;
}

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

.section--beige {
  background: linear-gradient(180deg, rgba(221, 217, 208, 0.55), rgba(221, 217, 208, 0.28));
}

.section--ink {
  background: #0b0b0c;
  color: #f7f7f8;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.section--ink .kicker {
  color: rgba(255, 255, 255, 0.78);
}

.kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(0, 0, 0, 0.35);
}

.section--ink .kicker::before {
  background: rgba(255, 255, 255, 0.42);
}

.h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 16px 0 12px;
}

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 14px 0 10px;
}

.lede {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.72);
  max-width: 62ch;
  margin: 0;
}

.section--ink .lede {
  color: rgba(255, 255, 255, 0.84);
}

.body {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.74);
  margin: 0;
}

.section--ink .body {
  color: rgba(255, 255, 255, 0.8);
}

main :where(p, .lede, .body) {
  margin: 0;
}

main :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, h5, h6) + :where(p, .lede, .body) {
  margin-top: 18px;
}

main :where(p, .lede, .body) + :where(p, .lede, .body) {
  margin-top: 24px;
}

.rule {
  height: 1px;
  background: var(--line);
}

.section--ink .rule {
  background: rgba(255, 255, 255, 0.14);
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease, color 160ms ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 36, 156, 0.18);
}

.btn--primary {
  background: var(--blue);
  color: var(--paper);
}

.btn--red {
  background: var(--red) !important;
  color: var(--white) !important;
}

.btn--red:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}

.btn--primary:hover {
  transform: translateY(-1px);
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: none;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.16);
}

.btn--secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--ink);
}

.btn--ghost:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.03);
}

.btn--wa {
  background: rgba(221, 217, 208, 0.6);
  border-color: rgba(0, 0, 0, 0.14);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.76);
  background: rgba(255, 255, 255, 0.6);
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease,
    backdrop-filter 180ms ease;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.header--solid {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-width: 160px;
}

.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue);
  position: relative;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: var(--red);
}

.brand__name {
  font-family: var(--serif);
  letter-spacing: 0.02em;
  font-weight: 600;
  font-size: 18px;
}

.brand__meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.62);
  margin-top: 2px;
}

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

.nav a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
  padding: 10px 10px;
  border-radius: 999px;
  transition: background-color 160ms ease, color 160ms ease;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.92);
}

.nav a[aria-current="page"] {
  background: rgba(0, 36, 156, 0.08);
  color: rgba(0, 36, 156, 0.92);
}

.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* Force flex order to prevent third-party scripts from messing with layout */
.header__right .language-switcher-container {
  order: 1 !important;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000;
  margin-right: 12px;
  margin-left: 0;
}

.language-switcher {
  min-width: 64px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: rgba(0, 0, 0, 0.84);
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.language-switcher:hover,
.language-switcher-container.is-open .language-switcher {
  border-color: rgba(0, 36, 156, 0.2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.language-switcher__flag {
  font-size: 16px;
  line-height: 1;
}

.language-switcher__chevron {
  width: 12px;
  height: 12px;
  color: rgba(0, 0, 0, 0.42);
  transition: transform 160ms ease;
}

.language-switcher-container.is-open .language-switcher__chevron {
  transform: rotate(180deg);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 84px;
  width: max-content;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher-container.is-open .language-switcher__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-switcher__option {
  width: 100%;
  min-height: 36px;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(0, 0, 0, 0.84);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.language-switcher__option:hover,
.language-switcher__option.is-active {
  background: rgba(0, 36, 156, 0.06);
}

.language-switcher__option-flag {
  font-size: 16px;
  line-height: 1;
}

.header__right .btn {
  order: 2 !important;
}

.header__right .menu-btn {
  order: 3 !important;
}

.menu-btn {
  display: none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(0, 0, 0, 0.82);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.menu[aria-hidden="false"] {
  display: block;
}

.menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
}

.menu__panel {
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  max-height: calc(100vh - 24px);
  overflow-y: auto;
}

.menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.menu__close {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(0, 0, 0, 0.82);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.menu__nav {
  display: grid;
  gap: 8px;
  padding: 14px 0 6px;
}

.menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.65);
}

.menu__nav a span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu__nav a i {
  font-style: normal;
  color: rgba(0, 36, 156, 0.86);
}

.hero {
  position: relative;
  padding: 110px 0 68px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.38) 42%,
    rgba(255, 255, 255, 0.0) 72%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -1px;
  background-image: url("assets/images/lampejo-mosaico.svg");
  background-size: 520px auto;
  background-repeat: repeat;
  opacity: 0.035;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02) 56%, rgba(255, 255, 255, 0.0));
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
  align-items: end;
}

.hero__card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.hero__card--right {
  padding: 0;
  overflow: hidden;
  min-height: 360px;
  position: relative;
}

.hero__card--right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__card--right .hero__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
}

.block {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.media {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 24px;
  align-items: center;
}

.media__text {
  padding: 10px 0;
}

.media__figure {
  position: relative;
}

.media__figure .media__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.media__figure .media__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.media__figure .media__float {
  position: absolute;
  right: -10px;
  bottom: -24px;
  width: min(44%, 280px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  background: var(--paper);
}

.media__figure .media__float img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: grid;
  align-items: end;
}

.band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.58));
}

.band__inner {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.band__quote {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.band__meta {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.value {
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.value__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.value__title i {
  font-style: normal;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(0, 36, 156, 0.9);
  box-shadow: 0 0 0 6px rgba(0, 36, 156, 0.08);
}

.value__body {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.duo__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.duo__img {
  height: 260px;
}

.duo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duo__content {
  padding: 18px;
}

.duo__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.64);
}

.duo__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  margin: 10px 0 10px;
  letter-spacing: -0.01em;
}

.duo__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.product {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 24px;
  align-items: start;
}

.product__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-soft);
}

.product__media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.specs {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.spec {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0,  0, 0.06);
}

.spec dt {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.62);
}

.spec dd {
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.journal {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 24px;
  align-items: start;
}

.journal__feature {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.journal__feature img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.journal__feature .journal__content {
  padding: 18px;
}

.journal__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 10px 0 10px;
}

.journal__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.card__img {
  height: 170px;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__content {
  padding: 14px;
}

.card__meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 36, 156, 0.84);
}

.card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  margin: 8px 0 10px;
  letter-spacing: -0.01em;
}

.card__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.form {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.76);
  padding: 20px;
}

.fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.66);
}

.control {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: rgba(0, 0, 0, 0.84);
  outline: none;
  transition: box-shadow 140ms ease, border-color 140ms ease;
}

.control:focus {
  border-color: rgba(0, 36, 156, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 36, 156, 0.14);
}

.control::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

textarea.control {
  resize: vertical;
  min-height: 132px;
}

.form__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.form__note {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.62);
  margin-top: 14px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: var(--shadow-soft);
  z-index: 2000;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast[aria-hidden="false"] {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 74px 0 38px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
}

.footer .container {
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(190px, 0.9fr) minmax(260px, 1fr);
  gap: 0;
  align-items: stretch;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 34px 0 38px;
  border-top: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__grid > div:nth-child(1) {
  width: auto;
}

.footer__grid > div {
  padding: 0 32px;
}

.footer__grid > div:first-child {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer__grid > div:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__grid > div:last-child {
  padding-right: 0;
}

.footer__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.footer__grid > div:not(:first-child) .footer__title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(0, 36, 156, 0.76);
}

.footer__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 14px;
  line-height: 1.75;
  max-width: 30ch;
}

.footer__links {
  display: grid;
  gap: 0;
}

.footer__links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 42px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
  transition: color 180ms ease, padding-left 180ms ease, border-color 180ms ease;
}

.footer__links a:hover {
  color: rgba(0, 36, 156, 0.88);
  padding-left: 8px;
  border-color: rgba(0, 36, 156, 0.28);
}

.footer__contact-link span:last-child {
  flex: 0 0 auto;
  color: rgba(160, 20, 31, 0.86);
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.footer__links .footer__contact-link {
  justify-content: flex-start;
  gap: 14px;
}

.legal {
  padding-top: 22px;
  margin-top: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  :root {
    --gutter: 18px;
  }

  .grid {
    gap: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .col-1-6,
  .col-7-end,
  .col-1-7,
  .col-8-end {
    grid-column: 1 / -1;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__card--right {
    min-height: 44px;
  }

  .media {
    grid-template-columns: 1fr;
  }

  .media__figure .media__img img {
    height: 440px;
  }

  .media__figure .media__float {
    right: 14px;
    bottom: -18px;
    width: min(48%, 260px);
  }

  .values {
    grid-template-columns: 1fr;
  }

  .duo {
    grid-template-columns: 1fr;
  }

  .product {
    grid-template-columns: 1fr;
  }

  .product__media img {
    height: 520px;
  }

  .journal {
    grid-template-columns: 1fr;
  }

  .journal__cards {
    grid-template-columns: 1fr;
  }

  .fields {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    padding: 26px 0 30px;
  }

  .footer__grid > div {
    padding: 24px 0;
  }

  .footer__grid > div:first-child {
    padding-top: 0;
  }

  .footer__grid > div:not(:first-child) {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .footer__grid > div:last-child {
    padding-bottom: 0;
  }

  .footer__links a {
    min-height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .btn {
    transition: none;
  }
}

:root {
  --ink: #0b0b0c;
  --ink-2: #131316;
  --muted: rgba(11, 11, 12, 0.72);
  --line: rgba(0, 0, 0, 0.12);

  --max: 1280px;
  --gutter: 22px;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.1);

  --serif: "Fraunces", ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";

  --scroll: 0;
}

body {
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(1200px 800px at 18% 8%, rgba(221, 217, 208, 0.55), rgba(255, 255, 255, 0)),
    radial-gradient(900px 700px at 82% 18%, rgba(0, 36, 156, 0.09), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(221, 217, 208, 0.18), rgba(255, 255, 255, 1));
}

.container {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(11, 11, 12, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(0, 0, 0, 0.32);
}

.display {
  font-family: var(--serif);
  font-weight: 520;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 14px 0 10px;
}

.title {
  font-family: var(--serif);
  font-weight: 520;
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 10px 0 10px;
}

.lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(11, 11, 12, 0.74);
  max-width: 66ch;
  margin: 0;
}

.copy {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(11, 11, 12, 0.74);
  margin: 0;
}

.accent {
  color: var(--blue);
}

.accent-red {
  color: var(--red);
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.16);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(0, 0, 0, 0.82);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  pointer-events: none;
  background-image: url("assets/images/lampejo-mosaico.svg");
  background-size: 260px auto;
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity 160ms ease;
}

.btn:hover::after {
  opacity: 0.085;
}

.btn:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.btn--primary {
  background: var(--blue);
  color: var(--paper);
  border-color: rgba(0, 0, 0, 0);
}

.btn--primary::after {
  opacity: 0.06;
  mix-blend-mode: screen;
}

.btn--primary:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: none;
}

.btn--ghost {
  background: transparent;
}

.btn--wa {
  background: var(--paper);
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.16);
}

.btn--wa:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.28);
}

.header {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
}

.header--solid {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.header::after {
  content: "";
  display: block;
  height: 10px;
  background-image: url("assets/images/lampejo-mosaico.svg");
  background-size: 360px auto;
  opacity: 0.25;
  filter: contrast(1.1);
}

.brand {
  min-width: 190px;
}

.brand__name {
  font-family: var(--serif);
  font-size: 20px;
}

.brand__meta {
  letter-spacing: 0.26em;
}

.nav a {
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.78);
}

.nav a[aria-current="page"] {
  background: rgba(0, 36, 156, 0.1);
  color: rgba(0, 36, 156, 0.95);
}

.menu__backdrop {
  background:
    radial-gradient(800px 500px at 20% 20%, rgba(0, 36, 156, 0.2), rgba(0, 0, 0, 0)),
    rgba(0, 0, 0, 0.46);
}

.menu__panel {
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background:
    radial-gradient(900px 700px at 10% 10%, rgba(221, 217, 208, 0.55), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.92);
}

.menu__panel::after {
  content: "";
  position: absolute;
  inset: -2px;
  background-image: url("assets/images/lampejo-mosaico.svg");
  background-size: 420px auto;
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.menu__top,
.menu__nav,
.menu .btn-row {
  position: relative;
  z-index: 1;
}

.menu__nav a {
  border-radius: 18px;
}

.menu__nav a span {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.01em;
  text-transform: none;
  font-size: 22px;
}

.menu__nav a i {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.badge {
  letter-spacing: 0.22em;
}

.badge::before {
  width: 8px;
  height: 8px;
  border-radius: 3px;
}

.stage {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.stage::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-image: url("assets/images/lampejo-mosaico.svg");
  background-size: 520px auto;
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: translateY(calc(var(--scroll) * 18px)) rotate(-2deg);
}

.stage__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stage__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.12) 60%, rgba(255, 255, 255, 0));
}

.stage__inner {
  position: relative;
  z-index: 1;
}

.stage__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  align-items: end;
}

.stage__type {
  grid-column: 1 / span 7;
}

.stage__collage {
  grid-column: 8 / -1;
  position: relative;
  min-height: 520px;
}

.cutout {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.cutout::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/lampejo-mosaico.svg");
  background-size: 360px auto;
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity 180ms ease;
}

.cutout:hover::after {
  opacity: 0.1;
}

.cutout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cutout--a {
  inset: 0 14% 34% 0;
  transform: rotate(-2deg);
}

.cutout--b {
  inset: 54% 40% 0 -6%;
  transform: rotate(3deg);
  border-radius: 26px;
}

.cutout--c {
  inset: 18% -8% 12% 56%;
  transform: rotate(-4deg);
  border-radius: 28px;
}

.chapter {
  position: relative;
  padding: 86px 0;
}

.chapter--lift {
  margin-top: -38px;
}

.chapter__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  align-items: start;
}

.chapter__meta {
  grid-column: 1 / span 3;
}

.chapter__main {
  grid-column: 4 / -1;
}

.side-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.side-label::after {
  content: "";
  width: 1px;
  height: 44px;
  background: rgba(0, 0, 0, 0.22);
}

.panel {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 26px;
}

.panel__inner {
  position: relative;
  padding: 22px;
}

.panel--ink::before {
  background: rgba(11, 11, 12, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
}

.panel--ink .lead,
.panel--ink .copy,
.panel--ink .eyebrow,
.panel--ink .title,
.panel--ink .display {
  color: rgba(255, 255, 255, 0.9);
}

.panel--ink .eyebrow::before {
  background: rgba(255, 255, 255, 0.35);
}

.panel--ink .btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.item__mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(0, 36, 156, 0.12);
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 36, 156, 0.18);
}

.item__mark::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--red);
}

.item__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0;
}

.item__text {
  margin: 6px 0 0;
  color: rgba(11, 11, 12, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.gridcards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.gridcard {
  grid-column: span 4;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  position: relative;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gridcard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.gridcard__img {
  height: 240px;
  position: relative;
}

.gridcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gridcard__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.22));
}

.gridcard__body {
  padding: 18px;
}

.gridcard__k {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 36, 156, 0.9);
}

.gridcard__t {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 22px;
  margin: 10px 0 10px;
}

.gridcard__p {
  margin: 0;
  color: rgba(11, 11, 12, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.form {
  margin-top: 0;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.78);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.form::after {
  content: "";
  position: absolute;
  inset: -1px;
  background-image: url("assets/images/lampejo-mosaico.svg");
  background-size: 420px auto;
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.fields,
.form__actions,
.form__note {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .stage__grid {
    grid-template-columns: 1fr;
  }

  .stage__type {
    grid-column: 1 / -1;
  }

  .stage__collage {
    grid-column: 1 / -1;
    min-height: 420px;
    margin-top: 18px;
  }

  .chapter__grid {
    grid-template-columns: 1fr;
  }

  .chapter__meta,
  .chapter__main {
    grid-column: 1 / -1;
  }

  .side-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .side-label::after {
    display: none;
  }

  .gridcard {
    grid-column: span 12;
  }
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(11, 11, 12, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(0, 0, 0, 0.32);
}

.h1 {
  font-family: var(--serif);
  font-weight: 520;
  font-size: clamp(46px, 6.6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.h2 {
  font-family: var(--serif);
  font-weight: 520;
  font-size: clamp(28px, 3.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(11, 11, 12, 0.74);
}

.body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(11, 11, 12, 0.74);
}

.hero {
  padding: 96px 0 74px;
  overflow: visible;
}

.hero::after {
  background-image: url("assets/images/lampejo-mosaico.svg");
  background-size: 520px auto;
  opacity: 0.12;
  filter: contrast(1.1);
}

.hero::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.0) 100%);
}

.hero__grid {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.hero__card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  max-width: 74ch;
  position: relative;
  z-index: 2;
}

.hero__card .kicker {
  color: rgba(0, 0, 0, 0.68);
}

.hero__media {
  inset: auto;
  top: -10px;
  right: -10vw;
  left: auto;
  width: min(62vw, 820px);
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.12);
  transform: rotate(2deg) translateY(calc(var(--scroll) * 10px));
  clip-path: polygon(0 6%, 92% 0, 100% 64%, 86% 100%, 8% 92%);
}

.hero__media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02) 56%, rgba(255, 255, 255, 0));
}

.hero__card--right {
  position: absolute;
  left: min(52vw, 640px);
  top: 340px;
  width: min(36vw, 430px);
  height: 340px;
  min-height: auto;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.12);
  transform: rotate(-6deg);
}

.hero__card--right .hero__caption {
  left: 14px;
  right: 14px;
  bottom: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.section {
  padding: 92px 0;
  background: transparent;
}

.section--paper,
.section--beige,
.section--ink {
  background: transparent;
  color: inherit;
}

.section--ink .kicker,
.section--ink .lede,
.section--ink .body {
  color: rgba(11, 11, 12, 0.74);
}

.band {
  border-radius: 34px;
  min-height: 420px;
  transform: rotate(-1deg);
}

.band::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.52));
}

.band__inner {
  padding: 30px;
}

.band__quote {
  font-family: var(--serif);
  font-weight: 520;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.media {
  grid-template-columns: 7fr 5fr;
  gap: 28px;
  align-items: start;
}

.media__figure {
  transform: rotate(1.4deg);
}

.media__figure .media__img {
  border-radius: 34px;
}

.media__figure .media__img img {
  height: 640px;
}

.media__figure .media__float {
  border-radius: 26px;
  bottom: -40px;
  right: 6%;
  transform: rotate(-5deg);
}

.values {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin-top: 34px;
  counter-reset: v;
}

.value {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  padding: 22px 0;
  position: relative;
  counter-increment: v;
}

.value::before {
  content: "0" counter(v);
  position: absolute;
  left: 0;
  top: 20px;
  font-family: var(--serif);
  font-weight: 520;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: rgba(0, 36, 156, 0.88);
}

.value__title {
  margin-left: 54px;
  font-size: 26px;
}

.value__title i {
  display: none;
}

.value__body {
  margin-left: 54px;
  max-width: 80ch;
}

.duo {
  gap: 0;
}

.duo__card {
  border: 0;
  background: transparent;
  position: relative;
}

.duo__img {
  height: 360px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow);
}

.duo__card:nth-child(2) {
  margin-top: -70px;
  margin-left: 10%;
  transform: rotate(-2deg);
}

.duo__content {
  padding: 18px 0 0;
  max-width: 60ch;
}

.product {
  grid-template-columns: 5fr 7fr;
  gap: 28px;
}

.product__media {
  border-radius: 34px;
  transform: rotate(1.2deg);
}

.product__media img {
  height: 720px;
}

.specs {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.spec {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.journal {
  grid-template-columns: 6fr 6fr;
  gap: 28px;
}

.journal__feature {
  border: 0;
  background: transparent;
}

.journal__feature img {
  height: 420px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.journal__feature .journal__content {
  padding: 18px 0 0;
}

.journal__cards {
  gap: 18px;
}

.card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(0.6deg);
}

.card:nth-child(2n) {
  transform: rotate(-0.8deg);
}

.card__img {
  height: 220px;
}

.grid {
  gap: 28px;
}

body[data-page="cafes"] .hero__media {
  clip-path: polygon(0 10%, 92% 0, 100% 70%, 88% 100%, 8% 92%);
  transform: rotate(-1.6deg) translateY(calc(var(--scroll) * 10px));
}

body[data-page="cafes"] .hero__card--right {
  transform: rotate(5deg);
}

body[data-page="cafes"] .hero__product-float .product-card-editorial {
  max-width: 300px;
  padding: 12px;
  border-radius: 20px;
}

body[data-page="cafes"] .hero__product-float .product-card-editorial img {
  height: 320px;
  border-radius: 14px;
}

body[data-page="cafes"] .hero__product-float .product-card__info {
  padding: 14px 8px 8px;
}

body[data-page="receitas"] .hero__media {
  clip-path: polygon(0 0, 98% 4%, 100% 84%, 82% 100%, 0 92%);
}

body[data-page="mundo"] .section--beige {
  background:
    radial-gradient(900px 700px at 20% 20%, rgba(221, 217, 208, 0.7), rgba(255, 255, 255, 0)),
    radial-gradient(700px 500px at 85% 30%, rgba(0, 36, 156, 0.08), rgba(255, 255, 255, 0));
}

body[data-page="historia"] .section--beige {
  background:
    radial-gradient(900px 700px at 70% 10%, rgba(0, 0, 0, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(900px 700px at 10% 80%, rgba(221, 217, 208, 0.7), rgba(255, 255, 255, 0));
}

body[data-page="cafes"] .section--paper {
  background:
    radial-gradient(900px 700px at 85% 40%, rgba(0, 36, 156, 0.09), rgba(255, 255, 255, 0)),
    radial-gradient(700px 600px at 20% 50%, rgba(221, 217, 208, 0.7), rgba(255, 255, 255, 0));
}

body[data-page="contato"] .section--beige {
  background:
    radial-gradient(900px 700px at 30% 20%, rgba(0, 36, 156, 0.09), rgba(255, 255, 255, 0)),
    radial-gradient(700px 600px at 70% 80%, rgba(221, 217, 208, 0.72), rgba(255, 255, 255, 0));
}

body[data-page="contato"] .hero__media {
  clip-path: polygon(0 6%, 94% 0, 100% 74%, 86% 100%, 0 90%);
}

@media (max-width: 980px) {
  .hero {
    padding: 86px 0 54px;
  }

  .hero__media {
    position: relative;
    right: auto;
    top: auto;
    left: auto;
    width: 100%;
    height: 360px;
    transform: rotate(0deg);
    clip-path: none;
    margin-bottom: 18px;
  }

  .hero__card--right {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 300px;
    transform: rotate(-2deg);
    margin-top: 22px;
  }

  .media__figure {
    transform: none;
  }

  .media__figure .media__img img {
    height: 520px;
  }

  .duo__card:nth-child(2) {
    margin-top: 18px;
    margin-left: 0;
    transform: rotate(-1deg);
  }

  .product {
    grid-template-columns: 1fr;
  }

  .product__media {
    transform: none;
  }

  .product__media img {
    height: 560px;
  }

  .journal {
    grid-template-columns: 1fr;
  }
}

body[data-page="mundo"] .hero {
  padding-top: 108px;
}

body[data-page="mundo"] .hero__grid {
  min-height: 760px;
}

.hero__shell {
  position: relative;
  padding: 34px 34px 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  text-align: left;
}

.hero__shell::before {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 36, 156, 0.14), rgba(0, 36, 156, 0));
  pointer-events: none;
}

.hero__topline,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.section-head--column {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.section--process-centered .section-head--column {
  align-items: center;
  text-align: center;
}

.section--process-centered .container {
  position: relative;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.process-content {
  display: grid;
  gap: 32px;
}

body[data-page="historia"] .section--process-centered .process-media {
  order: 1;
}

body[data-page="historia"] .section--process-centered .process-content {
  order: 2;
}

body[data-page="historia"] .section--process-centered .section-head--column {
  align-items: flex-start;
  text-align: left;
}

body[data-page="historia"] .section--process-centered .section-head--column :where(.kicker, h2, p),
body[data-page="historia"] .section--process-centered .value-item :where(.value-item__title, p) {
  text-align: left;
}

.section--process-centered .values-list {
  margin-top: 0;
  gap: 18px;
}

.section--process-centered .value-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 18px;
  text-align: left;
  max-width: none;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.section--process-centered .value-item__num {
  padding-top: 4px;
  padding-right: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(0, 36, 156, 0.08);
}

.section--process-centered .value-item__title {
  margin: 0 0 6px;
}

.process-media {
  position: relative;
}

.process-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .process-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section--process-centered .value-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.hero__seal,
.section-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
}

.hero__shell .h1 {
  max-width: 12ch;
}

.hero__shell .lede {
  max-width: 58ch;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero__fact {
  position: relative;
  padding: 18px 16px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero__fact::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  margin-bottom: 14px;
}

.hero__fact strong,
.contact-points__item strong {
  display: block;
  font-family: var(--serif);
  font-weight: 520;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero__fact span,
.contact-points__item span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(11, 11, 12, 0.72);
}

.hero__card--right {
  overflow: visible;
}

.hero__floating-note {
  position: absolute;
  left: -30px;
  bottom: 28px;
  width: min(280px, calc(100% - 36px));
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero__floating-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 36, 156, 0.86);
  margin-bottom: 10px;
}

.hero__floating-note strong {
  display: block;
  font-family: var(--serif);
  font-weight: 520;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__floating-note p,
.editorial-note p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(11, 11, 12, 0.72);
}

.editorial-note {
  margin-top: 20px;
  max-width: 34rem;
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38));
  border-radius: 0 22px 22px 0;
}

.editorial-note span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 36, 156, 0.88);
}

body[data-page="mundo"] .media__text,
body[data-page="mundo"] .product > div:last-child,
body[data-page="mundo"] .journal > div:first-child {
  padding-top: 10px;
}

body[data-page="mundo"] .media__figure .media__img,
body[data-page="mundo"] .product__media,
body[data-page="mundo"] .journal__feature img,
body[data-page="mundo"] .card,
body[data-page="mundo"] .duo__img {
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.1);
}

body[data-page="mundo"] .value {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
}

body[data-page="mundo"] .value::before {
  position: static;
  margin-top: 2px;
}

body[data-page="mundo"] .value__title,
body[data-page="mundo"] .value__body {
  margin-left: 0;
}

body[data-page="mundo"] .duo {
  gap: 22px;
}

body[data-page="mundo"] .duo__card {
  padding-bottom: 10px;
}

body[data-page="mundo"] .duo__content {
  padding-top: 20px;
}

body[data-page="mundo"] .journal__cards {
  align-self: start;
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
}

.contact-points__item {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.contact-points__item span {
  color: rgba(255, 255, 255, 0.64);
}

.contact-points__item strong {
  color: #fff;
  margin-bottom: 0;
}

body[data-page="mundo"] .footer {
  padding-top: 70px;
}

@media (max-width: 980px) {
  body[data-page="mundo"] .hero__grid {
    min-height: auto;
  }

  .hero__shell {
    padding: 24px 22px 20px;
  }

  .hero__facts,
  .contact-points {
    grid-template-columns: 1fr;
  }

  .hero__card--right {
    overflow: hidden;
  }

  .hero__floating-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .hero__shell .h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
  }

  .grid {
    gap: 16px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head,
  .hero__topline {
    align-items: flex-start;
  }

  .hero__shell {
    border-radius: 26px;
  }

  .hero__fact strong,
  .contact-points__item strong {
    font-size: 18px;
  }

  .editorial-note {
    padding: 16px;
  }
}

/* Lampejo palette and layout cleanup */
:root {
  --blue: #00249c;
  --paper: #ffffff;
  --white: #ffffff;
  --black: #000000;
  --red: #d6001c;
  --beige: #ddd9d0;
  --ink: #000000;
  --ink-2: #000000;
  --muted: rgba(0, 0, 0, 0.72);
  --line: rgba(0, 0, 0, 0.12);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body[data-page="mundo"] {
  background: var(--white);
  color: var(--black);
}

body[data-page="mundo"] .header,
body[data-page="mundo"] .header--solid,
body[data-page="mundo"] .menu__panel,
body[data-page="mundo"] .footer,
body[data-page="mundo"] .hero__shell,
body[data-page="mundo"] .hero__fact,
body[data-page="mundo"] .hero__floating-note,
body[data-page="mundo"] .editorial-note,
body[data-page="mundo"] .card,
body[data-page="mundo"] .contact-points__item,
body[data-page="mundo"] .section-chip,
body[data-page="mundo"] .hero__seal {
  background-image: none;
}

body[data-page="mundo"] .header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

body[data-page="mundo"] .header::after {
  display: none;
}

.brand {
  gap: 12px;
  align-items: center;
}

.brand__logo {
  width: auto;
  object-fit: contain;
  shape-rendering: geometricPrecision;
}

.brand__logo--header {
  height: 50px;
  max-height: 50px;
}

.brand__logo--footer {
  height: 80px;
}

.brand__mark {
  display: none;
}

.brand--logo-only {
  gap: 0;
}

.brand__name,
.footer__title,
.hero__fact strong,
.contact-points__item strong,
.hero__floating-note strong {
  color: var(--blue);
}

.brand__meta,
.nav a,
.menu-btn,
.menu__close,
.hero__seal,
.section-chip,
.hero__floating-label,
.editorial-note span,
.card__meta,
.contact-points__item span {
  color: var(--black);
}

body[data-page="mundo"] .nav a[aria-current="page"] {
  color: var(--blue);
  background: rgba(0, 36, 156, 0.08);
}

body[data-page="mundo"] .btn {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: none;
}

body[data-page="mundo"] .btn::after {
  display: none;
}

body[data-page="mundo"] .btn--primary {
  background: var(--blue);
  color: var(--white);
}

body[data-page="mundo"] .btn--primary:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: none;
}

body[data-page="mundo"] .btn--secondary,
body[data-page="mundo"] .btn--ghost,
body[data-page="mundo"] .btn--wa {
  background: var(--white);
  color: var(--black);
}

body[data-page="mundo"] .hero {
  padding: 0;
  min-height: 100vh;
}

body[data-page="mundo"] .hero::before,
body[data-page="mundo"] .hero::after,
body[data-page="mundo"] .hero__shell::before {
  display: none;
}

body[data-page="mundo"] .hero__grid {
  min-height: auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: start;
}

body[data-page="mundo"] .hero__card {
  max-width: none;
}

body[data-page="mundo"] .hero__shell {
  padding: 32px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

body[data-page="mundo"] .hero__shell .h1 {
  max-width: 13ch;
  margin-bottom: 18px;
}

body[data-page="mundo"] .hero__facts {
  margin-top: 24px;
  gap: 12px;
}

body[data-page="mundo"] .hero__fact {
  padding: 18px;
  border-radius: 20px;
  background: var(--beige);
  border: 0;
}

body[data-page="mundo"] .hero__fact::before {
  background: var(--red);
}

body[data-page="mundo"] .hero {
  padding: 0;
  margin: 0;
}

body[data-page="mundo"] .hero__media {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  transform: none;
  clip-path: none;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

body[data-page="mundo"] .hero__inner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 8vh;
}

body[data-page="mundo"] .hero__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.08));
}

body[data-page="mundo"] .hero__media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
}

body[data-page="mundo"] .header {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

body[data-page="mundo"] .header.header--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 280ms ease, transform 320ms ease;
}

body[data-page="mundo"] .hero__grid-editorial {
  grid-template-columns: 1fr;
  justify-items: center;
  justify-content: center;
  align-items: center;
  text-align: center;
}

body[data-page="mundo"] .hero__topline {
  justify-content: flex-start;
  align-items: center;
}

body[data-page="mundo"] .hero__content-box {
  justify-self: start;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

body[data-page="mundo"] .hero__content-box .h1,
body[data-page="mundo"] .hero__content-box .hero__topline,
body[data-page="mundo"] .hero__content-box .kicker {
  text-align: left;
  justify-content: flex-start;
}

body[data-page="mundo"] .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.24));
}

body[data-page="mundo"] .scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: translateX(-50%) rotate(45deg);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.24));
}

@keyframes cue {
  0% { opacity: 0.2; transform: translateX(-50%) translateY(0); }
  40% { opacity: 0.9; transform: translateX(-50%) translateY(8px); }
  100% { opacity: 0.2; transform: translateX(-50%) translateY(0); }
}

body[data-page="mundo"] .scroll-cue,
body[data-page="mundo"] .scroll-cue::after {
  animation: cue 2.8s ease-in-out infinite;
}

@media (max-width: 640px) {
  body[data-page="mundo"] .scroll-cue {
    bottom: 22px;
    height: 34px;
  }
}

body[data-page="mundo"] .scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 190px;
  transform: translateX(-50%);
  display: block;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.9);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.22));
  animation: cue 2.8s ease-in-out infinite;
}

body[data-page="mundo"] .scroll-indicator__line {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  animation: cue 2.8s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}

body[data-page="mundo"] .scroll-indicator svg {
  width: 32px;
  height: 32px;
  display: block;
}
body[data-page="mundo"] .hero__grid-editorial {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  text-align: center;
}

body[data-page="mundo"] .hero__topline {
  justify-content: flex-start;
  align-items: center;
}

body[data-page="mundo"] .hero__card--right {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  height: auto;
  min-height: 0;
  transform: none;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

body[data-page="mundo"] .hero__card--right img {
  height: 560px;
}

body[data-page="mundo"] .hero__caption {
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  border: 1px solid var(--line);
}

body[data-page="mundo"] .hero__floating-note {
  position: static;
  width: auto;
  margin: 18px;
  padding: 18px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

body[data-page="mundo"] .section {
  padding: 112px 0;
}

body[data-page="mundo"] .section--paper,
body[data-page="mundo"] .section--beige,
body[data-page="mundo"] .section--ink {
  background: var(--white);
  color: var(--black);
}

body[data-page="mundo"] .media,
body[data-page="mundo"] .product,
body[data-page="mundo"] .journal {
  gap: 48px;
}

body[data-page="mundo"] .media {
  align-items: center;
}

body[data-page="mundo"] .media__figure,
body[data-page="mundo"] .product__media,
body[data-page="mundo"] .duo__card:nth-child(2),
body[data-page="mundo"] .card {
  transform: none;
}

body[data-page="mundo"] .media__figure .media__img,
body[data-page="mundo"] .product__media,
body[data-page="mundo"] .duo__img,
body[data-page="mundo"] .journal__feature img,
body[data-page="mundo"] .card {
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

body[data-page="mundo"] .media__figure .media__img img {
  height: 560px;
}

body[data-page="mundo"] .media__figure .media__float {
  right: 20px;
  bottom: 20px;
  width: min(38%, 220px);
  border-radius: 20px;
  transform: none;
}

body[data-page="mundo"] .band {
  min-height: 360px;
  transform: none;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

body[data-page="mundo"] .band::after {
  background: linear-gradient(180deg, rgba(0, 36, 156, 0.16), rgba(0, 0, 0, 0.52));
}

body[data-page="mundo"] .values {
  gap: 0;
  margin-top: 24px;
}

body[data-page="mundo"] .value {
  padding: 20px 0;
}

body[data-page="mundo"] .value::before {
  color: var(--red);
}

body[data-page="mundo"] .duo {
  gap: 24px;
  margin-top: 24px;
}

body[data-page="mundo"] .duo__card {
  margin: 0;
  padding: 0;
}

body[data-page="mundo"] .duo__img {
  height: 320px;
}

body[data-page="mundo"] .duo__content {
  padding: 18px 6px 0;
}

body[data-page="mundo"] .product__media img {
  height: 640px;
}

body[data-page="mundo"] .spec {
  grid-template-columns: 128px 1fr;
}

body[data-page="mundo"] .journal__feature {
  background: transparent;
}

body[data-page="mundo"] .journal__feature img {
  height: 360px;
}

body[data-page="mundo"] .journal__cards {
  gap: 16px;
}

body[data-page="mundo"] .card {
  background: var(--white);
}

body[data-page="mundo"] .grid > div[style*="grid-column"] {
  grid-column: auto !important;
}

body[data-page="mundo"] .grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

body[data-page="mundo"] .block {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

body[data-page="mundo"] .contact-points {
  gap: 12px;
}

body[data-page="mundo"] .contact-points__item {
  background: var(--beige);
  border: 0;
  backdrop-filter: none;
}

body[data-page="mundo"] .contact-points__item strong {
  color: var(--blue);
}

body[data-page="mundo"] .footer {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.brand--footer {
  margin-bottom: 18px;
}

.brand--footer + .footer__title {
  display: none;
}

@media (max-width: 980px) {
  body[data-page="mundo"] .hero__grid,
  body[data-page="mundo"] .media,
  body[data-page="mundo"] .product,
  body[data-page="mundo"] .journal,
  body[data-page="mundo"] .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body[data-page="mundo"] .hero__media {
    min-height: 100vh;
    height: 100vh;
  }

  body[data-page="mundo"] .hero__card--right img,
  body[data-page="mundo"] .product__media img,
  body[data-page="mundo"] .media__figure .media__img img {
    min-height: 0;
    height: 420px;
  }

  body[data-page="mundo"] .hero__facts,
  body[data-page="mundo"] .contact-points {
    grid-template-columns: 1fr;
  }

  body[data-page="mundo"] .media__figure .media__float {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  body[data-page="mundo"] .hero__floating-note {
    margin: 14px;
  }
}

@media (max-width: 640px) {
  .brand__logo--header {
    height: 36px;
    max-height: 36px;
  }

  .brand__logo--footer {
    height: 40px;
  }

  body[data-page="mundo"] .hero {
    padding-top: 88px;
  }

  body[data-page="mundo"] .hero__shell {
    padding: 22px;
  }

  body[data-page="mundo"] .hero__shell .h1 {
    max-width: none;
  }

  body[data-page="mundo"] .section {
    padding: 72px 0;
  }
}

/* Global cleanup for all pages */
body[data-page] {
  background: var(--white);
  color: var(--black);
}

body[data-page] .header,
body[data-page] .header--solid {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: none;
}

body[data-page] .header::after {
  display: none;
}

body[data-page] .menu__backdrop {
  background: rgba(0, 0, 0, 0.42);
}

body[data-page] .menu__panel {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

body[data-page] .menu__panel::after {
  display: none;
}

body[data-page] .menu__nav a {
  background: var(--white);
}

body[data-page] .section--paper,
body[data-page] .section--beige,
body[data-page] .section--ink {
  background: var(--white);
  color: var(--black);
}

body[data-page] .section--ink .kicker,
body[data-page] .section--ink .lede,
body[data-page] .section--ink .body,
body[data-page] .section--ink .lead,
body[data-page] .section--ink .copy,
body[data-page] .section--ink .h2 {
  color: var(--black);
}

body[data-page] .rule {
  background: var(--line);
}

body[data-page] .hero {
  padding: 104px 0 64px;
}

body[data-page] .hero::before,
body[data-page] .hero::after {
  display: none;
}

body[data-page] .hero__grid {
  min-height: auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: start;
}

body[data-page] .hero__card {
  max-width: none;
}

body[data-page]:not([data-page="mundo"]) .hero__card {
  padding: 0;
}

body[data-page]:not([data-page="mundo"]) .hero__media {
  position: relative;
  inset: auto;
  right: auto;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
  min-height: 540px;
  transform: none;
  clip-path: none;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

body[data-page]:not([data-page="mundo"]) .hero__media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
}

body[data-page]:not([data-page="mundo"]) .hero__card--right {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  height: auto;
  min-height: 0;
  transform: none;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

body[data-page]:not([data-page="mundo"]) .hero__card--right img {
  height: 540px;
}

body[data-page]:not([data-page="mundo"]) .hero__caption {
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  border: 1px solid var(--line);
}

body[data-page] .media,
body[data-page] .product,
body[data-page] .journal {
  gap: 48px;
}

body[data-page] .media {
  align-items: center;
}

body[data-page] .media__figure,
body[data-page] .product__media,
body[data-page] .duo__card:nth-child(2),
body[data-page] .card,
body[data-page] .band {
  transform: none;
}

body[data-page] .media__figure .media__img,
body[data-page] .product__media,
body[data-page] .duo__img,
body[data-page] .journal__feature img,
body[data-page] .card,
body[data-page] .block,
body[data-page] .band {
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

body[data-page] .media__figure .media__img img {
  height: 560px;
}

body[data-page] .media__figure .media__float {
  right: 20px;
  bottom: 20px;
  width: min(38%, 220px);
  border-radius: 20px;
  transform: none;
}

body[data-page] .band::after {
  background: linear-gradient(180deg, rgba(0, 36, 156, 0.16), rgba(0, 0, 0, 0.52));
}

body[data-page] .values {
  margin-top: 24px;
}

body[data-page] .value::before {
  color: var(--red);
}

body[data-page] .duo {
  gap: 24px;
  margin-top: 24px;
}

body[data-page] .duo__card {
  margin: 0;
  padding: 0;
}

body[data-page] .duo__img {
  height: 320px;
}

body[data-page] .duo__content {
  padding: 18px 6px 0;
}

body[data-page] .product__media img {
  height: 640px;
}

body[data-page] .journal__feature {
  background: transparent;
}

body[data-page] .journal__feature img {
  height: 360px;
}

body[data-page] .journal__cards {
  gap: 16px;
}

body[data-page] .card {
  background: var(--white);
}

body[data-page] .grid > [class^="col-"],
body[data-page] .grid > div[style*="grid-column"] {
  grid-column: auto !important;
}

body[data-page] .grid {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

body[data-page] .form,
body[data-page] .control,
body[data-page] .toast {
  background: var(--white);
}

body[data-page] .control:focus {
  border-color: rgba(0, 36, 156, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 36, 156, 0.08);
}

body[data-page] .footer {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

body[data-page] .legal {
  border-top-color: var(--line);
}

@media (max-width: 980px) {
  body[data-page] .hero__grid,
  body[data-page] .media,
  body[data-page] .product,
  body[data-page] .journal,
  body[data-page] .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body[data-page] .hero__media,
  body[data-page] .hero__card--right img,
  body[data-page] .product__media img,
  body[data-page] .media__figure .media__img img {
    min-height: 0;
    height: 420px;
  }

  body[data-page] .media__figure .media__float {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .history-world {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .history-world__grid {
    gap: 34px;
  }

  .history-world__text p {
    font-size: 16px;
    line-height: 1.72;
  }

  .history-world__media {
    border-radius: 22px;
  }

  body[data-page] .hero {
    padding-top: 88px;
  }

  body[data-page] .section {
    padding: 72px 0;
  }
}
body[data-page] .hero__content-box {
  text-align: left;
}

body[data-page="mundo"] .hero__content-box,
body[data-page="mundo"] .hero__content-box .h1,
body[data-page="mundo"] .hero__content-box .hero__topline,
body[data-page="mundo"] .hero__content-box .kicker {
  text-align: left;
  justify-content: flex-start;
}

.hero__shell .h1,
.hero__shell .lede,
.hero__shell .btn-row,
.hero__shell .section-head,
.hero__shell .kicker {
  text-align: left;
}
 .nav a {
  position: relative;
}

.nav a[aria-current="page"]::after {
  display: none;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kicker::before,
.kicker::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
  opacity: 0.75;
  border-radius: 2px;
}

.hero__topline {
  margin-bottom: 18px;
}

.section-head .kicker {
  margin-bottom: 12px;
}

.fullbleed-kicker__detail::before {
  content: " — ";
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
}

.btn--primary:hover {
  transform: translateY(-1px);
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: none;
}

.card-editorial:hover,
.product-editorial:hover {
  transform: none;
  box-shadow: none;
}
 .hero__content-box {
  text-align: left;
}

@media (max-width: 980px) {
  .header__inner {
    gap: 8px;
  }
  .brand {
    min-width: auto;
  }
  .header__right {
    gap: 8px;
  }
  .header__right .language-switcher-container {
    margin-right: 0;
  }
  .header__right .btn {
    display: none;
  }
  .header__right .menu-btn {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}

/* GLOBAL: Ler mais button is hidden by default (desktop shows full text) */
body[data-page] .read-more-btn {
  display: none;
}

@media (max-width: 1024px) {
  .hide-mobile {
    display: none !important;
  }

  body[data-page] main {
    overflow-x: clip;
  }

  .lampejo-flor {
    width: 110px;
    height: 110px;
  }

  .lampejo-flor--top-right {
    right: 0;
  }

  .lampejo-flor--top-left {
    left: 6px;
    top: -92px;
    transform: none;
  }

  .card-editorial__img img.img--zoom {
    transform: scale(1.08);
  }

  .card-editorial:hover .card-editorial__img img.img--zoom {
    transform: scale(1.12);
  }

  body[data-page="mundo"] .card-editorial__img img.img--zoom {
    transform: scale(1.58);
    object-position: center 42%;
  }

  body[data-page="mundo"] .card-editorial:hover .card-editorial__img img.img--zoom {
    transform: scale(1.62);
  }
}

/* Language Overrides */
.lang-pt,
.lang-en,
.lang-es,
.lang-fr {
  display: none !important;
}

html[data-lang="pt"] .lang-pt,
html[lang="pt-BR"] .lang-pt,
html[lang="pt"] .lang-pt {
  display: inline !important;
}

html[data-lang="en"] .lang-en,
html[lang="en"] .lang-en {
  display: inline !important;
}

html[data-lang="es"] .lang-es,
html[lang="es"] .lang-es {
  display: inline !important;
}

html[data-lang="fr"] .lang-fr,
html[lang="fr"] .lang-fr {
  display: inline !important;
}

html:not([data-lang]) .lang-pt {
  display: inline !important;
}

.mobile-break {
  display: none;
}

.no-orphan {
  white-space: nowrap;
}

body[data-page] :where(.h1, .h2, h1, h2, h3, h4, .fullbleed-quote, .card-editorial__title, .product-gallery__title, .value-item__title) {
  text-wrap: balance;
}

@media (max-width: 1024px) {
  :root {
    --mobile-section-y: 58px;
    --mobile-section-y-lg: 68px;
    --mobile-tight-gap: 6px;
  }

  body[data-page] {
    text-align: center;
  }

  /* Tighter mobile spacing for spec/eyebrow + title + text rhythm */
  body[data-page] .kicker {
    margin-bottom: 4px;
  }

  body[data-page] .section-head .kicker {
    margin-bottom: 6px;
  }

  body[data-page] .h2,
  body[data-page] h2 {
    margin: 6px 0 8px;
  }

  body[data-page] .h3,
  body[data-page] h3 {
    margin: 4px 0 6px;
  }

  body[data-page] .lede {
    margin-top: 10px;
  }

  body[data-page] .body {
    margin-top: 10px;
  }

  body[data-page] .copy {
    margin-top: 10px;
  }

  body[data-page] .section-head {
    gap: 6px;
  }

  body[data-page] .history-world__text {
    margin-top: 14px;
  }

  body[data-page] .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  /* MOBILE ONLY: Header hidden initially, appears after scroll */
  body[data-page="mundo"] .header {
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 300ms ease, transform 300ms ease;
  }

  body[data-page="mundo"] .header.header--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body[data-page="mundo"] .header.header--solid {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* MOBILE ONLY: Logo left, menu right */
  body[data-page] .header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    min-height: 72px;
    padding: 0 var(--gutter);
  }

  body[data-page] .brand:not(.brand--footer) {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    z-index: 2;
  }

  body[data-page] .brand__logo--header {
    display: block;
    height: 34px;
    max-height: 34px;
    width: auto;
  }

  body[data-page] .header__right {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    z-index: 3;
    gap: 8px;
  }

  body[data-page] .header__right .menu-btn {
    flex: 0 0 auto;
    min-width: 44px;
    width: 44px;
    min-height: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
    letter-spacing: 0;
    color: transparent;
    position: relative;
    background: transparent;
    border: none;
  }

  body[data-page] .header__right .menu-btn::before,
  body[data-page] .header__right .menu-btn::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    height: 1px;
    background: var(--blue);
    border-radius: 999px;
  }

  body[data-page] .header__right .menu-btn::before {
    top: 17px;
  }

  body[data-page] .header__right .menu-btn::after {
    top: 25px;
  }

  /* MOBILE ONLY: Language switcher hidden from header, moved to menu */
  body[data-page] .header__right .language-switcher-container {
    display: none;
  }

  body[data-page] .header__right .btn {
    display: none;
  }

  body[data-page] .menu {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 990;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
  }

  body[data-page] .menu--visible {
    visibility: visible;
    opacity: 1;
  }

  body[data-page] .menu--visible[aria-hidden="false"] {
    display: block;
    pointer-events: auto;
  }

  body[data-page] .menu__backdrop {
    display: none;
  }

  body[data-page] .menu__panel {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: calc(100% - 24px);
    max-height: calc(100svh - 88px);
    margin: 0 auto;
    padding: 10px;
    overflow-y: auto;
    border-radius: 0 0 18px 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body[data-page] .menu[aria-hidden="false"] .menu__panel {
    opacity: 1;
    transform: translateY(0);
  }

  body[data-page] .menu__top {
    display: none;
  }

  body[data-page] .menu__nav {
    padding: 0;
    gap: 4px;
  }

  body[data-page] .menu__nav a {
    justify-content: flex-start;
    min-height: 40px;
    padding: 10px 12px;
    margin: 0;
    border-radius: 10px;
    background: transparent;
    border: none;
  }

  body[data-page] .menu__nav a span {
    margin: 0;
  }

  body[data-page] .menu__nav a span {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  body[data-page] .menu__nav a i {
    display: none;
  }

  body[data-page] .menu .btn-row {
    margin-top: 6px;
  }

  body[data-page] .menu .btn-row .btn {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 10px;
  }

  body[data-page] .menu .btn--ghost {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(0, 36, 156, 0.14);
  }

  /* MOBILE ONLY: Language selector at top of menu - flat horizontal row */
  body[data-page] .menu__language {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 2px;
  }

  body[data-page] .menu__language .lang-option {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 160ms ease, transform 160ms ease;
  }

  body[data-page] .menu__language .lang-option:hover {
    background: rgba(0, 36, 156, 0.06);
    transform: scale(1.04);
  }

  body[data-page] .menu__language .lang-option[aria-pressed="true"] {
    background: rgba(0, 36, 156, 0.1);
    box-shadow: 0 0 0 2px rgba(0, 36, 156, 0.12);
  }

  body[data-page] .menu__language .lang-option__flag {
    font-size: 18px;
    line-height: 1;
  }

  /* MOBILE ONLY: Read more button for long text */
  /* On desktop, button is already hidden via global rule above */
  /* On mobile, show the button */
  @media (max-width: 640px) {
    /* On mobile, hide the extra paragraphs initially */
    body[data-page] .read-more__hidden {
      display: none;
    }

    /* When expanded, show the hidden paragraphs */
    body[data-page] [data-read-more].is-expanded .read-more__hidden {
      display: block;
    }

    /* Show the button on mobile */
    body[data-page] .read-more-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      padding: 0;
      border: none;
      background: transparent;
      color: var(--blue);
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity 160ms ease;
    }

    body[data-page] .read-more-btn:hover {
      opacity: 0.7;
    }

    body[data-page] .read-more-btn__icon {
      width: 16px;
      height: 16px;
      transition: transform 200ms ease;
    }

    body[data-page] .read-more-btn.is-expanded .read-more-btn__icon {
      transform: rotate(180deg);
    }

    body[data-page] [data-read-more].is-expanded {
      margin-bottom: 0;
    }
  }

  body[data-page="mundo"] .header:not(.header--solid) {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--line);
  }

  body[data-page] .h1,
  body[data-page] .h2,
  body[data-page] h1,
  body[data-page] h2,
  body[data-page] h3,
  body[data-page] h4,
  body[data-page] p,
  body[data-page] .lede,
  body[data-page] .body,
  body[data-page] .lead,
  body[data-page] .copy,
  body[data-page] .kicker,
  body[data-page] .hero__content-box,
  body[data-page] .hero__shell .h1,
  body[data-page] .hero__shell .lede,
  body[data-page] .hero__shell .kicker,
  body[data-page] .section-head,
  body[data-page] .center-content,
  body[data-page] .editorial-split__text,
  body[data-page] .product-gallery__info,
  body[data-page] .recipe-entry__body,
  body[data-page] .form__note,
  body[data-page] .footer {
    text-align: left;
  }

  body[data-page] .kicker,
  body[data-page] .hero__topline,
  body[data-page] .section-head,
  body[data-page] .btn-row,
  body[data-page] .form__actions {
    justify-content: flex-start;
  }

  body[data-page] .product-gallery__btn-wrap,
  body[data-page] .journal-cta,
  body[data-page] .hero__actions {
    display: flex;
    justify-content: flex-start;
  }

  body[data-page] .container,
  body[data-page] .section-head,
  body[data-page] .center-content,
  body[data-page] .hero__content-box,
  body[data-page] .hero__shell,
  body[data-page] .editorial-split__content,
  body[data-page] .product-editorial__content,
  body[data-page] .recipes-library-head,
  body[data-page] .recipe-category__head {
    align-items: flex-start;
  }

  body[data-page] .hero__grid,
  body[data-page] .hero__grid-editorial,
  body[data-page] .media,
  body[data-page] .editorial-split,
  body[data-page] .editorial-split--reverse,
  body[data-page] .specs-grid,
  body[data-page] .grid,
  body[data-page] .values,
  body[data-page] .values-grid__items,
  body[data-page] .duo,
  body[data-page] .product,
  body[data-page] .product-editorial,
  body[data-page] .product-gallery,
  body[data-page] .product-gallery__item--featured,
  body[data-page] .product-gallery__details,
  body[data-page] .journal,
  body[data-page] .journal-grid,
  body[data-page] .journal__cards,
  body[data-page] .cards-overlap,
  body[data-page] .section-recipes-library .container,
  body[data-page] .recipes-library-head,
  body[data-page] .recipe-category,
  body[data-page] .recipe-category__head,
  body[data-page] .recipe-entry,
  body[data-page] .recipe-entry__specs,
  body[data-page] .recipe-entry__note,
  body[data-page] .contact-points,
  body[data-page] .hero__facts,
  body[data-page] .fields,
  body[data-page] .instagram-grid,
  body[data-page] .footer__grid,
  body[data-page] .legal,
  body[data-page] .stage__grid,
  body[data-page] .gridcards {
    grid-template-columns: 1fr !important;
  }

  body[data-page] .instagram-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2px;
  }

  body[data-page="receitas"] .recipe-entry__specs {
    display: grid;
    width: min(100%, 330px);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  body[data-page="receitas"] .recipe-entry__spec {
    min-width: 0;
    padding: 12px 10px;
  }

  .recipe-entry__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    background: var(--blue);
    color: var(--paper);
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    margin-top: 4px;
    transition: background 0.2s, transform 0.2s;
  }

  .recipe-entry__cta:hover {
    background: #001a6b;
    transform: translateY(-1px);
  }

  .recipe-entry__cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  body[data-page] .grid > *,
  body[data-page] .stage__grid > *,
  body[data-page] .gridcards > *,
  body[data-page] .section-recipes-library .container > *,
  body[data-page] .recipe-category > *,
  body[data-page] .product-gallery__item--featured > * {
    grid-column: 1 / -1 !important;
  }

  body[data-page] .editorial-split,
  body[data-page] .editorial-split--reverse,
  body[data-page] .media,
  body[data-page] .product,
  body[data-page] .journal,
  body[data-page] .product-editorial,
  body[data-page] .recipe-entry,
  body[data-page] .cards-overlap {
    gap: 28px;
  }

  body[data-page] img,
  body[data-page] video {
    margin-left: 0;
    margin-right: auto;
  }

  body[data-page] .footer img {
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page] .media__figure .media__float {
    position: static;
    width: 100%;
    margin: 16px auto 0;
  }

  body[data-page] .hero__media,
  body[data-page] .hero__card--right img,
  body[data-page] .product__media img,
  body[data-page] .media__figure .media__img img,
  body[data-page] .journal__feature img,
  body[data-page] .recipe-entry__media,
  body[data-page] .recipe-entry__media img,
  body[data-page] .recipe-entry__media video {
    width: 100%;
    max-width: 100%;
  }

  body[data-page] .recipe-entry__list,
  body[data-page] .recipe-entry__steps,
  body[data-page] .specs-list {
    text-align: left;
    list-style-position: outside;
    padding-left: 0;
  }

  body[data-page] .recipe-entry__list,
  body[data-page] .recipe-entry__steps {
    width: min(100%, 520px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.15rem;
    justify-items: start;
  }

  body[data-page] .specs-list,
  body[data-page] .product-gallery__details {
    width: min(100%, 680px);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    justify-items: start;
  }

  body[data-page] .product-gallery__details div {
    width: 100%;
    text-align: left;
  }

  body[data-page] .product-gallery__details dt,
  body[data-page] .product-gallery__details dd {
    text-align: left;
  }

  body[data-page] .specs-list li {
    justify-content: flex-start;
    text-align: left;
  }

  body[data-page] .specs-list li > span:first-child {
    justify-content: flex-start;
    text-align: left;
  }

  body[data-page="cafes"] .specs-grid__info {
    width: min(100%, 680px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    justify-items: start;
    text-align: left;
  }

  body[data-page="cafes"] .sca-badge {
    width: min(100%, 520px);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    justify-items: start;
    text-align: left;
  }

  body[data-page="cafes"] .sca-badge__desc {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="cafes"] .specs-grid__list {
    width: min(100%, 760px);
    margin-left: auto;
    margin-right: auto;
    padding: 56px;
  }

  body[data-page] .history-world__grid {
    justify-items: start;
  }

  body[data-page] .history-world__media,
  body[data-page] .history-world__content {
    width: min(100%, 680px);
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page] .recipe-entry__section,
  body[data-page] .recipe-entry__body,
  body[data-page] .product-gallery__info,
  body[data-page] .card-editorial__content,
  body[data-page] .duo__content,
  body[data-page] .journal__content,
  body[data-page] .value-card,
  body[data-page] .contact-points__item {
    justify-items: start;
    align-items: flex-start;
    text-align: left;
  }

  body[data-page] .journal-grid,
  body[data-page] .recipe-grid,
  body[data-page] .product-gallery,
  body[data-page] .values-grid__items,
  body[data-page] .grid,
  body[data-page] .gridcards,
  body[data-page] .cards-overlap {
    justify-items: start;
  }

  body[data-page] .card-editorial,
  body[data-page] .recipe-entry,
  body[data-page] .product-gallery__item,
  body[data-page] .value-card,
  body[data-page] .gridcard {
    width: 100%;
  }

  body[data-page] .card-editorial--offset {
    margin-top: 0;
  }

  body[data-page] .card-editorial__img,
  body[data-page] .recipe-entry__media,
  body[data-page] .product-gallery__img {
    width: 100%;
  }

  body[data-page] .card-editorial__content > *,
  body[data-page] .recipe-entry__body > *,
  body[data-page] .product-gallery__info > *,
  body[data-page] .value-card > *,
  body[data-page] .contact-points__item > * {
    margin-left: 0;
    margin-right: auto;
  }

  body[data-page] .recipe-entry__dek,
  body[data-page] .card-editorial__text,
  body[data-page] .product-gallery__desc,
  body[data-page] .value-card__text {
    max-width: 42rem;
  }

  body[data-page] .product-gallery__meta {
    justify-content: center;
  }

  body[data-page] .card-editorial__content,
  body[data-page] .recipe-entry__body,
  body[data-page] .product-gallery__info,
  body[data-page] .value-card,
  body[data-page] .contact-points__item,
  body[data-page] .specs-grid__list {
    align-items: flex-start;
    justify-items: start;
    text-align: left;
  }

  body[data-page] .card-editorial__content > *,
  body[data-page] .recipe-entry__body > *,
  body[data-page] .product-gallery__info > *,
  body[data-page] .value-card > *,
  body[data-page] .contact-points__item > * {
    margin-left: 0;
    margin-right: auto;
  }

  body[data-page] .card-editorial__title,
  body[data-page] .card-editorial__text,
  body[data-page] .recipe-entry__eyebrow,
  body[data-page] .recipe-entry__title,
  body[data-page] .recipe-entry__dek,
  body[data-page] .recipe-entry__label,
  body[data-page] .recipe-entry__note,
  body[data-page] .recipe-entry__note p,
  body[data-page] .product-gallery__status,
  body[data-page] .product-gallery__title,
  body[data-page] .product-gallery__desc,
  body[data-page] .product-gallery__details,
  body[data-page] .product-gallery__details div,
  body[data-page] .product-gallery__details dt,
  body[data-page] .product-gallery__details dd,
  body[data-page] .value-card__title,
  body[data-page] .value-card__text,
  body[data-page] .history-world__text,
  body[data-page] .history-world__text p,
  body[data-page] .specs-list,
  body[data-page] .specs-list li {
    text-align: left;
  }

  body[data-page] .recipe-entry__list,
  body[data-page] .recipe-entry__steps,
  body[data-page] .recipe-entry__specs,
  body[data-page] .product-gallery__details,
  body[data-page] .specs-list {
    margin-left: 0;
    margin-right: auto;
  }

  body[data-page] .recipe-entry__list,
  body[data-page] .recipe-entry__steps {
    justify-items: start;
    text-align: left;
    list-style-position: inside;
    padding-left: 0;
  }

  body[data-page] .recipe-entry__specs {
    justify-content: flex-start;
  }

  body[data-page="receitas"] .recipe-entry__specs {
    margin-left: 0;
    margin-right: auto;
  }

  body[data-page] .product-gallery__meta,
  body[data-page] .product-gallery__btn-wrap {
    justify-content: flex-start;
  }

  body[data-page] .specs-list li {
    justify-content: flex-start;
  }

  body[data-page] .specs-list li > span:first-child {
    justify-content: flex-start;
    text-align: left;
  }

  body[data-page="cafes"] .specs-grid__info,
  body[data-page="cafes"] .sca-badge {
    justify-items: start;
    text-align: left;
  }

  body[data-page="cafes"] .sca-badge__desc {
    margin-left: 0;
    margin-right: auto;
  }

  body[data-page] .section-head {
    text-align: left;
    justify-content: space-between;
    align-items: flex-start;
  }

  body[data-page] .section-head--column {
    align-items: flex-start;
    text-align: left;
  }

  body[data-page] .center-content,
  body[data-page] .section--process-centered .section-head--column,
  body[data-page] .hero__content-box,
  body[data-page] .hero__content-box .h1,
  body[data-page] .hero__content-box .lede,
  body[data-page] .hero__content-box .kicker,
  body[data-page] .hero__content-box .hero__topline {
    text-align: left;
  }

  body[data-page] .card-editorial__content,
  body[data-page] .recipe-entry__body,
  body[data-page] .product-gallery__info,
  body[data-page] .value-card,
  body[data-page] .contact-points__item,
  body[data-page] .specs-grid__list {
    align-items: stretch;
    justify-items: stretch;
    text-align: left;
  }

  body[data-page] .card-editorial__content > *,
  body[data-page] .recipe-entry__body > *,
  body[data-page] .product-gallery__info > *,
  body[data-page] .value-card > *,
  body[data-page] .contact-points__item > * {
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page] .card-editorial__title,
  body[data-page] .card-editorial__text,
  body[data-page] .recipe-entry__eyebrow,
  body[data-page] .recipe-entry__title,
  body[data-page] .recipe-entry__dek,
  body[data-page] .recipe-entry__label,
  body[data-page] .recipe-entry__note,
  body[data-page] .recipe-entry__note p,
  body[data-page] .product-gallery__status,
  body[data-page] .product-gallery__title,
  body[data-page] .product-gallery__desc,
  body[data-page] .product-gallery__details,
  body[data-page] .product-gallery__details div,
  body[data-page] .product-gallery__details dt,
  body[data-page] .product-gallery__details dd,
  body[data-page] .value-card__title,
  body[data-page] .value-card__text,
  body[data-page] .history-world__text,
  body[data-page] .history-world__text p,
  body[data-page] .specs-list,
  body[data-page] .specs-list li {
    text-align: left;
  }

  body[data-page] .recipe-entry__list,
  body[data-page] .recipe-entry__steps {
    justify-items: start;
    text-align: left;
    list-style-position: outside;
    padding-left: 1.15rem;
  }

  body[data-page] .recipe-entry__specs,
  body[data-page] .product-gallery__meta,
  body[data-page] .product-gallery__btn-wrap {
    justify-content: flex-start;
  }

  body[data-page="receitas"] .recipe-entry__specs,
  body[data-page] .recipe-entry__specs,
  body[data-page] .product-gallery__details,
  body[data-page] .specs-list {
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page] .specs-list li,
  body[data-page] .specs-list li > span:first-child {
    justify-content: flex-start;
    text-align: left;
  }

  body[data-page="cafes"] .specs-grid__info,
  body[data-page="cafes"] .sca-badge {
    justify-items: stretch;
    text-align: left;
  }

  body[data-page="cafes"] .sca-badge__desc {
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page] main :where(
    .editorial-split__content,
    .editorial-split__text,
    .product-editorial__content,
    .product__content,
    .duo__content,
    .journal__content,
    .history-world__content,
    .specs-grid__info,
    .form-editorial,
    .form,
    .form__note,
    .stage__content,
    .boutique-feature__content
  ) {
    align-items: flex-start;
    text-align: left;
  }

  body[data-page] main :where(
    .editorial-split__content,
    .editorial-split__text,
    .product-editorial__content,
    .product__content,
    .duo__content,
    .journal__content,
    .history-world__content,
    .specs-grid__info,
    .form-editorial,
    .form,
    .form__note,
    .stage__content,
    .boutique-feature__content
  ) :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy) {
    text-align: inherit;
  }

  body[data-page] main :where(
    .editorial-split__content,
    .editorial-split__text,
    .product-editorial__content,
    .product__content,
    .duo__content,
    .journal__content,
    .history-world__content,
    .specs-grid__info,
    .form-editorial,
    .stage__content,
    .boutique-feature__content
  ) .kicker {
    justify-content: flex-start;
  }

  body[data-page] .center-content,
  body[data-page] .center-content :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy),
  body[data-page] .section--process-centered .section-head--column,
  body[data-page] .section--process-centered .section-head--column :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy),
  body[data-page] .hero__content-box,
  body[data-page] .hero__content-box :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy) {
    text-align: left;
  }

  body[data-page] .card-editorial,
  body[data-page] .recipe-entry,
  body[data-page] .product-gallery__item,
  body[data-page] .value-card,
  body[data-page] .gridcard {
    width: 100%;
    max-width: none;
  }

  body[data-page] .form,
  body[data-page] .form-editorial,
  body[data-page] .fields,
  body[data-page] .field,
  body[data-page] .control {
    width: 100%;
  }

  body[data-page] .footer {
    padding: 48px 0 30px;
    text-align: left;
  }

  body[data-page] .footer .container {
    text-align: left;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  body[data-page] .footer__grid {
    width: 100%;
    margin: 0;
    padding: 0 0 24px;
    justify-items: start;
  }

  body[data-page] .footer__grid > div {
    width: 100%;
    padding: 18px 0;
    border-left: 0;
  }

  body[data-page] .footer__grid > div:first-child {
    padding-top: 0;
    justify-content: flex-start !important;
  }

  body[data-page] .footer__grid > div:last-child {
    padding-right: 0;
  }

  body[data-page] .footer__grid > div:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  body[data-page] .brand--footer {
    justify-content: flex-start;
  }

  body[data-page] .footer__title {
    text-align: left;
  }

  body[data-page] .footer__links {
    text-align: left;
  }

  body[data-page] .footer__grid > div {
    align-items: flex-start;
    justify-items: start;
    text-align: left;
  }

  body[data-page] .footer__grid > div .footer__links {
    width: 100%;
    justify-items: start;
  }

  body[data-page] .footer__contact-link {
    flex-direction: row;
    justify-content: flex-start !important;
    text-align: left;
    gap: 7px;
    align-items: flex-start;
  }

  body[data-page] .footer__contact-link span:first-child {
    text-align: left;
  }

  body[data-page] .footer__text {
    max-width: none;
    margin-top: 8px;
  }

  body[data-page] .footer__links a {
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
    min-height: 46px;
    padding: 13px 0;
    border-bottom: 0;
    text-align: left;
  }

  body[data-page] .footer__links {
    gap: 4px;
  }

  body[data-page] .footer__grid {
    border-bottom: 0;
  }

  body[data-page] .legal {
    justify-items: start;
    text-align: left;
  }

  body[data-page] main > section + section {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  body[data-page] .section,
  body[data-page] .section--padding-lg,
  body[data-page] .history-world,
  body[data-page] .values-grid,
  body[data-page] .section-recipes-library,
  body[data-page] .section-instagram {
    padding-top: var(--mobile-section-y);
    padding-bottom: var(--mobile-section-y);
  }

  body[data-page] .section--overlap {
    margin-top: 0;
    padding-top: var(--mobile-section-y);
  }

  body[data-page] .section-cta-editorial {
    padding: 18px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  body[data-page] .section-cta-editorial .cta-editorial__inner {
    text-align: left;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  body[data-page] .section-cta-editorial .cta-editorial__content {
    max-width: none;
    text-align: left;
  }

  body[data-page] .section-cta-editorial .btn-row {
    justify-content: flex-start;
  }

  body[data-page] .hero--editorial {
    min-height: 100svh;
    height: 100svh;
    padding: 72px 0 40px;
    align-items: center;
  }

  body[data-page] .hero--editorial .hero__media,
  body[data-page] .hero--editorial .hero__media img,
  body[data-page] .hero--editorial .hero__media video {
    height: 100% !important;
    min-height: 100% !important;
  }

  /* MOBILE ONLY: Vertical video cinematic positioning */
  body[data-page] .hero--editorial .hero__media video[data-mobile-video] {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  body[data-page] .hero__grid-editorial {
    border-bottom: 0;
    gap: 22px;
    min-height: calc(100svh - 112px);
    align-items: center;
    justify-items: center;
    text-align: center;
    align-content: center;
  }

  body[data-page] .hero__content-box {
    width: 100%;
    margin: 0;
  }

  body[data-page] .hero__content-box,
  body[data-page] .hero__content-box .h1,
  body[data-page] .hero__content-box .lede,
  body[data-page] .hero__content-box .kicker,
  body[data-page] .hero__content-box .hero__topline {
    text-align: left;
    justify-content: flex-start;
  }

  body[data-page] .hero__content-box .h1 {
    font-size: clamp(40px, 8vw, 60px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
  }

  body[data-page] .hero__content-box .lede {
    max-width: none;
    margin-left: 0;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.58;
  }

  body[data-page] .hero__content-box .btn-row {
    justify-content: flex-start;
    margin-top: 22px;
  }

  /* Receitas — narrower, cleaner text block */
  body[data-page="receitas"] .hero__content-box {
    max-width: 400px;
    padding-right: 32px;
  }

  body[data-page="receitas"] .hero__content-box .h1 {
    font-size: clamp(36px, 7vw, 54px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }

  body[data-page="receitas"] .hero__content-box .lede {
    font-size: 15px;
    line-height: 1.6;
    max-width: 34ch;
  }

  body[data-page="receitas"] .hero__content-box .btn-row {
    margin-top: 18px;
  }

  body[data-page] .scroll-indicator {
    bottom: 18px;
    width: 26px;
    height: 26px;
    color: rgba(255, 255, 255, 0.94);
  }

  body[data-page] .scroll-cue {
    display: none;
  }

  body[data-page] .scroll-indicator path {
    stroke-width: 1.8;
  }

  body[data-page] .editorial-split,
  body[data-page] .editorial-split--reverse,
  body[data-page] .product-editorial,
  body[data-page] .journal-grid,
  body[data-page] .cards-overlap,
  body[data-page] .recipe-grid,
  body[data-page] .recipe-entry {
    gap: 30px;
  }

  body[data-page] .values-grid {
    gap: 34px;
  }

  body[data-page] .values-grid__items {
    gap: 18px;
  }

  body[data-page] .value-card,
  body[data-page] .card-editorial__content,
  body[data-page] .recipe-entry__body {
    padding: 26px 22px;
  }

  body[data-page] .image-stack {
    padding: 0;
  }

  body[data-page] .image-stack__main,
  body[data-page] .image-stack__main--tall,
  body[data-page] .product-editorial__media img,
  body[data-page] .media__figure .media__img img,
  body[data-page] .journal__feature img {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
  }

  body[data-page="historia"] .editorial-split__media .image-stack__main {
    content: url("assets/images/captura-de-tela-2026-04-07-as-14-14-42.webp");
  }

  /* Hide float image styles - removed from essencia section */
  body[data-page] .image-stack__float,
  body[data-page] .image-stack__float-wrapper {
    display: none;
  }

  body[data-page] .image-stack .lampejo-flor {
    position: relative;
    inset: auto;
    display: block;
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    transform: none;
  }

  body[data-page] .editorial-split__content > .lampejo-flor {
    position: relative;
    inset: auto;
    display: block;
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    transform: none;
  }

  body[data-page] .fullbleed-image,
  body[data-page] .section-fullbleed {
    height: 360px;
    min-height: 360px;
    overflow: hidden;
  }

  body[data-page] .fullbleed-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  body[data-page] .fullbleed-image img,
  body[data-page] .fullbleed-image video {
    display: block;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
  }

  body[data-page] .fullbleed-image::after {
    display: block;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.56) 58%, rgba(0, 0, 0, 0.68)),
      linear-gradient(90deg, rgba(0, 36, 156, 0.18), rgba(0, 0, 0, 0));
  }

  body[data-page] .fullbleed-content {
    position: absolute;
    inset: 0;
    display: flex !important;
    flex-direction: column;
    min-height: 0;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    padding: 40px 24px 34px;
    background: transparent;
    color: var(--white);
    border: 0;
    text-align: right;
  }

  body[data-page] .section-fullbleed .fullbleed-quote,
  body[data-page] .section-fullbleed .h2--light {
    display: block;
    color: var(--white) !important;
    max-width: 11ch;
    margin: 0 0 16px auto;
    text-align: right;
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 0.98;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
  }

  body[data-page] .fullbleed-content .kicker {
    color: rgba(255, 255, 255, 0.92) !important;
    max-width: 24ch;
    margin: 0 0 0 auto;
    flex-wrap: wrap;
    row-gap: 8px;
    justify-content: flex-end;
    text-align: right;
    line-height: 1.45;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
  }

  body[data-page] .fullbleed-content .kicker::before,
  body[data-page] .fullbleed-content .kicker::after {
    width: 26px;
  }

  body[data-page] .fullbleed-content .fullbleed-kicker {
    column-gap: 10px;
    row-gap: 6px;
    justify-content: flex-end;
    text-align: right;
  }

  body[data-page] .fullbleed-content .fullbleed-kicker::before {
    order: 1;
  }

  body[data-page] .fullbleed-content .fullbleed-kicker__brand {
    order: 2;
    text-align: right;
  }

  body[data-page] .fullbleed-content .fullbleed-kicker::after {
    order: 3;
  }

  body[data-page] .fullbleed-content .fullbleed-kicker__detail {
    order: 4;
    flex-basis: 100%;
    text-align: center;
  }

  body[data-page] .fullbleed-content .fullbleed-kicker__detail::before {
    content: "";
  }

  body[data-page] .cta-editorial__inner {
    padding: 58px 22px;
  }

  body[data-page] .journal-grid[style] {
    margin-top: 30px !important;
  }

  body[data-page] .center-content .lede,
  body[data-page] .editorial-split__text,
  body[data-page] .product-editorial__content .lede {
    margin-top: 8px;
  }

  body[data-page] .product-editorial .section-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
  }

  body[data-page] .product-editorial {
    gap: 24px;
  }

  body[data-page] .product-editorial .section-head .kicker {
    order: 1;
  }

  body[data-page] .product-editorial .section-chip {
    order: 2;
    margin: 0;
    padding: 9px 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  body[data-page] .product-editorial .section-head .kicker::before,
  body[data-page] .product-editorial .section-head .kicker::after {
    width: 28px;
  }

  body[data-page] .product-editorial .h2 {
    max-width: 12.4em;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.06;
  }

  /* Tighter mobile spacing for product-editorial and specs */
  body[data-page] .product-editorial__content {
    gap: 10px;
  }

  body[data-page] .product-editorial .section-head {
    gap: 8px;
    margin-bottom: 12px;
    margin-top: 0;
  }

  body[data-page] .product-editorial {
    gap: 24px;
  }

  body[data-page] .specs-list {
    margin: 16px 0;
  }

  body[data-page] .specs-list li {
    padding: 10px 0;
  }

  body[data-page] .specs-list li {
    padding: 14px 0;
  }

  body[data-page] .btn-row {
    margin-top: 8px;
  }

  body[data-page="mundo"] main :where(
    .editorial-split__content,
    .values-grid__header,
    .product-editorial__content,
    .center-content
  ) {
    align-items: flex-start;
    text-align: left;
  }

  body[data-page="mundo"] main :where(
    .editorial-split__content,
    .values-grid__header,
    .product-editorial__content,
    .center-content
  ) :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy) {
    text-align: left;
  }

  body[data-page="mundo"] main .editorial-split__content :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy),
  body[data-page="mundo"] main .values-grid__header :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy),
  body[data-page="mundo"] main .product-editorial__content :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy),
  body[data-page="mundo"] main .center-content :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy) {
    text-align: left;
  }

  body[data-page="mundo"] main :where(
    .editorial-split__content,
    .values-grid__header,
    .product-editorial__content,
    .center-content
  ) .kicker,
  body[data-page="mundo"] .product-editorial .section-head,
  body[data-page="mundo"] .center-content .section-head {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  body[data-page="mundo"] main :where(
    .editorial-split__content,
    .values-grid__header,
    .product-editorial__content,
    .center-content
  ) .kicker {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    line-height: 1;
  }

  body[data-page="mundo"] main :where(
    .editorial-split__content,
    .values-grid__header,
    .product-editorial__content,
    .center-content
  ) .kicker::before {
    display: block;
    flex: 0 0 32px;
    width: 32px;
    align-self: center;
  }

  body[data-page="mundo"] main :where(
    .editorial-split__content,
    .values-grid__header,
    .product-editorial__content,
    .center-content
  ) .kicker::after {
    display: block;
    flex: 0 0 32px;
    width: 32px;
    align-self: center;
  }

  body[data-page="mundo"] .product-editorial .h2,
  body[data-page="mundo"] .center-content .lede {
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page="mundo"] main .center-content {
    align-items: flex-start !important;
    text-align: left !important;
  }

  body[data-page="mundo"] main .center-content .section-head {
    width: 100%;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
  }

  body[data-page="mundo"] main .center-content .kicker {
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
  }

  body[data-page="mundo"] main .center-content :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy) {
    text-align: left !important;
  }

  body[data-page="mundo"] .values-grid__header {
    width: calc(100% - 44px);
    max-width: none;
    margin-left: 22px;
    margin-right: 22px;
  }

  body[data-page="mundo"] .product-editorial .btn-row,
  body[data-page="mundo"] .editorial-split__content .btn-row {
    justify-content: flex-start;
  }

  body[data-page="mundo"] .product-editorial .btn-row {
    width: 100%;
    flex-wrap: nowrap;
    gap: 8px;
  }

  body[data-page="mundo"] .product-editorial .btn-row .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 10px;
    font-size: 11px;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  body[data-page="mundo"] .product-editorial .specs-list,
  body[data-page="mundo"] .product-editorial .specs-list li,
  body[data-page="mundo"] .product-editorial .specs-list li > span:first-child {
    text-align: left;
    justify-content: flex-start;
  }

  body[data-page="mundo"] .product-editorial .specs-list {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page="mundo"] .product-editorial .specs-list li {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(112px, 0.45fr) minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
  }

  body[data-page="mundo"] .product-editorial .specs-list li > span:first-child {
    width: auto;
  }

  body[data-page="mundo"] .product-editorial .specs-list li > span:last-child {
    justify-self: start;
    text-align: left;
  }

  body[data-page="historia"] .editorial-split__content,
  body[data-page="historia"] .editorial-split__text,
  body[data-page="historia"] .process-content,
  body[data-page="historia"] .section--process-centered .section-head--column,
  body[data-page="historia"] .section--process-centered .value-item {
    align-items: flex-start;
    justify-items: stretch;
    text-align: left;
  }

  body[data-page="historia"] .editorial-split__content :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy),
  body[data-page="historia"] .editorial-split__text :where(p, .lede, .body, .lead, .copy),
  body[data-page="historia"] .process-content :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy),
  body[data-page="historia"] .section--process-centered .value-item :where(.value-item__title, p) {
    text-align: left;
  }

  body[data-page="historia"] .section--process-centered .value-item {
    width: 100%;
    grid-template-columns: 56px minmax(0, 1fr);
  }

  body[data-page="historia"] .section--process-centered .value-item > div {
    justify-self: stretch;
  }

  body[data-page="historia"] .section--process-centered .value-item__num {
    justify-self: start;
  }

  body[data-page="cafes"] .editorial-split__content,
  body[data-page="cafes"] .editorial-split__text,
  body[data-page="cafes"] .specs-grid__info,
  body[data-page="cafes"] .specs-grid__list,
  body[data-page="cafes"] .center-content,
  body[data-page="cafes"] .product-gallery__info,
  body[data-page="cafes"] .boutique-feature__content {
    align-items: flex-start;
    justify-items: stretch;
    text-align: left;
  }

  body[data-page="cafes"] :where(
    .editorial-split__content,
    .editorial-split__text,
    .specs-grid__info,
    .specs-grid__list,
    .center-content,
    .product-gallery__info,
    .boutique-feature__content
  ) :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy),
  body[data-page="cafes"] .product-gallery__details,
  body[data-page="cafes"] .product-gallery__details div,
  body[data-page="cafes"] .product-gallery__details dt,
  body[data-page="cafes"] .product-gallery__details dd,
  body[data-page="cafes"] .specs-list,
  body[data-page="cafes"] .specs-list li {
    text-align: left;
  }

  body[data-page="cafes"] .editorial-split__content :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4),
  body[data-page="cafes"] .specs-grid__info :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4),
  body[data-page="cafes"] .center-content :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4),
  body[data-page="cafes"] .boutique-feature__content :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4) {
    text-align: left !important;
  }

  body[data-page="cafes"] .editorial-split__content :where(p, .lede, .body, .lead, .copy),
  body[data-page="cafes"] .specs-grid__info :where(p, .lede, .body, .lead, .copy),
  body[data-page="cafes"] .center-content :where(p, .lede, .body, .lead, .copy),
  body[data-page="cafes"] .boutique-feature__content :where(p, .lede, .body, .lead, .copy) {
    text-align: left !important;
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page="cafes"] .center-content .kicker,
  body[data-page="cafes"] .editorial-split__content .kicker,
  body[data-page="cafes"] .specs-grid__info .kicker,
  body[data-page="cafes"] .boutique-feature__content .kicker {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }

  body[data-page="cafes"] .center-content .lede,
  body[data-page="cafes"] .specs-grid__info,
  body[data-page="cafes"] .sca-badge,
  body[data-page="cafes"] .sca-badge__desc,
  body[data-page="cafes"] .product-gallery__details,
  body[data-page="cafes"] .boutique-feature__intro {
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page="cafes"] .specs-grid__list {
    width: 100%;
    padding: 42px 22px;
  }

  body[data-page="cafes"] .specs-list li {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(112px, 0.45fr) minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    justify-content: stretch;
  }

  body[data-page="cafes"] .specs-list li > span:first-child {
    width: auto;
    justify-content: flex-start;
    text-align: left;
  }

  body[data-page="cafes"] .specs-list li > span:last-child {
    justify-self: start;
    text-align: left;
  }

  body[data-page="cafes"] .product-gallery__meta,
  body[data-page="cafes"] .product-gallery__btn-wrap,
  body[data-page="cafes"] .boutique-feature__content .btn {
    justify-content: flex-start;
  }

  body[data-page="cafes"] .specs-grid__info .btn-row {
    justify-content: flex-start;
  }

  body[data-page="receitas"] .editorial-split__content,
  body[data-page="receitas"] .editorial-split__text,
  body[data-page="receitas"] .recipes-library-head,
  body[data-page="receitas"] .recipe-category__head {
    align-items: flex-start;
    justify-items: stretch;
    text-align: left;
  }

  body[data-page="receitas"] :where(
    .editorial-split__content,
    .editorial-split__text,
    .recipes-library-head,
    .recipe-category__head
  ) :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4, p, .lede, .body, .lead, .copy) {
    text-align: left !important;
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page="receitas"] :where(
    .editorial-split__content,
    .recipes-library-head,
    .recipe-category__head
  ) .kicker {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }

  body[data-page] .mobile-break {
    display: block;
  }

  body[data-page="cafes"] .hero__product-float {
    display: none;
  }

  body[data-page="cafes"] .hero__product-float .product-card-editorial {
    max-width: 176px;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  }

  body[data-page="cafes"] .hero__product-float .product-card-editorial img {
    height: 150px;
    border-radius: 11px;
  }

  body[data-page="cafes"] .hero__product-float .product-card__info {
    padding: 9px 5px 4px;
  }

  body[data-page="cafes"] .hero__product-float .product-card__label {
    font-size: 8px;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
  }

  body[data-page="cafes"] .hero__product-float .product-card__info p {
    font-size: 10px;
    line-height: 1.35;
  }

  body[data-page] .process-layout,
  body[data-page] .product-gallery__item--featured,
  body[data-page] .boutique-feature {
    grid-template-columns: 1fr !important;
  }

  body[data-page] .process-layout {
    gap: 32px;
  }

  body[data-page] .product-gallery__item--featured {
    min-height: 0;
  }

  body[data-page] .product-gallery__item--featured .product-gallery__img {
    height: 320px;
    border-radius: 22px 22px 0 0;
    object-fit: contain;
    background: var(--paper);
    padding: 16px;
  }

  body[data-page="cafes"] .product-gallery__item--featured .product-gallery__img {
    height: 500px;
    border-radius: 28px;
  }

  body[data-page="cafes"] .product-gallery__item--featured .product-gallery__img img {
    border-radius: 28px;
  }

  body[data-page="cafes"] .center-content {
    margin-top: -20px;
    padding-top: 80px;
  }

  body[data-page="cafes"] .center-content .lede {
    margin-top: 12px;
  }

  body[data-page="cafes"] .product-gallery__item--featured .product-gallery__info {
    padding: 20px 16px;
  }

  body[data-page="cafes"] .product-gallery__item--featured .product-gallery__title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  body[data-page="cafes"] .product-gallery__item--featured .product-gallery__desc {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  body[data-page] .product-gallery__details {
    grid-template-columns: 1fr !important;
  }

  body[data-page] .boutique-feature {
    max-width: none;
    padding: 22px;
    margin-top: 40px;
  }

  body[data-page="cafes"] .boutique-feature {
    padding: 16px;
    margin-top: 8px;
    gap: 20px;
  }

  body[data-page="cafes"] .boutique-feature .lede {
    margin-bottom: 16px;
  }

  body[data-page="cafes"] .boutique-feature__intro {
    display: none;
  }

  body[data-page] .boutique-feature__content {
    max-width: none;
  }

  body[data-page] .form-editorial {
    padding: 32px 20px;
  }

  body[data-page] .history-world {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  body[data-page] .history-world__grid {
    gap: 34px;
  }
}

@media (max-width: 1024px) {
  body[data-page="historia"] .history-world--presence .history-world__grid,
  body[data-page="historia"] .history-world--verbena .history-world__grid,
  body[data-page="historia"] .section--process-centered .process-layout {
    grid-template-columns: 1fr !important;
  }

  body[data-page="historia"] .history-world--presence .history-world__content,
  body[data-page="historia"] .history-world--verbena .history-world__content,
  body[data-page="historia"] .section--process-centered .process-content {
    order: 1;
    align-items: flex-start;
    justify-items: stretch;
    text-align: left !important;
  }

  body[data-page="historia"] .history-world--presence .history-world__media,
  body[data-page="historia"] .history-world--verbena .history-world__media,
  body[data-page="historia"] .section--process-centered .process-media {
    order: 2;
  }

  body[data-page="historia"] .section--process-centered .process-media img {
    object-position: left center;
  }

  body[data-page="historia"] .history-world--presence .kicker,
  body[data-page="historia"] .history-world--verbena .kicker,
  body[data-page="historia"] .section--process-centered .kicker {
    width: 100%;
    justify-content: flex-start;
    text-align: left !important;
  }

  body[data-page="historia"] .history-world--presence :where(.section-head, .section-head--column),
  body[data-page="historia"] .history-world--verbena :where(.section-head, .section-head--column),
  body[data-page="historia"] .section--process-centered :where(.section-head, .section-head--column) {
    align-items: flex-start;
    text-align: left !important;
  }

  body[data-page="historia"] .history-world--presence :where(h1, h2, h3, h4, p, .lede, .body, .lead, .copy, .history-world__text),
  body[data-page="historia"] .history-world--verbena :where(h1, h2, h3, h4, p, .lede, .body, .lead, .copy, .history-world__text),
  body[data-page="historia"] .section--process-centered :where(h1, h2, h3, h4, p, .lede, .body, .lead, .copy, .value-item__title) {
    text-align: left !important;
  }
}

/* Read-more is a mobile-only interaction. Desktop and iPad always show full text. */
body[data-page] [data-read-more] .read-more__hidden {
  display: block !important;
}

body[data-page] .read-more-btn,
body[data-page] .recipe-entry__cta {
  display: none !important;
}

@media (max-width: 640px) {
  body[data-page] [data-read-more] .read-more__hidden {
    display: none !important;
  }

  body[data-page] [data-read-more].is-expanded .read-more__hidden {
    display: block !important;
  }

  body[data-page] .read-more-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--blue);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
  }

  body[data-page] .recipe-entry__cta {
    display: flex !important;
  }
}

@media (max-width: 1024px) {
  body[data-page] .section-cta-editorial .cta-editorial__inner,
  body[data-page] .section-cta-editorial .cta-editorial__content,
  body[data-page] .section-cta-editorial .h2,
  body[data-page] .section-cta-editorial .lede {
    text-align: left !important;
  }

  body[data-page] .section-cta-editorial .cta-editorial__content {
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page] .section-cta-editorial .kicker,
  body[data-page] .section-cta-editorial .btn-row {
    justify-content: flex-start !important;
  }

  body[data-page] .section-cta-editorial .btn--red {
    margin-left: 0;
    margin-right: auto;
  }

  body[data-page] .section-cta-editorial .btn--wa {
    display: none !important;
  }

  body[data-page] .section-cta-editorial .kicker--light {
    display: none !important;
  }

  body[data-page] .section-cta-editorial .cta-editorial__inner {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

body[data-page] .section-fullbleed + .section {
  margin-top: 0;
}

@media (min-width: 1025px) {
  body[data-page="historia"] .editorial-split__media .image-stack__main {
    content: url("assets/images/madefilmes-dji-0542.webp");
  }

  body[data-page="mundo"] .hero__grid-editorial {
    justify-items: center;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  body[data-page="mundo"] .hero__content-box {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  body[data-page="mundo"] .hero__content-box .h1,
  body[data-page="mundo"] .hero__content-box .hero__topline,
  body[data-page="mundo"] .hero__content-box .kicker {
    text-align: center;
    justify-content: center;
  }

  body[data-page] .section-fullbleed .fullbleed-content {
    align-items: center;
    justify-content: center;
    text-align: justify;
    text-align-last: center;
    padding: clamp(40px, 7vw, 92px);
  }

  body[data-page] .section-fullbleed .fullbleed-quote,
  body[data-page] .section-fullbleed .h2--light,
  body[data-page] .section-fullbleed .fullbleed-kicker,
  body[data-page] .section-fullbleed .fullbleed-kicker__brand,
  body[data-page] .section-fullbleed .fullbleed-kicker__detail {
    text-align: center;
  }

  body[data-page] .section-fullbleed .fullbleed-quote {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page] .section-fullbleed .fullbleed-kicker {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page] .section-cta-editorial .btn-row {
    justify-content: center;
  }

  body[data-page] .section-cta-editorial .btn--red {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="receitas"] .recipes-library-head {
    justify-self: center;
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  body[data-page="receitas"] .recipes-library-head .kicker {
    justify-content: center;
    text-align: center;
  }

  body[data-page="receitas"] .recipes-library-head :where(.h2, .body) {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  body[data-page] .hero--editorial {
    padding-bottom: 24px;
  }

  body[data-page] .hero__inner,
  body[data-page="mundo"] .hero__inner {
    height: 100%;
    min-height: 0;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    padding-bottom: 0;
  }

  body[data-page] .hero__grid-editorial {
    width: 100%;
    height: 100%;
    min-height: 100%;
    align-content: end;
    align-items: end;
    justify-items: end;
    text-align: right;
    padding-bottom: clamp(18px, 3svh, 34px);
  }

  body[data-page] .hero__content-box {
    justify-self: end;
    align-self: end;
    width: min(86vw, 520px);
    max-width: 520px;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
  }

  body[data-page] .hero__content-box,
  body[data-page] .hero__content-box .h1,
  body[data-page] .hero__content-box .lede,
  body[data-page] .hero__content-box .kicker,
  body[data-page] .hero__content-box .hero__topline {
    text-align: right;
    justify-content: flex-end;
  }

  body[data-page] .hero__content-box .lede {
    margin-left: auto;
    margin-right: 0;
  }

  body[data-page] .hero__content-box .btn-row {
    justify-content: flex-end;
  }

  body[data-page="receitas"] .hero__content-box {
    max-width: 420px;
    padding-right: 0;
  }

  body[data-page] .hero__media::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.25) 44%, rgba(0, 0, 0, 0.68) 100%),
      linear-gradient(135deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.5) 100%);
  }

  body[data-page] .fullbleed-content {
    align-items: flex-end !important;
    justify-content: flex-end !important;
    text-align: right;
  }

  body[data-page] .section-fullbleed .fullbleed-quote,
  body[data-page] .section-fullbleed .h2--light,
  body[data-page] .section-fullbleed .fullbleed-kicker,
  body[data-page] .section-fullbleed .fullbleed-kicker__brand,
  body[data-page] .section-fullbleed .fullbleed-kicker__detail {
    text-align: right;
  }

  body[data-page] .section-fullbleed .fullbleed-kicker {
    justify-content: flex-end;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (max-width: 1024px) {
  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) {
    row-gap: 12px;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) :where(.section-head, .section-head--column) {
    gap: 8px !important;
    margin-bottom: 0 !important;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) :where(.kicker) {
    margin-bottom: 0 !important;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) :where(.kicker, .section-head, .section-head--column) + :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4) {
    margin-top: 8px !important;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4) {
    margin-bottom: 0 !important;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4) + :where(p, .lede, .body, .lead, .copy, .editorial-split__text, .history-world__text) {
    margin-top: 12px !important;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) :where(p, .lede, .body, .lead, .copy) + :where(p, .lede, .body, .lead, .copy) {
    margin-top: 14px !important;
  }

  body[data-page] :where(.editorial-split__text, .history-world__text) {
    display: grid;
    row-gap: 14px;
  }

  body[data-page] :where(.editorial-split__text, .history-world__text) > :where(p, .lede, .body, .lead, .copy) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 1024px) {
  :root {
    --mobile-label-title-gap: 18px;
    --mobile-title-text-gap: 18px;
    --mobile-paragraph-gap: 16px;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) {
    gap: 0 !important;
    row-gap: 0 !important;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) :where(.section-head, .section-head--column) {
    gap: 10px !important;
    margin-top: 0 !important;
    margin-bottom: var(--mobile-label-title-gap) !important;
  }

  body[data-page] .product-editorial .section-head {
    gap: 14px !important;
    margin-bottom: var(--mobile-label-title-gap) !important;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) > .kicker {
    margin-top: 0 !important;
    margin-bottom: var(--mobile-label-title-gap) !important;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    line-height: 1.08;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) :where(.h1, .h2, .h3, .h4, h1, h2, h3, h4) + :where(p, .lede, .body, .lead, .copy, .editorial-split__text, .history-world__text) {
    margin-top: var(--mobile-title-text-gap) !important;
  }

  body[data-page] :where(.editorial-split__text, .history-world__text) {
    row-gap: var(--mobile-paragraph-gap) !important;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) :where(p, .lede, .body, .lead, .copy) {
    line-height: 1.62;
  }

  body[data-page] :where(
    .editorial-split__content,
    .product-editorial__content,
    .values-grid__header,
    .center-content,
    .specs-grid__info,
    .history-world__content,
    .process-content,
    .recipes-library-head,
    .recipe-category__head,
    .product-gallery__info,
    .boutique-feature__content,
    .cta-editorial__content,
    .form-editorial
  ) :where(p, .lede, .body, .lead, .copy) + :where(p, .lede, .body, .lead, .copy) {
    margin-top: var(--mobile-paragraph-gap) !important;
  }

  body[data-page] .product-editorial__content > .lede + .specs-list,
  body[data-page] .product-editorial__content > .body + .specs-list {
    margin-top: 24px !important;
  }

  body[data-page] .product-editorial__content > .btn-row,
  body[data-page] .center-content > .btn-row,
  body[data-page] .cta-editorial__content > .btn-row {
    margin-top: 24px !important;
  }

  body[data-page="mundo"] .product-editorial__media + .product-editorial__content {
    margin-top: 22px;
  }

  body[data-page="mundo"] .hero__content-box {
    width: min(88vw, 360px);
  }

  body[data-page="mundo"] .hero__content-box .h1 {
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1.02;
    max-width: 11.2em;
    margin-left: auto;
  }

  body[data-page="mundo"] .hero__content-box .mobile-hero-line {
    white-space: nowrap;
  }
}

@media (max-width: 1024px) {
  body[data-page="mundo"] .hero__overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.36) 100%),
      linear-gradient(135deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.24) 100%);
  }

  body[data-page="mundo"] .hero__media::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.28) 100%),
      linear-gradient(135deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.18) 100%);
  }
}

@media (max-width: 1024px) {
  body[data-page] .section-fullbleed .fullbleed-content {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 36px 24px !important;
  }

  body[data-page] .section-fullbleed .fullbleed-quote,
  body[data-page] .section-fullbleed .h2--light {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 16px !important;
    max-width: 12.5ch !important;
    text-align: center !important;
  }

  body[data-page] .section-fullbleed .fullbleed-kicker {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  body[data-page] .section-fullbleed .fullbleed-kicker,
  body[data-page] .section-fullbleed .fullbleed-kicker__brand,
  body[data-page] .section-fullbleed .fullbleed-kicker__detail {
    text-align: center !important;
  }

  body[data-page] .section-fullbleed .fullbleed-kicker__detail {
    white-space: nowrap;
  }
}

@media (max-width: 1024px) {
  body[data-page="cafes"] .product-gallery--single + .boutique-feature {
    margin-top: 72px !important;
  }
}

@media (max-width: 1024px) {
  body[data-page="receitas"] .recipe-entry__media {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 1 / 1.12;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden;
  }

  body[data-page="receitas"] .recipe-entry__media img {
    position: absolute;
    inset: 0;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body[data-page="receitas"] .recipe-entry__media--video {
    aspect-ratio: auto;
    height: auto !important;
  }
}

body[data-page] .hero--editorial .hero__overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.14) 48%, rgba(0, 0, 0, 0.24) 100%) !important;
}

body[data-page] .hero--editorial .hero__media::after {
  background: none !important;
}

@media (max-width: 1024px) {
  body[data-page]:not([data-page="mundo"]) .hero--editorial .hero__overlay {
    background: rgba(0, 0, 0, 0.1) !important;
  }
}

body[data-page="historia"] .hero--editorial .hero__overlay {
  background: rgba(0, 0, 0, 0.1) !important;
}

.footer__links .footer__instagram-link {
  flex-direction: row;
  justify-content: flex-start;
  gap: 10px;
}

.footer__social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

@media (max-width: 1024px) {
  body[data-page] .footer__links .footer__instagram-link {
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
  }
}
