﻿/*
  Redesign premium do Instituto de Ensino e Culto Ancestral.
  Camada reversivel: este arquivo deve carregar depois de site.css e nao remove
  classes, IDs, atributos ou regras de negocio existentes.
*/

:root {
  /* Cores */
  --redesign-black: #0b0b0d;
  --redesign-graphite: #15171d;
  --redesign-graphite-soft: #1d2028;
  --redesign-gold: #d7a84a;
  --redesign-amber: #f0b24f;
  --redesign-parchment: #f1eadc;
  --redesign-muted: #b9b0a2;
  --redesign-line: rgba(215, 168, 74, 0.24);
  --redesign-line-soft: rgba(241, 234, 220, 0.1);
  --redesign-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);

  /* Tipografia */
  --redesign-font-title: "Fraunces", Georgia, serif;
  --redesign-font-body: "Manrope", "Segoe UI", sans-serif;
  --redesign-title-weight: 500;
  --redesign-body-weight: 500;
  --redesign-line-height: 1.72;

  /* Espacamento e medidas */
  --redesign-section-y: clamp(72px, 9vw, 132px);
  --redesign-container: 1180px;
  --redesign-space-1: 8px;
  --redesign-space-2: 12px;
  --redesign-space-3: 18px;
  --redesign-space-4: 28px;
  --redesign-space-5: 44px;
  --redesign-radius-card: 8px;
  --redesign-radius-button: 999px;
  --redesign-transition: 180ms ease;

  /* Tokens existentes sobrescritos com a nova direcao visual. */
  --ink: var(--redesign-parchment);
  --muted: var(--redesign-muted);
  --forest: #24352e;
  --forest-deep: #18241f;
  --bronze: var(--redesign-gold);
  --gold: var(--redesign-amber);
  --cream: var(--redesign-black);
  --paper: var(--redesign-graphite);
  --surface: rgba(21, 23, 29, 0.92);
  --line: var(--redesign-line);
  --radius: var(--redesign-radius-card);
  --shadow-sm: var(--redesign-shadow);
  --shadow-md: 0 28px 86px rgba(0, 0, 0, 0.42);
  --transition: var(--redesign-transition);
}

/* Base global */
html {
  background: var(--redesign-black);
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 168, 74, 0.13), transparent 32rem),
    linear-gradient(180deg, #0b0b0d 0%, #111217 44%, #0b0b0d 100%);
  color: var(--redesign-parchment);
  font-family: var(--redesign-font-body);
  font-weight: var(--redesign-body-weight);
  line-height: var(--redesign-line-height);
}

body::before {
  background-image:
    linear-gradient(rgba(241, 234, 220, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 234, 220, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.26;
}

.container {
  max-width: var(--redesign-container);
}

/* Tipografia */
h1,
h2,
h3,
.page-hero-copy h1,
.hero-copy h1,
.section-heading h2,
.shop-summary-card h2,
.contact-form-wrap h2,
.article-body h2 {
  color: var(--redesign-parchment);
  font-family: var(--redesign-font-title);
  font-weight: var(--redesign-title-weight);
  letter-spacing: 0;
}

p,
li,
.page-intro,
.section-heading p,
.summary-note,
.product-meta-line,
.news-card p {
  color: var(--redesign-muted);
}

a {
  color: var(--redesign-gold);
}

/* Secoes */
.section,
.page-hero,
.hero-home {
  padding-block: var(--redesign-section-y);
}

.section-soft {
  background: linear-gradient(180deg, rgba(21, 23, 29, 0.84), rgba(11, 11, 13, 0.92));
  border-block: 1px solid var(--redesign-line-soft);
}

.eyebrow,
.news-category,
.section-chip,
.card-index {
  color: var(--redesign-gold);
  letter-spacing: 0.18em;
}

.eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--redesign-gold));
}

/* Header */
.site-header {
  background: rgba(11, 11, 13, 0.78);
  border-bottom: 1px solid var(--redesign-line-soft);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(11, 11, 13, 0.94);
}

.brand-copy strong,
.brand-copy small,
.nav-link,
.mobile-link {
  color: var(--redesign-parchment);
}

.nav-link.active,
.nav-link:hover,
.mobile-link.active,
.mobile-link:hover {
  color: var(--redesign-gold);
}

.dropdown-panel,
.mobile-nav {
  background: rgba(11, 11, 13, 0.98);
  border-color: var(--redesign-line);
  box-shadow: var(--redesign-shadow);
}

/* Botoes */
.button {
  border-radius: var(--redesign-radius-button);
  border: 1px solid var(--redesign-line);
  font-family: var(--redesign-font-body);
  letter-spacing: 0.05em;
  text-transform: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--redesign-gold), var(--redesign-amber));
  color: #111217;
  box-shadow: 0 14px 34px rgba(215, 168, 74, 0.16);
}

.button-primary:hover {
  background: linear-gradient(135deg, #e0b557, #f4bf69);
  color: #0b0b0d;
}

.button-outline,
.button-ghost {
  background: rgba(241, 234, 220, 0.035);
  border-color: var(--redesign-line);
  color: var(--redesign-parchment);
}

.button-outline:hover,
.button-ghost:hover {
  background: rgba(215, 168, 74, 0.1);
  border-color: rgba(215, 168, 74, 0.55);
  color: var(--redesign-amber);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--redesign-amber);
  outline-offset: 4px;
}

/* Cards e superficies */
.content-card,
.news-card,
.contact-form-wrap,
.shop-summary-card,
.order-item-row,
.shop-address-card,
.cart-item,
.product-card,
.stat-card,
.instagram-card,
.cookie-banner-shell,
.empty-state {
  background: rgba(21, 23, 29, 0.88);
  border: 1px solid var(--redesign-line-soft);
  border-radius: var(--redesign-radius-card);
  box-shadow: none;
}

.content-card:hover,
.news-card:hover,
.instagram-card:hover {
  border-color: rgba(215, 168, 74, 0.34);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

/* Formularios */
.contact-form input,
.contact-form select,
.contact-form textarea,
.shop-form input,
.shop-form textarea,
.shop-form select,
.shipping-form input,
.shop-purchase-form input {
  background: rgba(11, 11, 13, 0.54);
  border-color: var(--redesign-line-soft);
  color: var(--redesign-parchment);
  border-radius: var(--redesign-radius-card);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.shop-form input::placeholder,
.shop-form textarea::placeholder,
.shipping-form input::placeholder {
  color: rgba(185, 176, 162, 0.64);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.shop-form input:focus,
.shop-form textarea:focus,
.shop-form select:focus,
.shipping-form input:focus,
.shop-purchase-form input:focus {
  border-color: rgba(215, 168, 74, 0.62);
  box-shadow: 0 0 0 4px rgba(215, 168, 74, 0.08);
}

/* Loja */
.summary-row {
  border-color: var(--redesign-line-soft);
}

.shipping-option {
  background: rgba(11, 11, 13, 0.5);
  border-color: var(--redesign-line-soft);
  border-radius: var(--redesign-radius-card);
}

.shipping-option.active,
.shipping-option:hover {
  border-color: rgba(215, 168, 74, 0.5);
  background: rgba(215, 168, 74, 0.08);
}

.shipping-option-copy strong {
  color: var(--redesign-parchment);
}

.shipping-option-copy small {
  color: rgba(235, 228, 212, 0.72);
}

.shipping-option-price {
  color: #f7e5b8;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(205, 169, 106, 0.12);
}

.shipping-option.active .shipping-option-price,
.shipping-option:hover .shipping-option-price {
  color: var(--redesign-amber);
}

.shipping-form .summary-row strong,
.shop-summary-card .summary-row strong {
  color: #f7e5b8;
}

.stock-pill,
.hero-pills span {
  background: rgba(215, 168, 74, 0.1);
  border: 1px solid var(--redesign-line);
  color: var(--redesign-parchment);
}

/* Rodape */
.site-footer {
  background: #08080a;
  border-top: 1px solid var(--redesign-line-soft);
}

.site-footer h3,
.site-footer h4 {
  color: var(--redesign-parchment);
}

.site-footer a,
.footer-cookie-button {
  color: var(--redesign-muted);
}

.site-footer a:hover,
.footer-cookie-button:hover {
  color: var(--redesign-gold);
}

/* Intro */
.intro-body {
  background: #000;
}

.intro-skip {
  border-color: rgba(215, 168, 74, 0.55);
  color: var(--redesign-gold);
}

@media (max-width: 760px) {
  :root {
    --redesign-section-y: 64px;
  }

  .section,
  .page-hero,
  .hero-home {
    padding-block: var(--redesign-section-y);
  }

  .button {
    justify-content: center;
  }
}

/*
  Home institucional premium.
  Escopo limitado a .home-redesign para preservar loja, checkout, login e paginas internas.
*/
.home-redesign .section-heading {
  max-width: 850px;
  margin-bottom: var(--redesign-space-5);
}

.home-redesign .section-heading h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.98;
}

.home-redesign .section-heading p {
  max-width: 720px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.home-hero-premium {
  min-height: min(860px, calc(100svh - 40px));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--redesign-line-soft);
}

.home-hero-premium::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(11, 11, 13, 0.98));
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 680px;
  padding-block: var(--redesign-space-5);
}

.home-hero-symbol {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(54vw, 580px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: 0.34;
  filter: drop-shadow(0 0 44px rgba(215, 168, 74, 0.22));
}

.home-hero-symbol img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-hero-symbol img:last-child {
  transform: scale(0.78);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.home-hero-copy h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 8.4rem);
  line-height: 0.9;
  text-wrap: balance;
}

.home-hero-copy p {
  max-width: 760px;
  margin: var(--redesign-space-4) auto 0;
  color: rgba(241, 234, 220, 0.76);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.home-hero-copy .hero-actions {
  justify-content: center;
  margin-top: var(--redesign-space-4);
}

.home-hero-footer {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 26px;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 44px);
  color: rgba(241, 234, 220, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-manifest-grid,
.home-journey-grid,
.home-instagram-layout {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.home-manifest-copy {
  max-width: 920px;
}

.home-manifest-copy h2 {
  margin-top: 0;
  font-size: clamp(2.3rem, 5.8vw, 5.6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.home-manifest-copy p {
  max-width: 780px;
  font-size: clamp(1.04rem, 1.34vw, 1.18rem);
}

.home-education-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--redesign-line-soft);
  background: var(--redesign-line-soft);
}

.home-education-card {
  min-height: 330px;
  align-content: end;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(21, 23, 29, 0.34), rgba(21, 23, 29, 0.96)),
    rgba(21, 23, 29, 0.88);
}

.home-education-card span {
  color: var(--redesign-gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.home-education-card h3 {
  font-size: clamp(1.6rem, 2.3vw, 2.5rem);
  line-height: 1.02;
}

.home-journey-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--redesign-line-soft);
  background: var(--redesign-line-soft);
}

.home-journey-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: var(--redesign-space-4);
  padding: clamp(22px, 4vw, 42px);
  background: rgba(21, 23, 29, 0.86);
}

.home-journey-list strong {
  color: var(--redesign-parchment);
  font-family: var(--redesign-font-title);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
}

.home-journey-list p {
  margin: 0;
}

.home-news-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: var(--redesign-space-3);
}

.home-news-card {
  min-height: 100%;
  padding: clamp(20px, 3vw, 32px);
}

.home-news-card:first-child {
  grid-row: span 2;
}

.home-news-card h3 {
  font-size: clamp(1.7rem, 3.2vw, 3.6rem);
  line-height: 0.98;
}

.home-news-card:not(:first-child) h3 {
  font-size: clamp(1.35rem, 2vw, 2.1rem);
}

.home-news-cover {
  border-radius: var(--redesign-radius-card);
  border: 1px solid var(--redesign-line-soft);
}

.home-instagram-layout {
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
}

.home-instagram-layout .section-heading {
  position: sticky;
  top: 112px;
}

.home-instagram-layout .section-actions {
  margin-top: var(--redesign-space-4);
}

.home-instagram-feed .instagram-grid {
  grid-template-columns: 1fr;
}

.home-instagram-feed .instagram-card {
  grid-template-columns: 104px minmax(0, 1fr);
}

.home-contact-band {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(38px, 7vw, 86px);
  text-align: center;
  border-top: 1px solid var(--redesign-line);
  border-bottom: 1px solid var(--redesign-line);
}

.home-contact-band h2 {
  margin: 0 auto;
  max-width: 820px;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.home-contact-band p {
  max-width: 680px;
  margin: var(--redesign-space-3) auto 0;
}

.home-contact-band .section-actions {
  justify-content: center;
  margin-top: var(--redesign-space-4);
}

@media (max-width: 980px) {
  .home-hero-inner {
    min-height: 620px;
  }

  .home-manifest-grid,
  .home-journey-grid,
  .home-instagram-layout {
    grid-template-columns: 1fr;
  }

  .home-education-grid,
  .home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-news-card:first-child {
    grid-row: auto;
  }

  .home-instagram-layout .section-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .home-hero-premium {
    min-height: auto;
  }

  .home-hero-inner {
    min-height: 620px;
    justify-items: start;
    text-align: left;
  }

  .home-hero-symbol {
    width: 120vw;
    opacity: 0.22;
  }

  .home-hero-copy {
    text-align: left;
  }

  .home-hero-copy h1 {
    font-size: clamp(3rem, 17vw, 4.9rem);
  }

  .home-hero-copy p {
    margin-inline: 0;
  }

  .home-hero-copy .hero-actions {
    justify-content: flex-start;
  }

  .home-hero-footer {
    position: relative;
    bottom: auto;
    flex-direction: column;
    align-items: flex-start;
    margin-top: var(--redesign-space-5);
    gap: var(--redesign-space-1);
  }

  .home-education-grid,
  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-education-card {
    min-height: 250px;
  }

  .home-journey-list article {
    grid-template-columns: 1fr;
  }

  .home-instagram-feed .instagram-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .home-contact-band {
    text-align: left;
    padding-inline: 0;
  }

  .home-contact-band .section-actions {
    justify-content: flex-start;
  }
}

/*
  Paginas institucionais de baixo risco.
  Escopo dedicado para padronizar sobre, manifesto, noticias/artigos, contato e
  paginas de apresentacao sem alterar logica, formulários, rotas ou integracoes.
*/
.institutional-page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 78% 8%, rgba(215, 168, 74, 0.16), transparent 28rem),
    radial-gradient(circle at 8% 34%, rgba(240, 178, 79, 0.08), transparent 26rem),
    linear-gradient(180deg, #0b0b0d 0%, #13151b 46%, #0b0b0d 100%);
}

