/* Armadeira Outdoors — identidade: preto / vermelho / laranja */
:root {
  --black: #0a0a0a;
  --ink: #141414;
  --charcoal: #1c1c1c;
  --red: #e30613;
  --red-deep: #b0050f;
  --orange: #ff6a00;
  --orange-deep: #e05a00;
  --sand: #f4f1ec;
  --cream: #faf9f7;
  --white: #ffffff;
  --muted: #5a5a5a;
  --line: rgba(0, 0, 0, 0.1);
  --pix: #32bcad;
  --btc: #f2a900;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1180px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Promo bar */
.promo-bar {
  background: var(--black);
  color: #f0f0f0;
  font-size: 0.86rem;
  text-align: center;
  padding: 0.55rem 1rem;
}

.promo-bar strong {
  color: #fff;
}

.promo-bar .pix-tag {
  color: var(--pix);
}
.promo-bar .btc-tag {
  color: var(--btc);
}

.promo-bar .sep {
  opacity: 0.4;
  margin: 0 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  /* Wordmark 2024 horizontal — não cortar em círculo */
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo .logo-text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.2rem;
}

.nav a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  transition: color 0.15s, border-color 0.15s;
}

.nav a:hover,
.nav a.active {
  color: var(--red);
  border-bottom-color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  border-radius: 6px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}

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

.btn-primary {
  background: var(--orange);
  color: #111;
  box-shadow: 0 8px 22px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
  background: var(--orange-deep);
  color: #fff;
}

.btn-dark {
  background: var(--black);
  color: #fff;
}

.btn-dark:hover {
  background: var(--red);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: #f5f5f5;
  min-height: clamp(520px, 78vh, 700px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 3.25rem 0 3rem;
}

.hero-copy h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-copy p {
  font-size: 1.05rem;
  color: rgba(245, 245, 245, 0.78);
  max-width: 34rem;
  margin: 0 0 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pill.pix {
  border-color: rgba(50, 188, 173, 0.5);
  color: #7fe8dc;
}
.pill.btc {
  border-color: rgba(242, 169, 0, 0.55);
  color: #ffd56a;
}

.hero-visual {
  position: relative;
  min-height: 400px;
}

.hero-visual .frame {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--orange);
}

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

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  max-width: 220px;
  box-shadow: var(--shadow);
  z-index: 2;
  border-left: 4px solid var(--red);
}

.hero-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.hero-badge span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.section-head h2,
.page-title h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.05;
  color: var(--black);
  text-transform: uppercase;
}

.section-head p,
.lede {
  color: var(--muted);
  max-width: 36rem;
  margin: 0.4rem 0 0;
}

/* Path cards */
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.path-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
}

.path-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  min-height: 150px;
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
}

.path-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-top-color: var(--orange);
}

.path-card .num {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.path-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  font-family: var(--display);
  letter-spacing: 0.03em;
}

.path-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.path-card__cta {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--red);
}

.path-card--choice {
  min-height: 200px;
  padding: 1.4rem 1.35rem 1.35rem;
}

/* Como comprar — guia em 2 opções */
.how-to-buy .section-head p {
  max-width: 40rem;
}

.how-to-buy__note {
  margin: 1.25rem 0 0;
  max-width: 880px;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.how-to-buy__note strong {
  color: var(--ink);
}

@media (max-width: 700px) {
  .path-grid--two {
    grid-template-columns: 1fr;
  }
}

/* Documentos B2B no pedido */
.armadeira-order-docs {
  margin-top: 0.45rem;
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Product grid — cards contidos (nunca tela cheia) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
  min-width: 0;
  max-width: 100%;
  height: 100%;
}

.product-card[hidden] {
  display: none !important;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card .thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 200px;
  max-height: 200px;
  flex: 0 0 200px;
  background: #e8e4dc;
  overflow: hidden;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.04);
}

/* Home: reforço anti-imagem monstro */
.home-card .thumb {
  height: 180px;
  max-height: 180px;
  flex-basis: 180px;
}

.home-card .summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
}

.hero-visual {
  max-height: 480px;
}

.hero-visual .frame {
  max-height: 480px;
}

.product-card .badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 3px;
  z-index: 1;
}

.product-card .body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product-card .cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-deep);
  font-weight: 700;
}

.product-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.product-card .summary {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.6rem;
  margin-top: 0.25rem;
}

.price {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--black);
}

.price-compare {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
}

.price-note {
  font-size: 0.8rem;
  color: var(--pix);
  width: 100%;
  font-weight: 600;
}