.institutional-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(241, 234, 220, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 234, 220, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

.institutional-page .page-hero {
  min-height: clamp(430px, 58vh, 680px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--redesign-line-soft);
  background:
    radial-gradient(circle at 82% 48%, rgba(215, 168, 74, 0.2), transparent 17rem),
    linear-gradient(90deg, rgba(11, 11, 13, 0.96), rgba(21, 23, 29, 0.76));
}

.institutional-page .page-hero::after {
  content: "";
  position: absolute;
  right: max(4vw, 42px);
  bottom: clamp(38px, 7vw, 96px);
  width: clamp(160px, 24vw, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 168, 74, 0.2);
  border-radius: 50%;
  opacity: 0.62;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 36px rgba(215, 168, 74, 0.02),
    inset 0 0 0 72px rgba(215, 168, 74, 0.018);
}

.institutional-page .page-hero-grid {
  position: relative;
  z-index: 1;
  align-items: end;
  gap: clamp(32px, 7vw, 92px);
}

.institutional-page .page-hero-grid.single-column {
  max-width: var(--redesign-container);
}

.institutional-page .page-hero-copy {
  max-width: 900px;
}

.institutional-page .page-hero-copy h1 {
  max-width: 970px;
  margin-top: var(--redesign-space-3);
  font-size: clamp(3.25rem, 8vw, 8.9rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.institutional-page .page-intro {
  max-width: 760px;
  margin-top: var(--redesign-space-4);
  color: rgba(241, 234, 220, 0.72);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.78;
}

.institutional-page .page-facts {
  display: grid;
  gap: 1px;
  border: 1px solid var(--redesign-line-soft);
  background: var(--redesign-line-soft);
}

.institutional-page .fact-card {
  border: 0;
  border-radius: 0;
  background: rgba(21, 23, 29, 0.82);
}

.institutional-page .fact-card span,
.institutional-page .card-index,
.institutional-page .section-chip,
.institutional-page .news-category {
  color: var(--redesign-gold);
}

.institutional-page .fact-card strong {
  color: var(--redesign-parchment);
}

.institutional-page .section {
  border-top: 1px solid rgba(241, 234, 220, 0.06);
}

.institutional-page .section-soft {
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 168, 74, 0.08), transparent 24rem),
    rgba(21, 23, 29, 0.72);
}

.institutional-page .card-grid {
  gap: 1px;
  border: 1px solid var(--redesign-line-soft);
  background: var(--redesign-line-soft);
}

.institutional-page .content-card,
.institutional-page .faq-item,
.institutional-page .contact-form-wrap,
.institutional-page .article-body,
.institutional-page .article-author-card,
.institutional-page .empty-state,
.institutional-page .news-list-card {
  border: 1px solid var(--redesign-line-soft);
  background: linear-gradient(180deg, rgba(29, 32, 40, 0.92), rgba(16, 18, 23, 0.96));
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.24);
}

.institutional-page .content-card {
  border: 0;
  border-radius: 0;
  min-height: 280px;
}

.institutional-page .content-card h3,
.institutional-page .narrative-aside h2,
.institutional-page .section-heading h2,
.institutional-page .contact-form-wrap h2,
.institutional-page .article-body h2,
.institutional-page .article-author-card h3,
.institutional-page .news-list-copy h2 {
  color: var(--redesign-parchment);
}

.institutional-page .narrative-grid {
  align-items: start;
  gap: clamp(32px, 8vw, 110px);
}

.institutional-page .narrative-aside {
  position: sticky;
  top: 120px;
}

.institutional-page .narrative-aside h2,
.institutional-page .section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.4rem, 5.6vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.institutional-page .narrative-body {
  max-width: 760px;
  padding-top: clamp(6px, 1vw, 18px);
}

.institutional-page .narrative-body p,
.institutional-page .article-body p,
.institutional-page .article-body li,
.institutional-page .rich-list li {
  color: rgba(241, 234, 220, 0.74);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.institutional-page .rich-list li::before {
  background: var(--redesign-gold);
}

.institutional-page .section-actions {
  display: flex;
  justify-content: center;
  margin-bottom: var(--redesign-space-5);
}

.institutional-page .faq-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--redesign-line-soft);
  background: var(--redesign-line-soft);
}

.institutional-page .faq-item {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.institutional-page .faq-item summary {
  color: var(--redesign-parchment);
}

.institutional-page .cta-block {
  overflow: hidden;
  border-color: var(--redesign-line);
  background:
    radial-gradient(circle at 82% 20%, rgba(215, 168, 74, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(29, 32, 40, 0.96), rgba(11, 11, 13, 0.98));
}

.institutional-news-page .news-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--redesign-space-2);
  max-width: 820px;
  margin-top: var(--redesign-space-4);
}

.institutional-news-page .filter-bar {
  gap: var(--redesign-space-2);
  margin-bottom: var(--redesign-space-4);
}

.institutional-news-page .filter-chip {
  border-color: var(--redesign-line-soft);
  background: rgba(21, 23, 29, 0.74);
  color: var(--redesign-parchment);
}

.institutional-news-page .filter-chip.active,
.institutional-news-page .filter-chip:hover {
  border-color: var(--redesign-gold);
  background: rgba(215, 168, 74, 0.14);
  color: var(--redesign-gold);
}

.institutional-news-page .news-list {
  display: grid;
  gap: var(--redesign-space-3);
}

.institutional-news-page .news-list-card {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 46px);
  padding: clamp(18px, 3vw, 32px);
  border-radius: var(--redesign-radius-card);
}

.institutional-news-page .news-list-cover {
  aspect-ratio: 1.25;
  overflow: hidden;
  border: 1px solid var(--redesign-line-soft);
  border-radius: calc(var(--redesign-radius-card) - 1px);
  background: rgba(241, 234, 220, 0.05);
}

.institutional-news-page .news-list-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.institutional-news-page .news-list-copy h2 {
  margin: var(--redesign-space-2) 0;
  font-size: clamp(1.7rem, 3.7vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.institutional-news-page .news-list-actions {
  justify-self: end;
}

.institutional-article-page .article-shell {
  padding-block: clamp(60px, 9vw, 128px);
}

.institutional-article-page .article-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.institutional-article-page .article-header {
  grid-column: 1 / -1;
  max-width: 980px;
}

.institutional-article-page .article-header h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.institutional-article-page .article-cover {
  overflow: hidden;
  border: 1px solid var(--redesign-line-soft);
  border-radius: var(--redesign-radius-card);
}

.institutional-article-page .article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.institutional-article-page .article-body {
  padding: clamp(28px, 5vw, 58px);
}

.institutional-article-page .article-body p:first-child {
  color: var(--redesign-parchment);
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
}

.institutional-contact-page .contact-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.4fr);
  gap: clamp(28px, 5vw, 64px);
}

.institutional-contact-page .contact-form-wrap {
  padding: clamp(26px, 5vw, 56px);
}

.institutional-contact-page .contact-form {
  gap: var(--redesign-space-3);
}

.institutional-contact-page textarea {
  min-height: 170px;
}

.institutional-presentation-page .page-hero {
  min-height: clamp(360px, 50vh, 560px);
}

.institutional-presentation-page .page-hero-copy h1 {
  max-width: 860px;
}

@media (max-width: 980px) {
  .institutional-page .page-hero-grid,
  .institutional-page .narrative-grid,
  .institutional-article-page .article-grid,
  .institutional-contact-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .institutional-page .narrative-aside {
    position: static;
  }

  .institutional-news-page .news-list-card {
    grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  }

  .institutional-news-page .news-list-actions {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .institutional-page .page-hero {
    min-height: auto;
    padding-block: clamp(54px, 18vw, 86px);
  }

  .institutional-page .page-hero::after {
    right: -80px;
    bottom: 30px;
    opacity: 0.28;
  }

  .institutional-page .page-hero-copy h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
    line-height: 0.96;
  }

  .institutional-page .page-intro {
    font-size: 1rem;
  }

  .institutional-page .card-grid {
    border: 0;
    background: transparent;
  }

  .institutional-page .content-card {
    min-height: auto;
    border: 1px solid var(--redesign-line-soft);
    border-radius: var(--redesign-radius-card);
  }

  .institutional-news-page .news-search-form {
    grid-template-columns: 1fr;
  }

  .institutional-news-page .news-list-card {
    grid-template-columns: 1fr;
  }

  .institutional-news-page .news-list-cover {
    max-height: 240px;
  }

  .institutional-news-page .news-list-actions {
    grid-column: auto;
  }

  .institutional-article-page .article-header h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }
}

/*
  Refinamento de direcao de arte.
  Aproxima o site do briefing visual: preto mais profundo, dourado envelhecido,
  mais silencio visual, header editorial e cookie banner menos invasivo.
*/
:root {
  --redesign-black: #070707;
  --redesign-graphite: #101116;
  --redesign-graphite-soft: #15171d;
  --redesign-gold: #cda96a;
  --redesign-amber: #e2c68c;
  --redesign-parchment: #ebe4d4;
  --redesign-muted: #b9af99;
  --redesign-line: rgba(205, 169, 106, 0.22);
  --redesign-line-soft: rgba(235, 228, 212, 0.085);
  --redesign-radius-card: 22px;
  --redesign-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --redesign-container: 1220px;
  --cream: var(--redesign-black);
  --paper: var(--redesign-graphite);
  --surface: rgba(255, 255, 255, 0.035);
}

body {
  background:
    radial-gradient(circle at 50% 10%, rgba(205, 169, 106, 0.15), transparent 20rem),
    radial-gradient(circle at 50% 0%, rgba(226, 198, 140, 0.055), transparent 13rem),
    linear-gradient(180deg, #060606 0%, #090909 42%, #070707 100%);
  letter-spacing: 0.005em;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.16;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 82%);
}

h1,
h2,
h3,
.page-hero-copy h1,
.hero-copy h1,
.section-heading h2 {
  color: var(--redesign-parchment);
  letter-spacing: -0.028em;
}

.site-header {
  background: rgba(7, 7, 7, 0.72);
  border-bottom-color: rgba(205, 169, 106, 0.12);
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.9);
}

.header-shell {
  min-height: 78px;
}

.brand {
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 58px;
  filter: drop-shadow(0 0 20px rgba(205, 169, 106, 0.16));
}

.brand-copy strong {
  font-size: 1.22rem;
  letter-spacing: 0.025em;
}

.brand-copy small {
  color: rgba(226, 198, 140, 0.82);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
}

.main-nav {
  gap: 6px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(235, 228, 212, 0.74);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: none;
}

.nav-link.active,
.nav-link:hover {
  background: rgba(205, 169, 106, 0.07);
  color: var(--redesign-amber);
}

.nav-arrow {
  font-size: 0;
}

.nav-arrow::before {
  content: "▾";
  font-size: 0.72rem;
}

.header-actions .button-outline {
  min-height: 50px;
  padding-inline: 24px;
}

.header-actions {
  flex-shrink: 0;
}

.header-actions .button {
  min-height: 42px;
  padding-inline: 16px;
  white-space: nowrap;
}

.button {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, var(--redesign-amber), var(--redesign-gold));
  box-shadow: 0 10px 30px rgba(205, 169, 106, 0.16);
}

.button-outline,
.button-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(205, 169, 106, 0.22);
}

.content-card,
.news-card,
.contact-form-wrap,
.shop-summary-card,
.order-item-row,
.shop-address-card,
.cart-item,
.product-card,
.stat-card,
.instagram-card,
.cookie-banner-shell,
.empty-state,
.faq-item,
.article-body,
.article-author-card {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(205, 169, 106, 0.14);
  border-radius: var(--redesign-radius-card);
  box-shadow: none;
}

.content-card:hover,
.news-card:hover,
.instagram-card:hover,
.product-card:hover {
  border-color: rgba(205, 169, 106, 0.34);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.home-hero-premium {
  min-height: min(900px, calc(100svh - 24px));
  background:
    radial-gradient(circle at 74% 50%, rgba(205, 169, 106, 0.15), transparent 19rem),
    linear-gradient(90deg, rgba(7, 7, 7, 1), rgba(19, 19, 16, 0.84) 52%, rgba(7, 7, 7, 0.96));
}

.home-hero-inner {
  place-items: center start;
  min-height: 780px;
}

.home-hero-symbol {
  inset: 52% -1% auto auto;
  width: min(46vw, 640px);
  transform: translateY(-50%);
  opacity: 0.34;
}

.home-hero-symbol::before {
  content: "";
  position: absolute;
  inset: -18%;
  border: 1px solid rgba(205, 169, 106, 0.12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 58px rgba(205, 169, 106, 0.018),
    inset 0 0 0 114px rgba(205, 169, 106, 0.012),
    0 0 92px rgba(205, 169, 106, 0.09);
}

.home-hero-copy {
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
  opacity: 1;
  transform: none;
}

.home-hero-copy .eyebrow {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(205, 169, 106, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--redesign-amber);
}

.home-hero-copy .eyebrow::before {
  display: none;
}

.home-hero-copy h1 {
  margin-top: 24px;
  max-width: 720px;
  color: #f5ecdc;
  font-size: clamp(4.2rem, 7.2vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.052em;
  text-shadow:
    0 18px 70px rgba(0, 0, 0, 0.72),
    0 0 42px rgba(0, 0, 0, 0.42);
}

.home-hero-copy h1::first-line {
  color: #f1dfb6;
}

.home-hero-copy p {
  max-width: 640px;
  margin-inline: 0;
  color: rgba(235, 228, 212, 0.82);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
}

.home-hero-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.home-hero-footer {
  left: max(16px, calc((100% - var(--redesign-container)) / 2));
  right: auto;
  bottom: 74px;
  justify-content: flex-start;
  max-width: 620px;
}

.home-hero-footer span {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(205, 169, 106, 0.14);
}

.home-redesign .section-heading {
  max-width: 780px;
}

.home-redesign .section-heading h2,
.institutional-page .section-heading h2,
.institutional-page .narrative-aside h2 {
  font-size: clamp(2.8rem, 5.5vw, 6.4rem);
  line-height: 0.92;
}

.home-manifest-copy h2,
.home-contact-band h2 {
  letter-spacing: -0.045em;
}

.home-education-card {
  min-height: 360px;
  border-radius: var(--redesign-radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.035)),
    rgba(12, 12, 12, 0.86);
}

.home-education-grid,
.home-journey-list,
.institutional-page .card-grid,
.institutional-page .faq-list {
  gap: 16px;
  border: 0;
  background: transparent;
}

.home-journey-list article {
  border: 1px solid rgba(205, 169, 106, 0.14);
  border-radius: var(--redesign-radius-card);
  background: rgba(255, 255, 255, 0.035);
}

.cookie-banner {
  left: 50%;
  right: auto;
  bottom: 18px;
  width: min(calc(100% - 32px), 980px);
  transform: translateX(-50%);
}

.cookie-banner-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 18px 20px;
  border-color: rgba(205, 169, 106, 0.18);
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(22px);
}

.cookie-copy {
  gap: 6px;
}

.cookie-copy strong {
  color: var(--redesign-amber);
}

.cookie-copy p {
  margin: 0;
  max-width: 640px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-links a {
  color: rgba(235, 228, 212, 0.62);
  font-size: 0.84rem;
}

.cookie-actions {
  flex-wrap: nowrap;
}

.cookie-actions .button {
  min-height: 46px;
  padding-inline: 18px;
  white-space: nowrap;
}

.cookie-actions .button-primary {
  min-width: 160px;
}

@media (max-width: 980px) {
  .home-hero-symbol {
    inset: 50% -18% auto auto;
    width: min(74vw, 540px);
    opacity: 0.2;
  }

  .home-hero-inner {
    min-height: 720px;
  }

  .cookie-banner-shell {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .header-shell {
    min-height: 74px;
  }

  .brand-mark {
    width: 36px;
    height: 52px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
    letter-spacing: 0.26em;
  }

  .home-hero-inner {
    min-height: 680px;
  }

  .home-hero-symbol {
    inset: 47% -48% auto auto;
    width: 130vw;
    opacity: 0.18;
  }

  .home-hero-copy h1 {
    font-size: clamp(3.1rem, 15vw, 5.3rem);
  }

  .home-hero-footer {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: var(--redesign-space-5);
  }

  .cookie-banner {
    bottom: 10px;
    width: min(calc(100% - 20px), 980px);
  }

  .cookie-banner-shell {
    padding: 16px;
    border-radius: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/*
  Refinamento visual de producao.
  Escala tipografica mais contida e contraste reforcado para precos.
  Mantem a logica e os fluxos intactos: somente aparencia.
*/
body {
  font-size: 16px;
  line-height: 1.68;
}

p,
li,
.page-intro,
.section-heading p,
.product-card-copy p,
.article-body p,
.narrative-body p {
  color: rgba(235, 228, 212, 0.78);
  line-height: 1.68;
}

h1,
.home-hero-copy h1,
.page-hero-copy h1,
.institutional-page .page-hero-copy h1,
.institutional-article-page .article-header h1 {
  font-size: clamp(2.25rem, 4vw, 2.625rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
}

h2,
.section-heading h2,
.home-redesign .section-heading h2,
.institutional-page .section-heading h2,
.institutional-page .narrative-aside h2,
.home-manifest-copy h2,
.home-contact-band h2,
.contact-form-wrap h2,
.article-body h2,
.shop-feature-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

h3,
.content-card h3,
.product-card-copy h3,
.home-news-card h3,
.home-news-card:not(:first-child) h3,
.home-education-card h3 {
  font-size: clamp(1.375rem, 2.1vw, 1.5rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
}

.page-intro,
.home-hero-copy p,
.section-heading p {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
}

.home-hero-inner {
  min-height: 680px;
}

.home-hero-symbol {
  opacity: 0.24;
}

.home-hero-copy {
  max-width: 680px;
}

.home-hero-copy h1 {
  max-width: 640px;
}

.price-stack strong,
.shop-feature-copy .product-meta-line span:last-child,
.cart-line-total strong,
.summary-row strong,
.shop-summary-card strong,
.order-item-row strong,
.product-purchase-card .price-stack strong {
  color: #f1dfb6;
  text-shadow: 0 0 22px rgba(205, 169, 106, 0.12);
}

.price-stack strong {
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  letter-spacing: 0.01em;
}

.price-stack span {
  color: rgba(235, 228, 212, 0.52);
}

.product-card-copy h3 a,
.product-card-copy h3,
.shop-feature-copy h2 {
  color: var(--redesign-amber);
}

.product-meta-line,
.summary-row,
.stock-pill {
  color: rgba(235, 228, 212, 0.82);
}

.product-card,
.shop-feature-card,
.product-purchase-card,
.article-body,
.contact-form-wrap,
.content-card,
.news-card {
  border-color: rgba(205, 169, 106, 0.18);
}

/* Correcoes de contraste da pagina de produto. */
.product-detail-grid .page-hero-copy h1,
.product-detail-grid .page-hero-copy p {
  color: var(--redesign-parchment);
}

.product-specs div {
  background: rgba(16, 18, 17, 0.88);
  border: 1px solid rgba(205, 169, 106, 0.2);
  box-shadow: none;
}

.product-specs strong {
  color: var(--redesign-amber);
}

.product-specs span {
  color: rgba(235, 228, 212, 0.86);
}

.product-purchase-card {
  background: linear-gradient(180deg, rgba(16, 18, 17, 0.96), rgba(8, 8, 8, 0.98));
  border: 1px solid rgba(205, 169, 106, 0.28);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.34);
}

.product-purchase-card .price-stack strong {
  color: #f7e5b8;
  font-size: clamp(1.65rem, 2.6vw, 2rem);
}

.product-purchase-card .stock-pill {
  background: rgba(205, 169, 106, 0.14);
  border-color: rgba(205, 169, 106, 0.34);
  color: #f4dfad;
}

.shop-purchase-form label {
  color: rgba(235, 228, 212, 0.88);
}

.shop-purchase-form input {
  background: rgba(235, 228, 212, 0.08);
  border-color: rgba(205, 169, 106, 0.24);
  color: #fff7e8;
}

.shop-purchase-form input:focus {
  background: rgba(235, 228, 212, 0.12);
}

.product-purchase-card .button-outline {
  color: var(--redesign-parchment);
  border-color: rgba(205, 169, 106, 0.34);
}

.product-purchase-card .button-outline:hover {
  color: var(--redesign-amber);
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  h1,
  .home-hero-copy h1,
  .page-hero-copy h1,
  .institutional-page .page-hero-copy h1,
  .institutional-article-page .article-header h1 {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  h2,
  .section-heading h2,
  .home-redesign .section-heading h2,
  .institutional-page .section-heading h2,
  .institutional-page .narrative-aside h2,
  .home-manifest-copy h2,
  .home-contact-band h2 {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  h3,
  .content-card h3,
  .product-card-copy h3,
  .home-news-card h3,
  .home-education-card h3 {
    font-size: clamp(1.3rem, 6vw, 1.5rem);
  }
}

/*
  Redesign institucional controlado da home.
  Esta camada reduz o aspecto de landing page e prioriza leitura, hierarquia e maturidade.
*/
.home-institutional {
  --home-section-y: clamp(48px, 6vw, 82px);
  --home-text: rgba(235, 228, 212, 0.78);
  --home-text-soft: rgba(235, 228, 212, 0.66);
}

.home-institutional .section,
.home-institutional .hero-home {
  padding-block: var(--home-section-y);
}

.home-institutional h1,
.home-institutional .home-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.25rem, 3.7vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.home-institutional h2,
.home-institutional .section-heading h2,
.home-institutional .home-contact-band h2 {
  max-width: 680px;
  font-size: clamp(1.625rem, 2.7vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.home-institutional h3,
.home-institutional .content-card h3,
.home-institutional .home-news-card h3,
.home-institutional .home-news-card:not(:first-child) h3,
.home-institutional .home-entry-card h3,
.home-institutional .home-highlight-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.home-institutional p,
.home-institutional li,
.home-institutional .section-heading p,
.home-institutional .home-hero-copy p {
  max-width: 680px;
  color: var(--home-text);
  font-size: clamp(0.98rem, 1.2vw, 1.0625rem);
  line-height: 1.72;
}

.home-institutional .eyebrow,
.home-institutional .news-category,
.home-institutional .home-highlight-card span,
.home-institutional .home-entry-card span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.home-institutional .section-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.home-institutional .section-heading p {
  margin-top: 12px;
}

.home-hero-fixed {
  min-height: auto;
  border-bottom: 1px solid rgba(205, 169, 106, 0.14);
}

.home-hero-fixed::after {
  height: 18%;
}

.home-hero-fixed .home-hero-inner {
  min-height: 430px;
  place-items: start;
  justify-items: start;
  padding-block: clamp(54px, 7vw, 96px);
}

.home-hero-fixed .home-hero-copy {
  max-width: 760px;
  margin: 0;
  text-align: left;
}

.home-hero-fixed .home-hero-copy p {
  margin: 18px 0 0;
}

.home-hero-fixed .hero-actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.home-hero-fixed .home-hero-symbol {
  left: auto;
  right: clamp(-160px, -9vw, -60px);
  top: 50%;
  width: min(42vw, 420px);
  transform: translateY(-50%);
  opacity: 0.16;
}

.home-highlights-section {
  padding-top: clamp(34px, 5vw, 60px);
}

.home-highlight-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.home-highlight-card {
  min-height: 230px;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  background: rgba(21, 23, 29, 0.72);
  border: 1px solid rgba(205, 169, 106, 0.18);
  border-radius: 8px;
  color: var(--redesign-parchment);
  text-decoration: none;
  scroll-snap-align: start;
}

.home-highlight-card:hover {
  border-color: rgba(205, 169, 106, 0.36);
  background: rgba(24, 27, 34, 0.86);
}

.home-highlight-card p {
  margin: 0;
  color: var(--home-text-soft);
}

.home-reading-block {
  max-width: 760px;
}

.home-reading-block h2 {
  margin-top: 10px;
}

.home-reading-block p {
  margin-top: 18px;
}

.home-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-entry-card {
  min-height: 230px;
  padding: clamp(20px, 2.8vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}

.home-entry-card p {
  margin-bottom: 0;
}

.home-split-block {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.home-split-block .section-heading {
  margin-bottom: 0;
}

.home-text-list {
  display: grid;
  gap: 1px;
  background: rgba(205, 169, 106, 0.14);
  border: 1px solid rgba(205, 169, 106, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.home-text-list article,
.home-text-list .section-actions {
  padding: clamp(20px, 3vw, 30px);
  background: rgba(21, 23, 29, 0.82);
}

.home-text-list h3 {
  margin: 0 0 8px;
}

.home-text-list p {
  margin: 0;
}

.home-news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-news-card,
.home-news-card:first-child {
  grid-row: auto;
  min-height: auto;
  padding: clamp(20px, 3vw, 28px);
}

.home-news-card h3,
.home-news-card:not(:first-child) h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.22;
}

.home-news-cover {
  margin-bottom: 18px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.home-instagram-layout {
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
}

.home-instagram-layout .section-heading {
  position: static;
}

.home-instagram-feed .instagram-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-instagram-feed .instagram-card {
  grid-template-columns: 88px minmax(0, 1fr);
}

.home-contact-band {
  max-width: 780px;
  padding: clamp(30px, 5vw, 56px) 0;
}

.home-contact-band p {
  margin-top: 14px;
}

.home-contact-band .section-actions {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .home-entry-grid,
  .home-news-grid,
  .home-instagram-feed .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-split-block,
  .home-instagram-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-institutional .section,
  .home-institutional .hero-home {
    padding-block: 42px;
  }

  .home-hero-fixed .home-hero-inner {
    min-height: auto;
    padding-block: 46px;
  }

  .home-hero-fixed .home-hero-symbol {
    right: -54vw;
    width: 116vw;
    opacity: 0.12;
  }

  .home-institutional h1,
  .home-institutional .home-hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .home-institutional h2,
  .home-institutional .section-heading h2,
  .home-institutional .home-contact-band h2 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .home-entry-grid,
  .home-news-grid,
  .home-instagram-feed .instagram-grid {
    grid-template-columns: 1fr;
  }

  .home-highlight-carousel {
    grid-auto-columns: minmax(260px, 86vw);
  }

  .home-entry-card,
  .home-highlight-card {
    min-height: 190px;
  }

  .home-instagram-feed .instagram-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }
}

/*
  Refinamento fino da home: menos contraste de campanha, mais ritmo editorial.
*/
.home-institutional {
  --home-section-y: clamp(44px, 5.4vw, 74px);
  --home-text: rgba(238, 231, 216, 0.8);
  --home-text-soft: rgba(238, 231, 216, 0.68);
  --home-surface: rgba(20, 22, 27, 0.66);
  --home-surface-soft: rgba(20, 22, 27, 0.5);
  --home-line: rgba(205, 169, 106, 0.13);
  --home-line-strong: rgba(205, 169, 106, 0.22);
}

.home-institutional .section-soft {
  background: linear-gradient(180deg, rgba(15, 16, 20, 0.48), rgba(15, 16, 20, 0.34));
  border-block-color: rgba(205, 169, 106, 0.08);
}

.home-institutional h1,
.home-institutional .home-hero-copy h1 {
  max-width: 660px;
  font-size: clamp(2.05rem, 3.15vw, 2.375rem);
  line-height: 1.16;
  font-weight: 450;
}

.home-institutional h2,
.home-institutional .section-heading h2,
.home-institutional .home-contact-band h2 {
  max-width: 640px;
  font-size: clamp(1.55rem, 2.35vw, 1.875rem);
  line-height: 1.22;
  font-weight: 450;
}

.home-institutional h3,
.home-institutional .content-card h3,
.home-institutional .home-news-card h3,
.home-institutional .home-news-card:not(:first-child) h3,
.home-institutional .home-entry-card h3,
.home-institutional .home-highlight-card h3 {
  font-size: clamp(1.125rem, 1.65vw, 1.375rem);
  line-height: 1.26;
  font-weight: 500;
}

.home-institutional p,
.home-institutional li,
.home-institutional .section-heading p,
.home-institutional .home-hero-copy p {
  max-width: 640px;
  font-size: clamp(0.96rem, 1.05vw, 1.025rem);
  line-height: 1.74;
}

.home-institutional .eyebrow,
.home-institutional .news-category,
.home-institutional .home-highlight-card span,
.home-institutional .home-entry-card span {
  color: rgba(218, 181, 111, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.home-institutional .button {
  min-height: 42px;
  padding: 0.68rem 1.05rem;
  border-radius: 8px;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.home-institutional .button-primary {
  background: rgba(218, 181, 111, 0.9);
  border-color: rgba(218, 181, 111, 0.32);
  color: #101216;
}

.home-institutional .button-primary:hover {
  background: rgba(229, 194, 128, 0.96);
  border-color: rgba(229, 194, 128, 0.42);
  transform: translateY(-1px);
}

.home-institutional .button-outline,
.home-institutional .button-ghost {
  background: rgba(238, 231, 216, 0.035);
  border-color: rgba(238, 231, 216, 0.16);
  color: rgba(238, 231, 216, 0.9);
}

.home-institutional .button-outline:hover,
.home-institutional .button-ghost:hover {
  background: rgba(238, 231, 216, 0.065);
  border-color: rgba(218, 181, 111, 0.3);
  color: rgba(245, 234, 211, 0.98);
  transform: translateY(-1px);
}

.home-hero-fixed {
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.72), rgba(15, 16, 20, 0.42)),
    radial-gradient(circle at 86% 44%, rgba(205, 169, 106, 0.09), transparent 24rem);
}

.home-hero-fixed::after {
  opacity: 0.45;
}

.home-hero-fixed .home-hero-inner {
  min-height: 400px;
  padding-block: clamp(58px, 7vw, 88px);
}

.home-hero-fixed .home-hero-copy {
  max-width: 690px;
}

.home-hero-fixed .home-hero-copy p {
  max-width: 560px;
  margin-top: 16px;
}

.home-hero-fixed .hero-actions {
  gap: 12px;
  margin-top: 24px;
}

.home-hero-fixed .home-hero-symbol {
  width: min(34vw, 360px);
  opacity: 0.105;
  filter: none;
}

.home-highlights-section {
  padding-top: clamp(28px, 4vw, 48px);
}

.home-highlight-carousel {
  gap: 12px;
  padding-bottom: 6px;
}

.home-highlight-card {
  min-height: 190px;
  padding: clamp(20px, 2.5vw, 26px);
  gap: 8px;
  background: linear-gradient(180deg, rgba(24, 26, 31, 0.62), rgba(18, 20, 24, 0.72));
  border-color: var(--home-line);
}

.home-highlight-card:hover {
  background: rgba(24, 26, 31, 0.78);
  border-color: var(--home-line-strong);
  box-shadow: none;
}

.home-reading-block {
  max-width: 720px;
}

.home-reading-block h2 {
  margin-top: 8px;
}

.home-reading-block p {
  margin-top: 16px;
}

.home-entry-grid {
  gap: 12px;
}

.home-entry-card {
  min-height: 205px;
  padding: clamp(20px, 2.4vw, 26px);
  background: var(--home-surface);
  border-color: var(--home-line);
}

.home-entry-card:hover {
  border-color: var(--home-line-strong);
  box-shadow: none;
}

.home-split-block {
  gap: clamp(28px, 5vw, 62px);
}

.home-text-list {
  background: var(--home-line);
  border-color: var(--home-line);
}

.home-text-list article,
.home-text-list .section-actions {
  padding: clamp(19px, 2.6vw, 26px);
  background: var(--home-surface-soft);
}

.home-news-grid {
  gap: 12px;
}

.home-news-card,
.home-news-card:first-child {
  padding: clamp(20px, 2.6vw, 26px);
  background: var(--home-surface);
  border-color: var(--home-line);
}

.home-news-card:hover {
  border-color: var(--home-line-strong);
  box-shadow: none;
}

.home-news-cover {
  margin-bottom: 16px;
  border-color: var(--home-line);
}

.home-instagram-layout {
  gap: clamp(28px, 4.5vw, 58px);
}

.home-instagram-feed .instagram-grid {
  gap: 12px;
}

.home-instagram-feed .instagram-card {
  background: var(--home-surface);
  border-color: var(--home-line);
}

.home-instagram-feed .instagram-card:hover {
  border-color: var(--home-line-strong);
  box-shadow: none;
}

.home-contact-band {
  max-width: 720px;
  padding: clamp(28px, 4.6vw, 48px) 0;
  border-color: var(--home-line-strong);
}

.home-contact-band .section-actions {
  gap: 12px;
}

@media (max-width: 640px) {
  .home-institutional .section,
  .home-institutional .hero-home {
    padding-block: 38px;
  }

  .home-hero-fixed .home-hero-inner {
    padding-block: 44px;
  }

  .home-hero-fixed .home-hero-symbol {
    width: 96vw;
    right: -48vw;
    opacity: 0.085;
  }

  .home-institutional h1,
  .home-institutional .home-hero-copy h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.25rem);
    line-height: 1.18;
  }

  .home-institutional h2,
  .home-institutional .section-heading h2,
  .home-institutional .home-contact-band h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.75rem);
  }

  .home-institutional .button {
    width: 100%;
    justify-content: center;
  }

  .home-highlight-card,
  .home-entry-card {
    min-height: 174px;
  }
}

/* Refinamento das paginas institucionais internas */
.institutional-page {
  --institutional-section-y: clamp(44px, 5.4vw, 76px);
  --institutional-text: rgba(238, 231, 216, 0.8);
  --institutional-text-soft: rgba(238, 231, 216, 0.66);
  --institutional-heading: rgba(247, 239, 222, 0.96);
  --institutional-gold: rgba(218, 181, 111, 0.86);
  --institutional-line: rgba(205, 169, 106, 0.13);
  --institutional-line-strong: rgba(205, 169, 106, 0.22);
  --institutional-surface: rgba(20, 22, 27, 0.66);
  --institutional-surface-soft: rgba(20, 22, 27, 0.48);
}

.institutional-page .page-hero {
  min-height: auto;
  padding-block: clamp(54px, 7vw, 92px);
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.72), rgba(15, 16, 20, 0.46)),
    radial-gradient(circle at 86% 42%, rgba(205, 169, 106, 0.08), transparent 24rem);
  border-bottom: 1px solid var(--institutional-line);
}

.institutional-page .page-hero::after {
  height: 18%;
  opacity: 0.34;
}

.institutional-page .page-hero-grid,
.institutional-page .page-hero-grid.single-column {
  grid-template-columns: minmax(0, 720px);
  gap: 24px;
  align-items: start;
}

.institutional-page .page-hero-copy {
  max-width: 720px;
}

.institutional-page .page-hero-copy h1,
.institutional-article-page .article-header h1 {
  max-width: 720px;
  color: var(--institutional-heading);
  font-size: clamp(2.05rem, 3.15vw, 2.375rem);
  line-height: 1.16;
  font-weight: 450;
  letter-spacing: 0;
}

.institutional-page .page-intro,
.institutional-page .section-heading p,
.institutional-page .content-card p,
.institutional-page .fact-card p,
.institutional-page .faq-item p,
.institutional-page .narrative-body p,
.institutional-page .article-body p,
.institutional-page .news-list-copy p,
.institutional-page .contact-form-wrap p {
  max-width: 640px;
  color: var(--institutional-text);
  font-size: clamp(0.96rem, 1.05vw, 1.025rem);
  line-height: 1.74;
}

.institutional-page .eyebrow,
.institutional-page .news-category,
.institutional-page .article-meta,
.institutional-page .news-meta,
.institutional-page .content-card span,
.institutional-page .fact-card span {
  color: var(--institutional-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.institutional-page .section {
  padding-block: var(--institutional-section-y);
}

.institutional-page .section-soft {
  background:
    linear-gradient(180deg, rgba(20, 22, 27, 0.42), rgba(14, 15, 18, 0.54));
  border-block-color: var(--institutional-line);
}

.institutional-page .section-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 3.8vw, 42px);
}

.institutional-page .section-heading h2,
.institutional-page .narrative-aside h2,
.institutional-page .contact-form-wrap h2,
.institutional-page .article-body h2,
.institutional-page .news-list-copy h2 {
  max-width: 680px;
  color: var(--institutional-heading);
  font-size: clamp(1.55rem, 2.35vw, 1.875rem);
  line-height: 1.22;
  font-weight: 450;
  letter-spacing: 0;
}

.institutional-page .content-card,
.institutional-page .fact-card,
.institutional-page .faq-item,
.institutional-page .news-card,
.institutional-page .news-list-card,
.institutional-page .contact-form-wrap,
.institutional-page .empty-state,
.institutional-page .article-author-card,
.institutional-article-page .article-body {
  background: var(--institutional-surface);
  border: 1px solid var(--institutional-line);
  border-radius: 8px;
  box-shadow: none;
}

.institutional-page .content-card:hover,
.institutional-page .news-card:hover,
.institutional-page .news-list-card:hover,
.institutional-page .faq-item:hover {
  background: rgba(23, 25, 30, 0.72);
  border-color: var(--institutional-line-strong);
  box-shadow: none;
  transform: none;
}

.institutional-page .page-facts,
.institutional-page .card-grid.three-up,
.institutional-news-page .news-grid {
  gap: 12px;
}

.institutional-page .fact-card,
.institutional-page .content-card,
.institutional-page .faq-item,
.institutional-page .contact-form-wrap,
.institutional-page .empty-state,
.institutional-article-page .article-body {
  padding: clamp(20px, 2.6vw, 28px);
}

.institutional-page .content-card h3,
.institutional-page .fact-card h3,
.institutional-page .faq-item h3,
.institutional-page .news-card h3,
.institutional-page .article-author-card h2 {
  color: var(--institutional-heading);
  font-size: clamp(1.125rem, 1.65vw, 1.375rem);
  line-height: 1.26;
  font-weight: 500;
  letter-spacing: 0;
}

.institutional-page .narrative-grid {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 680px);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.institutional-page .narrative-body {
  max-width: 680px;
}

.institutional-page .narrative-body p + p,
.institutional-page .article-body p + p {
  margin-top: 1.05em;
}

.institutional-page .rich-list {
  gap: 10px;
}

.institutional-page .rich-list li {
  background: rgba(238, 231, 216, 0.035);
  border-color: var(--institutional-line);
  border-radius: 8px;
  color: var(--institutional-text);
}

.institutional-page .button {
  min-height: 42px;
  padding: 0.68rem 1.05rem;
  border-radius: 8px;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.institutional-page .button-primary {
  background: rgba(218, 181, 111, 0.9);
  border-color: rgba(218, 181, 111, 0.32);
  color: #101216;
}

.institutional-page .button-primary:hover {
  background: rgba(229, 194, 128, 0.96);
  border-color: rgba(229, 194, 128, 0.42);
  transform: translateY(-1px);
}

.institutional-page .button-outline,
.institutional-page .button-ghost {
  background: rgba(238, 231, 216, 0.035);
  border-color: rgba(238, 231, 216, 0.16);
  color: rgba(238, 231, 216, 0.9);
}

.institutional-page .button-outline:hover,
.institutional-page .button-ghost:hover {
  background: rgba(238, 231, 216, 0.065);
  border-color: rgba(218, 181, 111, 0.3);
  color: rgba(245, 234, 211, 0.98);
  transform: translateY(-1px);
}

.institutional-presentation-page .page-hero {
  display: flex;
  align-items: center;
}

.institutional-presentation-page .page-hero-grid {
  min-height: clamp(280px, 34vw, 380px);
}

.institutional-news-page .news-search-form {
  gap: 10px;
  padding: 12px;
  background: var(--institutional-surface);
  border: 1px solid var(--institutional-line);
  border-radius: 8px;
  box-shadow: none;
}

.institutional-news-page .news-search-form input[type="search"],
.institutional-contact-page .contact-form input,
.institutional-contact-page .contact-form select,
.institutional-contact-page .contact-form textarea {
  background: rgba(238, 231, 216, 0.055);
  border: 1px solid rgba(238, 231, 216, 0.14);
  border-radius: 8px;
  color: rgba(247, 239, 222, 0.95);
  box-shadow: none;
}

.institutional-news-page .news-search-form input[type="search"]:focus,
.institutional-contact-page .contact-form input:focus,
.institutional-contact-page .contact-form select:focus,
.institutional-contact-page .contact-form textarea:focus {
  border-color: rgba(218, 181, 111, 0.42);
  box-shadow: 0 0 0 3px rgba(218, 181, 111, 0.1);
}

.institutional-news-page .filter-bar {
  gap: 8px;
}

.institutional-news-page .filter-chip {
  padding: 0.55rem 0.8rem;
  background: rgba(238, 231, 216, 0.035);
  border-color: rgba(238, 231, 216, 0.14);
  border-radius: 8px;
  color: rgba(238, 231, 216, 0.78);
  box-shadow: none;
}

.institutional-news-page .filter-chip:hover,
.institutional-news-page .filter-chip.active {
  background: rgba(218, 181, 111, 0.14);
  border-color: rgba(218, 181, 111, 0.28);
  color: rgba(247, 239, 222, 0.95);
}

.institutional-news-page .news-list {
  gap: 14px;
}

.institutional-news-page .news-list-card {
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(18px, 2.6vw, 26px);
  align-items: center;
}

.institutional-news-page .news-list-cover,
.institutional-news-page .news-card img,
.institutional-article-page .article-cover {
  border: 1px solid var(--institutional-line);
  border-radius: 8px;
}

.institutional-news-page .news-list-copy p {
  max-width: 640px;
}

.institutional-article-page .article-shell {
  padding-block: clamp(48px, 6vw, 82px);
}

.institutional-article-page .article-grid {
  grid-template-columns: minmax(0, 720px);
  max-width: 820px;
  gap: 28px;
}

.institutional-article-page .article-header {
  max-width: 720px;
}

.institutional-article-page .article-body {
  max-width: 720px;
}

.institutional-article-page .article-cover {
  margin-bottom: clamp(22px, 3.5vw, 34px);
}

.institutional-article-page .related-posts {
  margin-top: clamp(42px, 5vw, 64px);
}

.institutional-contact-page .contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.institutional-contact-page .contact-form {
  gap: 16px;
}

.institutional-contact-page .contact-form textarea {
  min-height: 160px;
}

.institutional-contact-page .form-status {
  border-radius: 8px;
}

@media (max-width: 980px) {
  .institutional-page .narrative-grid,
  .institutional-news-page .news-list-card,
  .institutional-contact-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .institutional-news-page .news-list-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .institutional-page .page-hero,
  .institutional-page .section {
    padding-block: 38px;
  }

  .institutional-page .page-hero-copy h1,
  .institutional-article-page .article-header h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.25rem);
    line-height: 1.18;
  }

  .institutional-page .section-heading h2,
  .institutional-page .narrative-aside h2,
  .institutional-page .contact-form-wrap h2,
  .institutional-page .article-body h2,
  .institutional-page .news-list-copy h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.75rem);
  }

  .institutional-page .button {
    width: 100%;
    justify-content: center;
  }

  .institutional-presentation-page .page-hero-grid {
    min-height: 240px;
  }
}

/* Refinamento visual da loja e livraria */
.shop-page {
  --shop-section-y: clamp(44px, 5.4vw, 76px);
  --shop-text: rgba(238, 231, 216, 0.8);
  --shop-text-soft: rgba(238, 231, 216, 0.66);
  --shop-heading: rgba(247, 239, 222, 0.96);
  --shop-gold: rgba(218, 181, 111, 0.88);
  --shop-price: #f5e3b8;
  --shop-line: rgba(205, 169, 106, 0.14);
  --shop-line-strong: rgba(205, 169, 106, 0.26);
  --shop-surface: rgba(20, 22, 27, 0.66);
  --shop-surface-soft: rgba(20, 22, 27, 0.48);
}

.shop-page .page-hero {
  min-height: auto;
  padding-block: clamp(54px, 7vw, 92px);
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.74), rgba(15, 16, 20, 0.48)),
    radial-gradient(circle at 86% 42%, rgba(205, 169, 106, 0.08), transparent 24rem);
  border-bottom: 1px solid var(--shop-line);
}

.shop-page .page-hero::after {
  height: 18%;
  opacity: 0.32;
}

.shop-page .page-hero-grid,
.shop-page .page-hero-grid.single-column {
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.shop-page .page-hero-copy {
  max-width: 700px;
}

.shop-page .page-hero-copy h1 {
  max-width: 700px;
  color: var(--shop-heading);
  font-size: clamp(2.05rem, 3.15vw, 2.375rem);
  line-height: 1.16;
  font-weight: 450;
  letter-spacing: 0;
}

.shop-page .page-intro,
.shop-page .section-heading p,
.shop-page .product-card-copy p,
.shop-page .shop-feature-copy p,
.shop-page .cart-copy p,
.shop-page .summary-note,
.shop-page .summary-note-group p,
.shop-page .article-body p {
  max-width: 640px;
  color: var(--shop-text);
  font-size: clamp(0.96rem, 1.05vw, 1.025rem);
  line-height: 1.74;
}

.shop-page .eyebrow,
.shop-page .product-author,
.shop-page .news-category {
  color: var(--shop-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.shop-page .section {
  padding-block: var(--shop-section-y);
}

.shop-page .section-soft {
  background:
    linear-gradient(180deg, rgba(20, 22, 27, 0.42), rgba(14, 15, 18, 0.54));
  border-block-color: var(--shop-line);
}

.shop-page .section-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 3.8vw, 42px);
}

.shop-page .section-heading h2,
.shop-page .shop-feature-copy h2,
.shop-page .contact-form-wrap h2,
.shop-page .shop-summary-card h2,
.shop-page .article-body h2,
.shop-page .empty-state h2 {
  max-width: 680px;
  color: var(--shop-heading);
  font-size: clamp(1.55rem, 2.35vw, 1.875rem);
  line-height: 1.22;
  font-weight: 450;
  letter-spacing: 0;
}

.shop-page .product-card-copy h3,
.shop-page .cart-copy h2 {
  color: var(--shop-heading);
  font-size: clamp(1.125rem, 1.55vw, 1.28rem);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0;
}

.shop-page .product-card-copy h3 a,
.shop-page .cart-copy h2 a {
  color: inherit;
}

.shop-page .shop-feature-card,
.shop-page .product-card,
.shop-page .product-purchase-card,
.shop-page .cart-item,
.shop-page .shop-summary-card,
.shop-page .contact-form-wrap,
.shop-page .article-body,
.shop-page .empty-state {
  background: var(--shop-surface);
  border: 1px solid var(--shop-line);
  border-radius: 8px;
  box-shadow: none;
}

.shop-page .shop-feature-card:hover,
.shop-page .product-card:hover,
.shop-page .cart-item:hover {
  background: rgba(23, 25, 30, 0.72);
  border-color: var(--shop-line-strong);
  box-shadow: none;
  transform: none;
}

.shop-page .shop-feature-card {
  gap: clamp(18px, 3vw, 28px);
  min-width: 0;
  padding: clamp(18px, 2.6vw, 26px);
}

.shop-page .shop-feature-cover,
.shop-page .product-cover,
.shop-page .product-detail-cover,
.shop-page .cart-thumb {
  background: rgba(238, 231, 216, 0.035);
  border: 1px solid var(--shop-line);
  border-radius: 8px;
  overflow: hidden;
}

.shop-page .shop-feature-copy {
  min-width: 0;
}

.shop-page .shop-feature-cover img,
.shop-page .product-cover img,
.shop-page .product-detail-cover img,
.shop-page .cart-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-catalog-page .page-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.shop-catalog-page .shop-feature-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

.shop-catalog-page .shop-feature-copy h2,
.shop-catalog-page .shop-feature-copy p {
  overflow-wrap: anywhere;
}

.shop-page .shop-grid {
  gap: 14px;
}

.shop-page .product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(14px, 2vw, 18px);
  gap: 16px;
}

.shop-page .product-cover {
  aspect-ratio: 4 / 5;
}

.shop-page .product-card-copy {
  display: grid;
  gap: 10px;
}

.shop-page .product-card-copy p {
  margin: 0;
}

.shop-page .price-stack {
  gap: 4px;
}

.shop-page .price-stack strong,
.shop-page .shop-feature-copy .product-meta-line span:last-child,
.shop-page .cart-line-total strong,
.shop-page .summary-row strong,
.shop-page .shop-summary-card strong,
.shop-page .product-purchase-card .price-stack strong,
.shop-page .shipping-option-price {
  color: var(--shop-price);
  text-shadow: 0 0 18px rgba(205, 169, 106, 0.12);
}

.shop-page .price-stack strong {
  font-size: clamp(1.35rem, 2.1vw, 1.6rem);
  letter-spacing: 0.01em;
}

.shop-page .price-stack span {
  color: rgba(238, 231, 216, 0.5);
}

.shop-page .product-meta-line {
  gap: 8px;
  color: var(--shop-text-soft);
}

.shop-page .stock-pill,
.shop-page .hero-pills span {
  background: rgba(218, 181, 111, 0.1);
  border-color: rgba(218, 181, 111, 0.25);
  color: rgba(247, 239, 222, 0.9);
}

.shop-page .stock-pill.is-out {
  background: rgba(238, 231, 216, 0.045);
  border-color: rgba(238, 231, 216, 0.13);
  color: rgba(238, 231, 216, 0.62);
}

.shop-page .product-card-actions,
.shop-page .cart-actions,
.shop-page .summary-actions,
.shop-page .checkout-actions {
  gap: 10px;
}

.shop-page .button {
  min-height: 42px;
  padding: 0.68rem 1.05rem;
  border-radius: 8px;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.shop-page .button-primary {
  background: rgba(218, 181, 111, 0.9);
  border-color: rgba(218, 181, 111, 0.32);
  color: #101216;
}

.shop-page .button-primary:hover {
  background: rgba(229, 194, 128, 0.96);
  border-color: rgba(229, 194, 128, 0.42);
  transform: translateY(-1px);
}

.shop-page .button-outline,
.shop-page .button-ghost {
  background: rgba(238, 231, 216, 0.035);
  border-color: rgba(238, 231, 216, 0.16);
  color: rgba(238, 231, 216, 0.9);
}

.shop-page .button-outline:hover,
.shop-page .button-ghost:hover {
  background: rgba(238, 231, 216, 0.065);
  border-color: rgba(218, 181, 111, 0.3);
  color: rgba(245, 234, 211, 0.98);
  transform: translateY(-1px);
}

.shop-page .news-search-form,
.shop-page .shop-form,
.shop-page .shipping-form,
.shop-page .shop-purchase-form {
  gap: 14px;
}

.shop-page .news-search-form {
  padding: 12px;
  background: var(--shop-surface);
  border: 1px solid var(--shop-line);
  border-radius: 8px;
  box-shadow: none;
}

.shop-page .news-search-form input[type="search"],
.shop-page .shop-form input,
.shop-page .shop-form textarea,
.shop-page .shop-form select,
.shop-page .shipping-form input,
.shop-page .shop-purchase-form input {
  background: rgba(238, 231, 216, 0.055);
  border: 1px solid rgba(238, 231, 216, 0.14);
  border-radius: 8px;
  color: rgba(247, 239, 222, 0.95);
  box-shadow: none;
}

.shop-page .news-search-form input[type="search"]:focus,
.shop-page .shop-form input:focus,
.shop-page .shop-form textarea:focus,
.shop-page .shop-form select:focus,
.shop-page .shipping-form input:focus,
.shop-page .shop-purchase-form input:focus {
  border-color: rgba(218, 181, 111, 0.42);
  box-shadow: 0 0 0 3px rgba(218, 181, 111, 0.1);
}

/* Loja: carrossel de destaques e dropdown customizado */
.store-hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(34px, 5vw, 70px);
  background:
    radial-gradient(circle at 72% 42%, rgba(212, 175, 55, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(7, 8, 8, 0.98), rgba(16, 17, 18, 0.96) 56%, rgba(52, 48, 39, 0.78));
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.store-hero-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.store-hero-heading h1 {
  max-width: 420px;
  margin: 12px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.04;
}

.store-feature-carousel {
  position: relative;
  min-height: clamp(280px, 38vw, 460px);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 28px;
  background: rgba(9, 10, 11, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.store-feature-track,
.store-feature-slide {
  position: absolute;
  inset: 0;
}

.store-feature-slide {
  display: block;
  color: rgba(250, 244, 229, 0.98);
  opacity: 0;
  transform: scale(1.015);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.75s ease;
}

.store-feature-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.store-feature-slide img,
.store-feature-slide .shop-cover-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-feature-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.5)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%);
}

.store-feature-overlay {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 50px);
  max-width: min(520px, calc(100% - 92px));
  display: grid;
  gap: 10px;
}

.store-feature-overlay strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.store-feature-overlay small {
  color: rgba(247, 211, 138, 0.95);
  font-weight: 700;
}

.store-feature-empty {
  position: relative;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 36px;
  color: rgba(247, 239, 222, 0.82);
}

.store-carousel-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 999px;
  background: rgba(8, 9, 10, 0.72);
  color: rgba(247, 211, 138, 0.98);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.store-carousel-control:hover {
  border-color: rgba(247, 211, 138, 0.72);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-50%) scale(1.04);
}

.store-carousel-control.previous {
  left: 18px;
}

.store-carousel-control.next {
  right: 18px;
}

.store-carousel-dots {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

.store-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(247, 211, 138, 0.55);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.store-carousel-dots button.active {
  width: 24px;
  background: rgba(247, 211, 138, 0.9);
}

.shop-page .store-search-form {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 360px) minmax(120px, 170px) auto;
  align-items: stretch;
  gap: 16px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(10, 11, 12, 0.78);
  border-color: rgba(212, 175, 55, 0.18);
}

.custom-dropdown {
  position: relative;
  min-width: 0;
}

.custom-dropdown-trigger {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(238, 231, 216, 0.14);
  border-radius: 8px;
  background: rgba(238, 231, 216, 0.055);
  color: rgba(247, 239, 222, 0.92);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.custom-dropdown.open .custom-dropdown-trigger,
.custom-dropdown-trigger:hover,
.custom-dropdown-trigger:focus-visible {
  border-color: rgba(218, 181, 111, 0.48);
  background: rgba(212, 175, 55, 0.075);
  box-shadow: 0 0 0 3px rgba(218, 181, 111, 0.1);
  outline: none;
}

.custom-dropdown-icon {
  color: rgba(247, 211, 138, 0.95);
  transition: transform 0.25s ease;
}

.custom-dropdown.open .custom-dropdown-icon {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 12px;
  background: rgba(9, 10, 11, 0.98);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.46);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.custom-dropdown.open .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown-option {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(247, 239, 222, 0.82);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.custom-dropdown-option:hover,
.custom-dropdown-option:focus-visible {
  background: rgba(212, 175, 55, 0.09);
  color: rgba(250, 244, 229, 0.98);
  outline: none;
}

.custom-dropdown-option.active {
  color: rgba(247, 211, 138, 0.98);
  font-weight: 800;
}

.shop-page .store-search-submit {
  min-height: 52px;
  padding-inline: 32px;
  border-color: rgba(212, 175, 55, 0.66);
  color: rgba(247, 211, 138, 0.98);
  background: transparent;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-page .store-search-submit:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(247, 211, 138, 0.92);
}

.shop-product-page .product-detail-grid {
  grid-template-columns: minmax(220px, 380px) minmax(0, 640px);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.shop-product-page .product-detail-cover {
  aspect-ratio: 4 / 5;
  max-width: 380px;
  width: 100%;
}

.shop-product-page .product-specs {
  gap: 10px;
}

.shop-product-page .product-specs div {
  background: rgba(238, 231, 216, 0.035);
  border-color: var(--shop-line);
  border-radius: 8px;
  box-shadow: none;
}

.shop-product-page .product-specs strong {
  color: var(--shop-gold);
}

.shop-product-page .product-specs span {
  color: var(--shop-text);
}

.shop-product-page .product-purchase-card {
  padding: clamp(20px, 2.6vw, 28px);
}

.shop-product-page .product-purchase-card .price-stack strong {
  font-size: clamp(1.65rem, 2.6vw, 2rem);
}

.shop-product-page .article-body {
  max-width: 720px;
  padding: clamp(22px, 3vw, 30px);
}

.shop-cart-page .cart-layout,
.shop-checkout-page .cart-layout {
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.shop-cart-page .cart-list {
  gap: 12px;
}

.shop-cart-page .cart-item {
  grid-template-columns: 92px minmax(0, 1fr) minmax(130px, 0.22fr) minmax(128px, 0.22fr);
  gap: clamp(14px, 2.4vw, 22px);
  padding: clamp(16px, 2.4vw, 22px);
  align-items: center;
}

.shop-cart-page .cart-thumb {
  aspect-ratio: 4 / 5;
}

.shop-cart-page .cart-qty input {
  min-height: 42px;
}

.shop-page .shop-summary-card,
.shop-page .contact-form-wrap {
  padding: clamp(22px, 3vw, 30px);
}

.shop-page .summary-row {
  gap: 16px;
  padding-block: 13px;
  border-color: rgba(238, 231, 216, 0.1);
}

.shop-page .summary-row.total {
  margin-top: 8px;
  padding-top: 16px;
  border-top-color: var(--shop-line-strong);
}

.shop-page .summary-row.total strong {
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
}

.shop-page .shipping-options {
  gap: 10px;
}

.shop-page .shipping-option {
  background: rgba(238, 231, 216, 0.035);
  border: 1px solid var(--shop-line);
  border-radius: 8px;
  box-shadow: none;
}

.shop-page .shipping-option:hover,
.shop-page .shipping-option.active {
  background: rgba(218, 181, 111, 0.1);
  border-color: rgba(218, 181, 111, 0.3);
}

.shop-page .shipping-option-copy strong {
  color: rgba(247, 239, 222, 0.95);
}

.shop-page .shipping-option-copy small {
  color: var(--shop-text-soft);
}

.shop-checkout-page .shop-form-two-up {
  column-gap: 14px;
  row-gap: 16px;
}

.shop-checkout-page [data-checkout-submit].is-submitting,
.shop-checkout-page [data-checkout-submit]:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.shop-checkout-page .shop-form label span,
.shop-cart-page .shipping-form label span,
.shop-product-page .shop-purchase-form label span {
  color: rgba(238, 231, 216, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
}

.shop-page .alert {
  border-radius: 8px;
  box-shadow: none;
}

@media (max-width: 980px) {
  .shop-catalog-page .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .shop-catalog-page .shop-feature-card {
    max-width: 720px;
  }

  .shop-product-page .product-detail-grid,
  .shop-cart-page .cart-item {
    grid-template-columns: 1fr;
  }

  .shop-product-page .product-detail-cover {
    max-width: 320px;
  }

  .shop-cart-page .cart-line-total,
  .shop-cart-page .cart-actions,
  .shop-page .summary-actions,
  .shop-page .checkout-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .shop-page .page-hero,
  .shop-page .section {
    padding-block: 38px;
  }

  .shop-page .page-hero-copy h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.25rem);
    line-height: 1.18;
  }

  .shop-page .section-heading h2,
  .shop-page .shop-feature-copy h2,
  .shop-page .contact-form-wrap h2,
  .shop-page .shop-summary-card h2,
  .shop-page .article-body h2,
  .shop-page .empty-state h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.75rem);
  }

  .shop-page .button,
  .shop-page .product-card-actions form {
    width: 100%;
  }

  .shop-page .button {
    justify-content: center;
  }

  .shop-page .news-search-form,
  .shop-page .product-card-actions {
    grid-template-columns: 1fr;
  }
}

/* Correcoes pontuais da home */
body[data-page="home"] .brand-copy small {
  display: none;
}

body[data-page="home"] .brand-copy strong:not(.brand-stack) {
  max-width: 240px;
  line-height: 1.16;
}

.home-institutional .home-hero-symbol {
  display: none;
}

.home-institutional .home-hero-logo {
  position: relative;
  right: auto;
  bottom: auto;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  width: min(24vw, 260px);
  max-width: 100%;
  opacity: 0.18;
  pointer-events: none;
}

.home-institutional .home-hero-logo img {
  opacity: 1;
  animation: none;
}

.home-institutional .home-hero-fixed .home-hero-inner {
  display: grid;
  grid-template-columns: minmax(180px, 300px) minmax(0, 690px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  justify-content: center;
}

.home-institutional .home-hero-fixed .home-hero-copy {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.home-institutional .home-entry-grid {
  align-items: stretch;
}

.home-institutional .home-entry-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 188px;
  align-content: start;
  gap: 12px;
}

.home-institutional .home-entry-card span {
  display: none;
}

.home-institutional .home-entry-card h3,
.home-institutional .home-entry-card p {
  margin: 0;
}

.home-institutional .home-entry-card p {
  align-self: start;
}

.home-institutional .home-news-grid {
  align-items: stretch;
}

.home-institutional .home-news-card,
.home-institutional .home-news-card:first-child {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 100%;
}

.home-institutional .home-news-cover {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(24, 26, 31, 0.72), rgba(18, 20, 24, 0.82)),
    radial-gradient(circle at 72% 24%, rgba(218, 181, 111, 0.12), transparent 18rem);
}

.home-institutional .home-news-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-institutional .home-news-cover-fallback {
  border: 1px solid var(--home-line);
  color: rgba(218, 181, 111, 0.78);
  text-decoration: none;
}

.home-institutional .home-news-cover-fallback span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-institutional .home-news-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.home-institutional .home-news-copy h3,
.home-institutional .home-news-copy p {
  margin: 0;
}

.home-institutional .home-news-actions {
  display: flex;
  align-items: end;
  margin-top: 4px;
}

.home-institutional .home-news-actions .button {
  width: 100%;
  justify-content: center;
}

.home-institutional .home-instagram-feed .empty-state {
  min-height: 240px;
  display: grid;
  align-content: center;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(20, 22, 27, 0.58), rgba(20, 22, 27, 0.72)),
    radial-gradient(circle at 82% 18%, rgba(218, 181, 111, 0.1), transparent 18rem);
  border-color: var(--home-line);
}

.home-institutional .home-instagram-feed .empty-state h2,
.home-institutional .home-instagram-feed .empty-state p {
  margin: 0;
}

.home-institutional .home-instagram-feed .instagram-card {
  min-height: 112px;
  align-items: center;
}

.home-institutional .instagram-thumb {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(238, 231, 216, 0.045);
}

.home-institutional .instagram-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  body[data-page="home"] .brand-copy strong {
    max-width: 190px;
  }

  .home-institutional .home-entry-card {
    min-height: 164px;
  }

  .home-institutional .home-hero-logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: min(58vw, 220px);
    max-width: none;
    opacity: 0.14;
  }

  .home-institutional .home-hero-fixed .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: start;
  }

  .home-institutional .home-hero-fixed .home-hero-copy {
    grid-column: 1;
    grid-row: 2;
  }
}