.card-actions {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.card-actions .btn {
  flex: 1;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.chip {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  border-radius: 4px;
  padding: 0.45rem 0.95rem;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.15s;
}

.chip:hover,
.chip.active {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.chip.active {
  background: var(--red);
  border-color: var(--red);
}

/* Band / proof */
.band {
  background: var(--sand);
  border-block: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.proof-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.proof-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.proof-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  font-family: var(--display);
}

.proof-item h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-family: var(--display);
}

.proof-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
  border: 2px solid var(--black);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.65rem;
  max-width: 760px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  color: var(--red);
  margin-bottom: 0.45rem;
}

.faq p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA strip */
.cta-strip {
  background: var(--black);
  color: #f5f5f5;
  border-radius: 12px;
  padding: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  border-top: 4px solid var(--orange);
}

.cta-strip h2 {
  font-family: var(--display);
  margin: 0 0 0.35rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.cta-strip p {
  margin: 0;
  color: rgba(245, 245, 245, 0.75);
  max-width: 34rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Page header */
.page-hero {
  padding: 2.5rem 0 1.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.page-hero .breadcrumb a:hover {
  color: var(--red);
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  padding: 2.5rem 0 3rem;
  align-items: start;
}

.gallery {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.gallery-main {
  border-radius: 12px;
  overflow: hidden;
  background: #e8e4dc;
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  min-height: 280px;
}

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

.gallery-thumbs {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.gallery-thumbs button {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #e8e4dc;
}

.gallery-thumbs button.active,
.gallery-thumbs button:hover {
  border-color: var(--orange);
}

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

.buy-box .badge {
  display: inline-block;
  background: rgba(227, 6, 19, 0.1);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 3px;
  margin-bottom: 0.65rem;
}

.buy-box h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin: 0 0 0.65rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.buy-box .lede {
  margin-bottom: 1.15rem;
}

.price-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.85rem;
}

.price-hero .price {
  font-size: 1.9rem;
}

.discount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.discount-card {
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.86rem;
}

.discount-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  font-family: var(--display);
  letter-spacing: 0.04em;
}

.discount-card.pix {
  border-color: rgba(50, 188, 173, 0.4);
  background: rgba(50, 188, 173, 0.08);
}

.discount-card.btc {
  border-color: rgba(242, 169, 0, 0.45);
  background: rgba(242, 169, 0, 0.1);
}

.shipping-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.1rem;
  padding: 0.75rem 0.9rem;
  background: var(--sand);
  border-radius: 8px;
  border-left: 3px solid var(--orange);
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.buy-actions .btn {
  min-width: 160px;
}

.includes,
.specs {
  margin-top: 1.25rem;
}

.includes h3,
.specs h3,
.product-long h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-family: var(--display);
  letter-spacing: 0.04em;
}

.includes ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.specs-table th,
.specs-table td {
  text-align: left;
  padding: 0.55rem 0.35rem;
  border-bottom: 1px solid var(--line);
}

.specs-table th {
  color: var(--muted);
  font-weight: 500;
  width: 40%;
}

.product-long {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.related-section {
  padding-top: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  border-top: 3px solid var(--red);
}

.step .n {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step h3 {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  font-family: var(--display);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-card h3 {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  font-family: var(--display);
  letter-spacing: 0.03em;
}

.contact-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(245, 245, 245, 0.8);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
  border-top: 4px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: var(--orange);
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--display);
}

.site-footer a {
  display: block;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand .logo img {
  height: 52px;
  max-width: 240px;
  /* Wordmark 2024 já vem com fundo escuro — sem caixa branca */
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  max-width: 22rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  opacity: 0.7;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

.img-error {
  background: #ddd !important;
}

/* ---------- Mobile CTA fina (só total + ação; não ocupa metade da tela) ---------- */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 960px) {
  .mobile-cta-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: fixed;
    left: 0.65rem;
    right: 0.65rem;
    bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
    z-index: 180;
    padding: 0.45rem 0.55rem 0.45rem 0.75rem;
    background: rgba(10, 10, 10, 0.94);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    max-width: 420px;
    margin-inline: auto;
  }

  .mobile-cta-bar[hidden] {
    display: none !important;
  }

  .mobile-cta-bar .mcta-info {
    flex: 1;
    min-width: 0;
  }

  .mobile-cta-bar .mcta-label {
    display: none; /* mais compacto: só total */
  }

  .mobile-cta-bar .mcta-total {
    display: block;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-cta-bar .mcta-meta {
    display: none;
  }

  .mobile-cta-bar .btn {
    flex-shrink: 0;
    min-height: 40px;
    padding: 0.45rem 0.85rem;
    font-size: 0.72rem;
    border-radius: 999px;
    max-width: none;
  }

  /* Um único botão primário na barra; esconde o segundo se houver */
  .mobile-cta-bar .btn + .btn,
  .mobile-cta-bar .btn + a.btn {
    display: none;
  }

  .mobile-cta-bar .btn-whatsapp {
    background: #25d366;
    color: #fff;
  }

  body.has-mobile-cta {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  body.has-mobile-cta .site-footer {
    padding-bottom: 0.5rem;
  }
}

/* Mobile layout */
@media (max-width: 960px) {
  .site-header {
    position: sticky;
  }

  /* Grid 3 colunas: menu | logo central | ações */
  .header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .logo,
  .logo.logo-custom {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    z-index: 1;
  }

  .logo img,
  .logo.logo-custom img {
    height: 40px;
    max-width: 180px;
    margin-inline: auto;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin-left: 0;
    order: unset;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    order: unset;
    gap: 0.35rem;
  }

  .hero-grid,
  .proof-grid,
  .product-detail,
  .product-long,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .path-grid,
  .product-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    position: static;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.25rem 1rem;
    gap: 0;
    grid-column: 1 / -1;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Conta e Carrinho visíveis no mobile (não duplicados no nav de texto) */
  .header-actions .acc-hello {
    display: none;
  }
  .header-actions .btn-ghost.header-account {
    display: inline-flex;
  }

  .header-actions .btn-sm {
    min-height: 40px;
  }

  .hero-visual {
    min-height: 280px;
  }

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

  .promo-bar {
    font-size: 0.72rem;
    line-height: 1.35;
    padding: 0.5rem 0.75rem;
  }

  .promo-bar .sep {
    margin: 0 0.25rem;
  }

  .btn {
    min-height: 44px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .path-grid,
  .product-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  .card-actions {
    flex-direction: column;
  }

  .card-actions .btn {
    width: 100%;
  }

  .mobile-cta-bar .btn {
    font-size: 0.72rem;
    padding: 0.65rem 0.75rem;
  }
}