/* Refinamento pontual da listagem de noticias */
.institutional-news-page .news-list {
  gap: 12px;
}

.institutional-news-page .news-list-card {
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr) minmax(120px, auto);
  gap: clamp(16px, 2.5vw, 24px);
  padding: clamp(16px, 2.2vw, 22px);
  align-items: stretch;
}

.institutional-news-page .news-list-cover {
  align-self: stretch;
  min-height: 132px;
}

.institutional-news-page .news-list-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  max-width: 680px;
}

.institutional-news-page .news-list-copy .news-category,
.institutional-news-page .news-list-copy .news-meta {
  font-size: 0.68rem;
  line-height: 1.35;
}

.institutional-news-page .news-list-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0;
}

.institutional-news-page .news-list-copy p {
  max-width: 620px;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.62;
}

.institutional-news-page .news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 2px;
  color: rgba(238, 231, 216, 0.58);
}

.institutional-news-page .news-list-actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
}

.institutional-news-page .news-list-actions .button {
  min-width: 120px;
  justify-content: center;
}

@media (max-width: 980px) {
  .institutional-news-page .news-list-card {
    grid-template-columns: minmax(130px, 190px) minmax(0, 1fr);
  }

  .institutional-news-page .news-list-actions {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .institutional-news-page .news-list-card {
    grid-template-columns: 1fr;
  }

  .institutional-news-page .news-list-cover {
    min-height: 170px;
  }

  .institutional-news-page .news-list-actions {
    grid-column: auto;
  }
}

/* Padronizacao final dos cards da home */
.home-institutional .home-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-institutional .home-entry-card,
.home-institutional .home-entry-card:hover {
  width: 100%;
  min-height: 190px;
  height: 100%;
  padding: clamp(20px, 2.4vw, 26px);
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 12px;
}

.home-institutional .home-entry-card h3 {
  min-height: 1.3em;
}

.home-institutional .home-entry-card p {
  max-width: none;
  align-self: start;
}

.home-institutional .home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.home-institutional .home-news-card,
.home-institutional .home-news-card:first-child {
  grid-row: auto;
  width: 100%;
  min-height: 100%;
  padding: clamp(20px, 2.6vw, 26px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
}

.home-institutional .home-news-card h3,
.home-institutional .home-news-card:not(:first-child) h3 {
  display: -webkit-box;
  min-height: 2.56em;
  max-width: none;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: clamp(1.1rem, 1.55vw, 1.3rem);
  line-height: 1.28;
}

.home-institutional .home-news-cover,
.home-institutional .home-news-cover-fallback {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: auto;
  margin: 0;
}

.home-institutional .home-news-copy {
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  gap: 9px;
}

.home-institutional .home-news-copy p {
  display: -webkit-box;
  max-width: none;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-institutional .home-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 2px;
  color: rgba(238, 231, 216, 0.58);
  font-size: 0.68rem;
  line-height: 1.35;
}

.home-institutional .home-news-actions {
  align-self: end;
  margin-top: 0;
}

.home-institutional .home-news-actions .button {
  min-height: 42px;
  width: 100%;
}

@media (max-width: 980px) {
  .home-institutional .home-entry-grid,
  .home-institutional .home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-institutional .home-entry-grid,
  .home-institutional .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-institutional .home-entry-card,
  .home-institutional .home-entry-card:hover {
    min-height: 164px;
  }
}

/* Correcoes pontuais de contraste do menu e midia dos cards */
.dropdown-panel a,
.dropdown-panel a:visited {
  color: rgba(238, 231, 216, 0.82);
}

.dropdown-panel a:hover,
.dropdown-panel a:focus,
.dropdown-panel a:focus-visible,
.dropdown-panel a.active {
  background: rgba(218, 181, 111, 0.08);
  color: rgba(229, 194, 128, 0.98);
}

.dropdown-panel a:focus-visible {
  outline: 2px solid rgba(229, 194, 128, 0.74);
  outline-offset: 3px;
}

.home-institutional .home-news-cover img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  object-fit: cover;
}

.home-institutional .home-news-cover-fallback {
  min-height: 100%;
}

/* Polimento fino de UX global */
:where(.section-heading, .page-hero-copy, .home-reading-block, .article-header) > :last-child {
  margin-bottom: 0;
}

:where(.section-heading, .page-hero-copy, .home-reading-block, .article-body, .narrative-body) p {
  max-width: 66ch;
}

:where(.section-heading h2, .page-hero-copy h1, .article-header h1) + p {
  margin-top: 14px;
}

:where(.content-card, .news-card, .product-card, .home-entry-card, .home-news-card, .home-highlight-card, .instagram-card, .shop-summary-card, .contact-form-wrap, .empty-state) {
  min-width: 0;
}

:where(.content-card, .news-card, .product-card, .home-entry-card, .home-news-card, .home-highlight-card) > :last-child {
  margin-bottom: 0;
}

:where(.card-grid, .shop-grid, .home-entry-grid, .home-news-grid, .home-highlight-carousel, .instagram-grid) {
  align-items: stretch;
}

:where(.content-card, .news-card, .product-card, .home-entry-card, .home-news-card, .home-highlight-card) {
  height: 100%;
}

:where(.button, button.button, a.button) {
  min-height: 42px;
  padding: 0.68rem 1.05rem;
  border-radius: 8px;
  line-height: 1.15;
  box-shadow: none;
}

:where(.button-primary, .button-outline, .button-ghost):hover {
  box-shadow: none;
}

:where(.button, a, button, input, select, textarea):focus-visible {
  outline: 2px solid rgba(229, 194, 128, 0.74);
  outline-offset: 3px;
}

:where(.section-actions, .hero-actions, .summary-actions, .checkout-actions, .cart-actions, .product-card-actions) {
  gap: 10px;
}

:where(.contact-form, .shop-form, .shipping-form, .shop-purchase-form) label {
  min-width: 0;
}

:where(.contact-form input, .contact-form select, .contact-form textarea, .shop-form input, .shop-form select, .shop-form textarea, .shipping-form input, .shop-purchase-form input) {
  min-height: 42px;
}

/* Enquadramento consistente das imagens de artigos */
.home-institutional .home-news-cover,
.institutional-news-page .news-list-cover {
  display: block;
  position: relative;
  overflow: hidden;
}

.home-institutional .home-news-cover img,
.institutional-news-page .news-list-cover img,
.institutional-page .news-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-institutional .home-hero-copy p,
.institutional-page .page-intro,
.shop-page .page-intro {
  max-width: 60ch;
}

.home-institutional .home-news-actions,
.home-institutional .product-card-actions,
.shop-page .product-card-actions,
.institutional-news-page .news-list-actions {
  margin-top: auto;
}

.home-institutional .home-news-cover,
.institutional-news-page .news-list-cover,
.shop-page .product-cover,
.shop-page .product-detail-cover {
  background-color: rgba(238, 231, 216, 0.04);
}

@media (max-width: 980px) {
  :where(.section-heading, .page-hero-copy, .home-reading-block, .article-header) {
    max-width: 720px;
  }

  :where(.section-actions, .hero-actions, .summary-actions, .checkout-actions, .cart-actions) {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :where(.section, .page-hero, .hero-home) {
    padding-block: 38px;
  }

  :where(.button, button.button, a.button) {
    min-height: 44px;
  }

  :where(.hero-actions, .section-actions, .summary-actions, .checkout-actions, .cart-actions, .product-card-actions) {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  :where(.hero-actions .button, .section-actions .button, .summary-actions .button, .checkout-actions .button, .cart-actions .button, .product-card-actions .button) {
    width: 100%;
    justify-content: center;
  }

:where(.content-card, .news-card, .product-card, .home-entry-card, .home-news-card, .home-highlight-card, .shop-summary-card, .contact-form-wrap, .empty-state) {
    padding: 20px;
  }
}

/* Correções funcionais de artigos: mídia estável e rolagem natural */
.institutional-news-page .news-list-card {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) auto;
  align-items: stretch;
}

.institutional-news-page .news-list-cover,
.home-institutional .home-news-cover {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(238, 231, 216, 0.045);
}

.institutional-news-page .news-list-cover img,
.home-institutional .home-news-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.institutional-news-page .news-list-cover-fallback {
  color: rgba(229, 194, 128, 0.9);
  text-decoration: none;
}

.institutional-news-page .news-list-cover-fallback span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.institutional-article-page,
.institutional-article-page .article-shell,
.institutional-article-page .article-grid,
.institutional-article-page .article-body {
  height: auto;
  max-height: none;
  overflow: visible;
}

@media (max-width: 640px) {
  .institutional-news-page .news-list-card {
    grid-template-columns: 1fr;
  }
}

/* Area do cliente: visual escuro premium sem alterar a logica do fluxo */
.shop-account-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(247, 211, 138, 0.16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(218, 181, 111, 0.08), transparent 28%),
    #0b0b0b;
  color: #fff;
}

.shop-account-page .account-hero {
  padding-block: clamp(54px, 7vw, 92px) clamp(28px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 215, 120, 0.12);
}

.shop-account-page .account-hero-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(18px, 3vw, 32px);
}

.shop-account-page .account-hero-copy {
  max-width: 680px;
}

.shop-account-page .account-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1.08;
}

.shop-account-page .account-hero p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.shop-account-page .account-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.shop-account-page .account-section {
  padding-block: clamp(48px, 6vw, 86px);
}

.shop-account-page .account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 3.4vw, 46px);
  align-items: start;
}

.shop-account-page .account-card {
  min-width: 0;
  background: rgba(255, 215, 120, 0.05);
  border: 1px solid rgba(255, 215, 120, 0.15);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 38px);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.shop-account-page .account-card:hover {
  border-color: rgba(255, 215, 120, 0.22);
  box-shadow: 0 0 34px rgba(247, 211, 138, 0.055), 0 24px 80px rgba(0, 0, 0, 0.28);
}

.shop-account-page .account-card-heading {
  margin-bottom: 24px;
}

.shop-account-page .account-card-heading h2 {
  margin: 8px 0 0;
  color: #fff;
  font-family: var(--redesign-font-title);
  font-weight: var(--redesign-title-weight);
  font-size: clamp(1.7rem, 2.6vw, 2rem);
  line-height: 1.18;
}

.shop-account-page .account-card-heading p {
  max-width: 58ch;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.shop-account-page .account-form {
  gap: 18px;
}

.shop-account-page .account-form label span,
.shop-account-page .shop-form label span {
  color: rgba(247, 211, 138, 0.86);
}

.shop-account-page .account-form input,
.shop-account-page .account-form select,
.shop-account-page .account-form textarea {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 215, 120, 0.2);
  border-radius: 16px;
  color: #fff;
}

.shop-account-page .account-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.shop-account-page .account-form-actions {
  margin-top: 6px;
}

.shop-account-page .account-order-list {
  display: grid;
  gap: 16px;
}

.shop-account-page .account-order-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 215, 120, 0.05);
  border: 1px solid rgba(255, 215, 120, 0.15);
  border-radius: 16px;
  color: #ffffff;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.shop-account-page .account-order-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 215, 120, 0.075);
  border-color: rgba(255, 215, 120, 0.3);
  box-shadow: 0 0 28px rgba(247, 211, 138, 0.075);
}

.shop-account-page .account-order-main,
.shop-account-page .account-order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.shop-account-page .account-order-label,
.shop-account-page .account-order-total span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-account-page .account-order-main strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 1.05rem;
}

.shop-account-page .account-status-badge {
  flex: 0 0 auto;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 215, 120, 0.18);
  border-radius: 999px;
  background: rgba(255, 215, 120, 0.12);
  color: #f7d38a;
  font-size: 0.78rem;
  font-weight: 700;
}

.shop-account-page .account-order-meta {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
}

.shop-account-page .account-order-total {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 215, 120, 0.12);
}

.shop-account-page .account-order-total strong {
  color: #f7d38a;
  font-size: 1.08rem;
}

.shop-account-page .account-order-button {
  width: 100%;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 215, 120, 0.3);
  color: #f7d38a;
}

.shop-account-page .account-order-button:hover,
.shop-account-page .account-order-button:focus-visible {
  background: rgba(255, 215, 120, 0.1);
  border-color: rgba(255, 215, 120, 0.5);
  color: #ffffff;
}

.shop-account-page .account-empty-state {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 215, 120, 0.05);
  border: 1px solid rgba(255, 215, 120, 0.15);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.shop-account-page .account-empty-state h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--redesign-font-title);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.2;
}

.shop-account-page .account-empty-state p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.shop-account-page .alert {
  margin-bottom: 18px;
}

.shop-account-page .account-success-message {
  padding: 14px 16px;
  background: rgba(255, 215, 120, 0.08);
  border: 1px solid rgba(255, 215, 120, 0.22);
  border-radius: 16px;
  color: #f7d38a;
  font-weight: 700;
}

@media (max-width: 920px) {
  .shop-account-page .account-hero-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-account-page .account-hero-actions {
    justify-content: flex-start;
  }

  .shop-account-page .account-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shop-account-page .account-hero-actions,
  .shop-account-page .account-hero-actions .button {
    width: 100%;
  }

  .shop-account-page .account-hero-actions .button {
    justify-content: center;
  }

  .shop-account-page .account-order-main,
  .shop-account-page .account-order-total {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Navegacao principal mais limpa: institucional no menu, acessos em pagina dedicada */
.site-header .header-shell {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 1.6vw, 24px);
  min-height: clamp(116px, 10vw, 142px);
}

.site-header .brand {
  flex: 0 0 clamp(250px, 22vw, 330px);
  max-width: clamp(250px, 22vw, 330px);
  min-width: 0;
  align-items: center;
  gap: clamp(12px, 1.4vw, 18px);
  overflow: visible;
}

.site-header .brand.brand-logo-only {
  width: clamp(220px, 19vw, 320px);
  max-width: 100%;
  display: flex;
  align-items: center;
}

.site-header .brand-logo-full {
  display: block;
  width: 100%;
  height: auto;
  max-height: 134px;
  object-fit: contain;
}

.site-header .brand-mark {
  width: clamp(46px, 4.4vw, 58px);
  height: clamp(70px, 7.1vw, 90px);
}

.site-header .brand-copy {
  min-width: 0;
  display: block;
}

.site-header .brand-copy .brand-stack {
  display: grid;
  gap: 1px;
  max-width: 100%;
  overflow: visible;
  color: var(--redesign-parchment);
  font-size: clamp(0.8rem, 0.9vw, 0.98rem);
  line-height: 1.03;
  letter-spacing: 0.02em;
  text-overflow: clip;
  white-space: normal;
}

.site-header .brand-stack span {
  display: block;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.site-header .brand-stack span:first-child,
.site-header .brand-stack span:last-child {
  font-size: 1.28em;
}

.site-header .brand-stack span:nth-child(2) {
  color: rgba(247, 211, 138, 0.72);
  font-size: 0.78em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header .brand-stack span:nth-child(3),
.site-header .brand-stack span:nth-child(4) {
  color: rgba(238, 231, 216, 0.86);
}

.site-header .main-nav {
  grid-column: 2;
  justify-content: flex-end;
  min-width: 0;
  gap: clamp(2px, 0.35vw, 6px);
}

.site-header .nav-link {
  padding-inline: clamp(6px, 0.55vw, 10px);
  white-space: nowrap;
}

.site-header .header-actions {
  grid-column: 3;
  position: static;
  transform: none;
  justify-self: end;
  flex: 0 0 auto;
}

.site-header .header-login-button {
  min-width: 96px;
  justify-content: center;
}

.nav-arrow::before {
  content: "\25BE";
}

@media (max-width: 1220px) {
  .site-header .brand {
    flex-basis: 238px;
    max-width: 238px;
  }

  .site-header .brand.brand-logo-only {
    width: 240px;
    max-width: 240px;
  }

  .site-header .brand-mark {
    width: 44px;
    height: 68px;
  }

  .site-header .brand-copy strong {
    font-size: 0.78rem;
  }

  .site-header .nav-link {
    font-size: 0.76rem;
    padding-inline: 5px;
  }
}

@media (max-width: 1180px) {
  .site-header .header-shell {
    display: flex;
    min-height: 96px;
  }

  .site-header .brand {
    flex: 1 1 auto;
    max-width: min(72vw, 320px);
  }

  .site-header .brand.brand-logo-only {
    max-width: min(80vw, 390px);
  }

  .site-header .brand-mark {
    width: 42px;
    height: 64px;
  }

  .site-header .brand-copy strong {
    font-size: 0.8rem;
  }
}

@media (max-width: 520px) {
  .site-header .header-shell {
      min-height: 92px;
    }

  .site-header .brand {
    min-width: 0;
    max-width: calc(100vw - 88px);
    gap: 10px;
  }

  .site-header .brand.brand-logo-only {
    max-width: calc(100vw - 96px);
  }

  .site-header .brand-logo-full {
    max-height: 88px;
  }

  .site-header .brand-mark {
    width: 34px;
    height: 52px;
  }

  .site-header .brand-copy strong {
    max-width: 100%;
    font-size: 0.72rem;
  }
}

/* Pagina intermediaria de acesso */
.access-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 12%, rgba(247, 211, 138, 0.13), transparent 34%),
    #0b0b0b;
  color: #ffffff;
}

.access-hero {
  padding-block: clamp(72px, 8vw, 118px);
}

.access-shell {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.access-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.access-heading h1 {
  margin: 8px 0 0;
  color: #ffffff;
  font-family: var(--redesign-font-title);
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  font-weight: var(--redesign-title-weight);
  line-height: 1.08;
}

.access-heading p {
  max-width: 62ch;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}

.access-card {
  display: grid;
  gap: 14px;
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 215, 120, 0.05);
  border: 1px solid rgba(255, 215, 120, 0.15);
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.access-card:hover,
.access-card:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 215, 120, 0.075);
  border-color: rgba(255, 215, 120, 0.32);
  box-shadow: 0 0 34px rgba(247, 211, 138, 0.08);
  color: #ffffff;
}

.access-card-kicker {
  color: #f7d38a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-card strong {
  color: #ffffff;
  font-family: var(--redesign-font-title);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: var(--redesign-title-weight);
  line-height: 1.16;
}

.access-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.68;
}

.access-card-action {
  align-self: end;
  margin-top: auto;
  color: #f7d38a;
  font-weight: 800;
}

.access-card-button {
  align-self: end;
  margin-top: auto;
  width: 100%;
  justify-content: center;
  background: transparent;
  border-color: rgba(255, 215, 120, 0.3);
  color: #f7d38a;
}

.access-card-button:hover,
.access-card-button:focus-visible {
  background: rgba(255, 215, 120, 0.1);
  border-color: rgba(255, 215, 120, 0.5);
  color: #ffffff;
}

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

  .access-card {
    min-height: 0;
  }
}

/* Transicao de pagamento: confirma pedido salvo e direciona ao Mercado Pago */
.shop-payment-redirect-page {
  min-height: 70vh;
  background:
    radial-gradient(circle at 50% 12%, rgba(247, 211, 138, 0.12), transparent 34%),
    #0b0b0b;
  color: #ffffff;
}

.payment-redirect-section {
  padding-block: clamp(56px, 8vw, 110px);
}

.payment-redirect-card {
  width: min(100%, 680px);
  margin-inline: auto;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 215, 120, 0.055);
  border: 1px solid rgba(255, 215, 120, 0.16);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.payment-redirect-card h1 {
  margin: 8px 0 0;
  color: #ffffff;
  font-family: var(--redesign-font-title);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: var(--redesign-title-weight);
  line-height: 1.12;
}

.payment-redirect-card p {
  max-width: 54ch;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.payment-redirect-card p strong {
  color: #f7d38a;
}

.payment-redirect-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .payment-redirect-actions {
    display: grid;
  }

  .payment-redirect-actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Pedido: painel pratico, compacto e funcional para acompanhamento da compra */
.shop-order-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 211, 138, 0.09), transparent 32%),
    #0b0b0b;
  color: #ffffff;
}

.shop-order-page .order-compact-hero {
  padding-block: clamp(24px, 4vw, 44px) 12px;
}

.shop-order-page .order-details-section,
.shop-order-page .order-dashboard-section {
  padding-block: 12px;
}

.shop-order-page .order-top-strip,
.shop-order-page .order-panel {
  background: rgba(255, 215, 120, 0.045);
  border: 1px solid rgba(255, 215, 120, 0.14);
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.shop-order-page .order-top-strip {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
}

.shop-order-page .order-top-id {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.shop-order-page .order-top-id span,
.shop-order-page .order-detail-label,
.shop-order-page .order-detail-row span,
.shop-order-page .order-item-metric span {
  color: rgba(247, 211, 138, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-order-page .order-top-id strong {
  color: #ffffff;
  font-family: var(--redesign-font-title);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  font-weight: var(--redesign-title-weight);
  line-height: 1.1;
}

.shop-order-page .order-top-id small,
.shop-order-page .order-detail-address p,
.shop-order-page .order-muted,
.shop-order-page .order-history-item p,
.shop-order-page .order-detail-product-copy p {
  color: rgba(255, 255, 255, 0.66);
}

.shop-order-page .order-top-status,
.shop-order-page .order-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.shop-order-page .order-inline-action {
  margin: 0;
}

.shop-order-page .order-inline-action .button {
  min-height: 0;
}

.order-cancel-modal[hidden] {
  display: none;
}

.order-cancel-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
}

.order-cancel-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(247, 211, 138, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
}

.order-cancel-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(247, 211, 138, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(247, 211, 138, 0.08), transparent 38%),
    rgba(12, 12, 11, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  color: #fffaf0;
}

.order-cancel-modal-card h2 {
  margin: 10px 0 18px;
  color: #fff7df;
  font-family: var(--redesign-font-title);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: var(--redesign-title-weight);
  line-height: 1.1;
}

.order-cancel-modal-copy {
  display: grid;
  gap: 10px;
}

.order-cancel-modal-copy p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.order-cancel-modal-copy p:first-child {
  color: #f7d38a;
  font-weight: 750;
}

.order-cancel-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 24px;
}

.order-cancel-modal-actions .button {
  min-height: 40px;
}

.order-cancel-modal-actions .button:disabled,
.order-cancel-modal-actions .button.is-submitting {
  cursor: wait;
  opacity: 0.72;
}

body.order-cancel-modal-open {
  overflow: hidden;
}

.shop-order-page .order-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 215, 120, 0.2);
  border-radius: 999px;
  background: rgba(255, 215, 120, 0.1);
  color: #f7d38a;
  font-size: 0.76rem;
  font-weight: 800;
}

.shop-order-page .button {
  min-height: 36px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.shop-order-page .order-panel {
  padding: clamp(16px, 2.2vw, 24px);
}

.shop-order-page .order-compact-heading {
  margin-bottom: 16px;
}

.shop-order-page .order-compact-heading h1,
.shop-order-page .order-panel h2 {
  margin: 6px 0 0;
  color: #ffffff;
  font-family: var(--redesign-font-title);
  font-weight: var(--redesign-title-weight);
  letter-spacing: 0;
  line-height: 1.14;
}

.shop-order-page .order-compact-heading h1 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.shop-order-page .order-panel h2 {
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
}

.shop-order-page .order-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 14px;
  align-items: start;
}

.shop-order-page .order-detail-block {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 215, 120, 0.11);
  border-radius: 14px;
  background: rgba(11, 11, 11, 0.32);
}

.shop-order-page .order-detail-products-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.shop-order-page .order-detail-product {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.shop-order-page .order-detail-thumb {
  width: 54px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.shop-order-page .order-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-order-page .order-detail-product-copy strong,
.shop-order-page .order-detail-address strong,
.shop-order-page .order-history-item strong {
  color: #ffffff;
}

.shop-order-page .order-detail-product-copy p,
.shop-order-page .order-detail-address p,
.shop-order-page .order-history-item p {
  margin: 3px 0 0;
  line-height: 1.48;
}

.shop-order-page .order-detail-product-price,
.shop-order-page .order-detail-total strong {
  color: #f7d38a;
}

.shop-order-page .order-detail-summary {
  display: grid;
  gap: 0;
}

.shop-order-page .order-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 215, 120, 0.09);
}

.shop-order-page .order-detail-row:first-child {
  padding-top: 0;
}

.shop-order-page .order-detail-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.shop-order-page .order-detail-row strong {
  color: #ffffff;
  text-align: right;
}

.shop-order-page .order-detail-total {
  margin-top: 4px;
  padding-top: 12px;
}

.shop-order-page .order-detail-total strong {
  font-size: 1.1rem;
}

.shop-order-page .order-detail-address {
  grid-column: 1 / -1;
}

.shop-order-page .order-detail-address .order-detail-label {
  display: block;
  margin-bottom: 8px;
}

.shop-order-page .order-status-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
  align-items: start;
}

.shop-order-page .order-progress-list,
.shop-order-page .order-history-list {
  display: grid;
  margin-top: 14px;
}

.shop-order-page .order-progress-list {
  gap: 7px;
}

.shop-order-page .order-progress-step {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.92rem;
}

.shop-order-page .order-progress-step span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.shop-order-page .order-progress-step p {
  margin: 0;
}

.shop-order-page .order-progress-step.is-complete span,
.shop-order-page .order-progress-step.is-current span {
  border-color: rgba(247, 211, 138, 0.62);
  background: #f7d38a;
  box-shadow: 0 0 14px rgba(247, 211, 138, 0.16);
}

.shop-order-page .order-progress-step.is-current p {
  color: #ffffff;
  font-weight: 800;
}

.shop-order-page .order-history-list {
  gap: 0;
}

.shop-order-page .order-history-item {
  position: relative;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 14px;
  font-size: 0.92rem;
}

.shop-order-page .order-history-item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 16px;
  bottom: 0;
  width: 1px;
  background: rgba(255, 215, 120, 0.14);
}

.shop-order-page .order-history-item:last-child {
  padding-bottom: 0;
}

.shop-order-page .order-history-item:last-child::before {
  display: none;
}

.shop-order-page .order-history-dot {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  margin-top: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.shop-order-page .order-history-item.is-latest .order-history-dot {
  background: #f7d38a;
  box-shadow: 0 0 14px rgba(247, 211, 138, 0.18);
}

@media (max-width: 980px) {
  .shop-order-page .order-top-strip,
  .shop-order-page .order-details-grid,
  .shop-order-page .order-status-grid {
    grid-template-columns: 1fr;
  }

  .shop-order-page .order-top-status,
  .shop-order-page .order-top-actions {
    justify-content: flex-start;
  }

  .shop-order-page .order-detail-address {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .shop-order-page .order-compact-hero {
    padding-top: 20px;
  }

  .shop-order-page .order-top-strip,
  .shop-order-page .order-panel {
    border-radius: 14px;
  }

  .shop-order-page .order-detail-product {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .shop-order-page .order-detail-product-price {
    grid-column: 2;
  }

  .shop-order-page .order-detail-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .shop-order-page .order-detail-row strong {
    text-align: left;
  }

  .shop-order-page .order-top-actions .button,
  .shop-order-page .order-inline-action {
    width: 100%;
  }

  .shop-order-page .order-inline-action .button {
    width: 100%;
    justify-content: center;
  }

  .order-cancel-modal {
    align-items: end;
    padding: 14px;
  }

  .order-cancel-modal-card {
    border-radius: 18px;
    padding: 22px;
  }

  .order-cancel-modal-actions {
    flex-direction: column-reverse;
  }

  .order-cancel-modal-actions .button {
    width: 100%;
    justify-content: center;
  }
}

.custom-dropdown {
  position: relative;
  min-width: 220px;
}

.custom-dropdown-trigger {
  width: 100%;
  background: rgba(11, 11, 13, 0.6);
  border: 1px solid var(--redesign-line);
  color: var(--redesign-parchment);
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.custom-dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #0b0b0d;
  border: 1px solid var(--redesign-line);
  border-radius: 12px;
  overflow: hidden;
  display: none;
  z-index: 50;
}

.custom-dropdown.open .custom-dropdown-menu {
  display: block;
}

.custom-dropdown-option {
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--redesign-parchment);
  cursor: pointer;
}

.custom-dropdown-option:hover,
.custom-dropdown-option.active {
  background: rgba(215, 168, 74, 0.1);
  color: var(--redesign-amber);
}

/* ===== Loja / busca / dropdown / carrossel ===== */

.store-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px 160px auto;
  gap: 14px;
  align-items: start;
}

.custom-dropdown {
  position: relative;
}

.custom-dropdown-trigger {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  background: rgba(8, 8, 8, 0.92);
  border: 1px solid rgba(205, 169, 106, 0.22);
  border-radius: 14px;
  color: #ebe4d4;
  cursor: pointer;
}

.custom-dropdown.is-open .custom-dropdown-trigger {
  border-color: rgba(205, 169, 106, 0.48);
}

.custom-dropdown-icon {
  color: #cda96a;
  transition: transform 180ms ease;
}

.custom-dropdown.is-open .custom-dropdown-icon {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  padding: 10px 0;
  background: rgba(7, 7, 7, 0.98);
  border: 1px solid rgba(205, 169, 106, 0.24);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.custom-dropdown.is-open .custom-dropdown-menu {
  display: block;
}

.custom-dropdown-option {
  width: 100%;
  padding: 11px 18px;
  text-align: left;
  border: 0;
  background: transparent;
  color: rgba(235, 228, 212, 0.88);
  cursor: pointer;
}

.custom-dropdown-option:hover,
.custom-dropdown-option.active {
  background: rgba(205, 169, 106, 0.09);
  color: #e2c68c;
}

.store-feature-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(205, 169, 106, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.store-feature-track {
  position: relative;
  min-height: 420px;
}

.store-feature-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms ease;
  text-decoration: none;
}

.store-feature-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.store-feature-slide img,
.store-feature-slide .shop-cover-fallback-large {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.store-feature-slide img {
  filter: brightness(0.56);
}

.shop-cover-fallback-large {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #15171d, #0b0b0d);
  color: #ebe4d4;
  font-size: 1.2rem;
}

.store-feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 34px 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.store-feature-overlay strong {
  display: block;
  margin-bottom: 8px;
  color: #f4e8cf;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.store-feature-overlay small {
  display: block;
  color: #f1dfb6;
  font-size: 1rem;
  font-weight: 700;
}

.store-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(205, 169, 106, 0.2);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  color: #e2c68c;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}

.store-carousel-control.previous {
  left: 16px;
}

.store-carousel-control.next {
  right: 16px;
}

.store-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.store-carousel-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.store-carousel-dots button.active {
  background: #e2c68c;
}

@media (max-width: 900px) {
  .store-search-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .store-feature-track {
    min-height: 340px;
  }

  .store-feature-slide img,
  .store-feature-slide .shop-cover-fallback-large {
    height: 340px;
  }

  .store-feature-overlay {
    padding: 22px;
  }

  .store-feature-overlay strong {
    font-size: 1.8rem;
  }

  .store-carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .store-carousel-control.previous {
    left: 10px;
  }

  .store-carousel-control.next {
    right: 10px;
  }
}
/* =========================================================
OVERRIDE VISUAL — PRETO + AZUL PROFUNDO + DOURADO
Não remove nada do layout original, apenas sobrepõe cores
========================================================= */

:root {
  --redesign-black: #05060a;
  --redesign-blue-deep: #0b1a2a;
  --redesign-blue-soft: #11263d;
  
  --redesign-parchment: #e6edf5;
  --redesign-muted: #9aa6b2;
  
  --redesign-line: rgba(215, 168, 74, 0.25);
  --redesign-line-soft: rgba(255, 255, 255, 0.08);
  
  --surface: rgba(11, 26, 42, 0.88);
  --paper: var(--redesign-blue-deep);
  }
  
  /* FUNDO GLOBAL */
  body {
  background:
  radial-gradient(circle at 50% 0%, rgba(215, 168, 74, 0.08), transparent 40rem),
  linear-gradient(180deg, #05060a 0%, #0b1a2a 50%, #05060a 100%) !important;
  color: var(--redesign-parchment) !important;
  }
  
  /* HEADER */
  .site-header {
  background: rgba(5, 6, 10, 0.85) !important;
  }
  
  /* TEXTOS */
  h1, h2, h3 {
  color: var(--redesign-parchment) !important;
  }
  
  p, li {
  color: var(--redesign-muted) !important;
  }
  
  /* LINKS */
  a {
  color: var(--redesign-gold) !important;
  }
  
  /* BOTÕES */
  .button-primary {
  background: linear-gradient(135deg, var(--redesign-gold), var(--redesign-amber)) !important;
  color: #05060a !important;
  }
  
  .button-primary:hover {
  background: linear-gradient(135deg, #e0b557, #f4bf69) !important;
  }
  
  /* CARDS */
  .content-card,
  .news-card,
  .product-card,
  .shop-summary-card,
  .cart-item {
  background: rgba(11, 26, 42, 0.7) !important;
  border: 1px solid var(--redesign-line-soft) !important;
  }
  
  /* FORMULÁRIOS */
  input, textarea, select {
  background: rgba(5, 6, 10, 0.6) !important;
  color: var(--redesign-parchment) !important;
  border: 1px solid var(--redesign-line-soft) !important;
  }
  
  /* FOOTER */
  .site-footer {
  background: #030407 !important;
  }
/* =========================================================
   OVERRIDE FINAL — REMOVER MARROM / FORÇAR AZUL PROFUNDO
   Colar no final do redesign.css
========================================================= */

:root {
  --redesign-black: #030712;
  --redesign-graphite: #07111f;
  --redesign-graphite-soft: #0b1a2a;
  --redesign-blue-deep: #071426;
  --redesign-blue-soft: #10243a;

  --redesign-gold: #d7a84a;
  --redesign-amber: #f0c36a;
  --redesign-parchment: #f2efe8;
  --redesign-muted: #aeb8c6;

  --redesign-line: rgba(215, 168, 74, 0.30);
  --redesign-line-soft: rgba(174, 184, 198, 0.14);

  --cream: #030712;
  --paper: #071426;
  --surface: rgba(7, 20, 38, 0.86);
}

/* FUNDO GERAL */
html,
body {
  background: #030712 !important;
}

body {
  background:
    radial-gradient(circle at 18% 34%, rgba(16, 63, 112, 0.28), transparent 34rem),
    radial-gradient(circle at 72% 18%, rgba(215, 168, 74, 0.08), transparent 28rem),
    linear-gradient(180deg, #030712 0%, #071426 48%, #030712 100%) !important;
}

/* HEADER / MENU SUPERIOR */
.site-header,
.site-header.scrolled {
  background: rgba(3, 7, 18, 0.94) !important;
  border-bottom: 1px solid rgba(215, 168, 74, 0.22) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28) !important;
}

.site-header .nav-link,
.site-header .mobile-link {
  color: rgba(242, 239, 232, 0.84) !important;
}

.site-header .nav-link.active,
.site-header .nav-link:hover,
.site-header .mobile-link.active,
.site-header .mobile-link:hover {
  background: rgba(215, 168, 74, 0.10) !important;
  color: var(--redesign-amber) !important;
}

/* DROPDOWN DO MENU */
.dropdown-panel,
.mobile-nav {
  background: rgba(3, 7, 18, 0.98) !important;
  border-color: rgba(215, 168, 74, 0.24) !important;
}

/* HERO DA HOME */
.home-hero-fixed,
.home-hero-premium,
.hero-home,
.page-hero {
  background:
    radial-gradient(circle at 23% 42%, rgba(16, 63, 112, 0.32), transparent 34rem),
    radial-gradient(circle at 70% 22%, rgba(215, 168, 74, 0.07), transparent 26rem),
    linear-gradient(90deg, #030712 0%, #071426 52%, #10131a 100%) !important;
  border-bottom: 1px solid rgba(215, 168, 74, 0.22) !important;
}

/* SEÇÕES */
.section,
.section-soft,
.home-institutional .section-soft,
.institutional-page .section-soft,
.shop-page .section-soft {
  background:
    linear-gradient(180deg, rgba(7, 20, 38, 0.72), rgba(3, 7, 18, 0.92)) !important;
}

/* CARDS */
.content-card,
.news-card,
.product-card,
.home-entry-card,
.home-news-card,
.home-highlight-card,
.instagram-card,
.shop-summary-card,
.cart-item,
.product-purchase-card,
.shop-feature-card,
.contact-form-wrap,
.empty-state,
.faq-item,
.article-body {
  background: rgba(7, 20, 38, 0.78) !important;
  border-color: rgba(215, 168, 74, 0.18) !important;
}

/* HOVER DOS CARDS */
.content-card:hover,
.news-card:hover,
.product-card:hover,
.home-entry-card:hover,
.home-news-card:hover,
.home-highlight-card:hover,
.instagram-card:hover,
.shop-feature-card:hover {
  background: rgba(11, 31, 55, 0.86) !important;
  border-color: rgba(215, 168, 74, 0.34) !important;
}

/* BOTÕES */
.button-primary {
  background: linear-gradient(180deg, #f0c36a, #d7a84a) !important;
  color: #030712 !important;
  border-color: rgba(240, 195, 106, 0.55) !important;
}

.button-primary:hover {
  background: linear-gradient(180deg, #f5d184, #dcae55) !important;
  color: #030712 !important;
}

.button-outline,
.button-ghost {
  background: rgba(7, 20, 38, 0.54) !important;
  border-color: rgba(215, 168, 74, 0.28) !important;
  color: rgba(242, 239, 232, 0.90) !important;
}

.button-outline:hover,
.button-ghost:hover {
  background: rgba(215, 168, 74, 0.10) !important;
  color: var(--redesign-amber) !important;
}

/* TEXTOS */
h1,
h2,
h3,
.page-hero-copy h1,
.home-hero-copy h1,
.section-heading h2 {
  color: #f2efe8 !important;
}

p,
li,
.page-intro,
.section-heading p {
  color: rgba(174, 184, 198, 0.92) !important;
}

/* FORMULÁRIOS */
input,
textarea,
select {
  background: rgba(3, 7, 18, 0.72) !important;
  border-color: rgba(174, 184, 198, 0.16) !important;
  color: #f2efe8 !important;
}

/* RODAPÉ */
.site-footer {
  background: #02050d !important;
  border-top-color: rgba(215, 168, 74, 0.18) !important;
}  

/* AJUSTE FINO DOS CARDS (tirar cinza e puxar azul) */

.content-card,
.home-entry-card,
.home-highlight-card {
  background: linear-gradient(
    180deg,
    rgba(11, 26, 42, 0.85),
    rgba(5, 10, 20, 0.95)
  ) !important;

  border: 1px solid rgba(215, 168, 74, 0.18) !important;
}
