:root {
  --black: #151515;
  --black-2: #222222;
  --charcoal: #343434;
  --white: #ffffff;
  --paper: #f7f7f4;
  --muted: #6e6e68;
  --line: rgba(21, 21, 21, 0.12);
  --gold: #ffba08;
  --gold-2: #f2a900;
  --gold-soft: #fff1bd;
  --teal: #1b8f85;
  --green: #1f7a4f;
  --shadow: 0 24px 80px rgba(21, 21, 21, 0.18);
  --max: 1180px;
  --font: Inter, "Aptos", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 28px), var(--max));
  min-height: 76px;
  margin-top: 14px;
  padding: 10px 12px;
  color: var(--white);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.page-header,
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 58px rgba(21, 21, 21, 0.16);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: 236px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.site-header:not(.is-scrolled):not(.is-open):not(.page-header) .brand-logo {
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.36));
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), #ffd75d);
  box-shadow: 0 10px 26px rgba(255, 186, 8, 0.22);
  font-weight: 1000;
  font-size: 1.28rem;
}

.brand-name strong,
.brand-name small,
.footer-brand strong,
.footer-brand small {
  display: block;
  line-height: 1.04;
}

.brand-name strong,
.footer-brand strong {
  font-size: 1.06rem;
}

.brand-name small,
.footer-brand small {
  max-width: 150px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.76rem;
  font-weight: 850;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 850;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.page-header .main-nav a:hover,
.site-header.is-scrolled .main-nav a:hover,
.site-header.is-open .main-nav a:hover {
  background: rgba(255, 186, 8, 0.18);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-align: center;
}

.header-cta,
.btn.primary {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(255, 186, 8, 0.24);
}

.btn.primary.dark {
  color: var(--white);
  background: var(--black);
  box-shadow: none;
}

.btn.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
}

.btn.light {
  color: var(--black);
  border: 1px solid rgba(21, 21, 21, 0.14);
  background: rgba(255, 255, 255, 0.66);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
}

.home-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 120px 20px 58px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 68% center;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 186, 8, 0.28), transparent 26%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.98), rgba(18, 18, 18, 0.86) 48%, rgba(21, 21, 21, 0.22)),
    linear-gradient(180deg, rgba(21, 21, 21, 0.20), rgba(21, 21, 21, 0.82));
}

.hero-shell,
.section,
.final-cta,
.site-footer,
.trust-strip {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  align-items: end;
}

.hero-copy-block h1,
.landing-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 5.7vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy-block p:not(.eyebrow),
.landing-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-actions,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(21, 21, 21, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  margin-bottom: 18px;
}

.panel-list {
  display: grid;
  gap: 10px;
}

.panel-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: -28px;
  position: relative;
  z-index: 3;
}

.trust-strip span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(21, 21, 21, 0.08);
  font-weight: 850;
}

.section {
  padding: 86px 0 34px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 36px;
  align-items: end;
}

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

.section-heading h2,
.proof-band h2,
.final-cta h2,
.audience-band h2,
.signup-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.proof-band span,
.proof-band p,
.final-cta p,
.audience-band p,
.signup-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-grid,
.feature-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card,
.feature-grid article,
.service-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(21, 21, 21, 0.06);
}

.product-card.accent {
  background: linear-gradient(145deg, var(--gold), #ffd766);
}

.product-card.dark {
  color: var(--white);
  background: linear-gradient(145deg, var(--black), var(--charcoal));
}

.product-card svg,
.feature-grid svg,
.service-grid svg {
  width: 30px;
  height: 30px;
  color: var(--gold-2);
  stroke-width: 2.1;
}

.product-card.dark svg {
  color: var(--gold);
}

.product-card h3,
.feature-grid h3,
.service-grid h3,
.step-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.22rem;
}

.product-card p,
.feature-grid p,
.service-grid p,
.step-grid p {
  margin: 0;
  color: var(--muted);
}

.product-card.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 950;
}

.proof-band,
.audience-band,
.signup-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: center;
  padding: 46px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #2d2d2b);
  box-shadow: var(--shadow);
}

.proof-band .eyebrow,
.audience-band .eyebrow,
.signup-band .eyebrow {
  color: var(--gold);
}

.proof-band h2,
.audience-band h2,
.signup-band h2,
.signup-band p {
  color: var(--white);
}

.proof-grid {
  display: grid;
  gap: 12px;
}

.proof-grid div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 4px;
}

.journey {
  padding-top: 76px;
}

.store-band {
  padding-bottom: 50px;
}

.real-showcase {
  padding-top: 70px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 186, 8, 0.08), transparent 42%),
    var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.08fr repeat(2, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 14px;
}

.showcase-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 16px 42px rgba(21, 21, 21, 0.12);
}

.showcase-card.tall {
  grid-row: span 2;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.showcase-card:hover img {
  transform: scale(1.035);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.78));
}

.showcase-card div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--white);
}

.showcase-card strong,
.showcase-card span {
  display: block;
}

.showcase-card strong {
  font-size: 1.06rem;
}

.showcase-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
}

.instagram-call {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.step-grid article {
  min-height: 236px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-grid span {
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 950;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 52px;
  margin-bottom: 34px;
  padding: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #ffe08a);
  box-shadow: var(--shadow);
}

.final-cta > *,
.cta-stack {
  min-width: 0;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(21, 21, 21, 0.72);
}

.final-cta h2 {
  max-width: 780px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 30px 0 44px;
  color: var(--muted);
}

.site-footer .brand-symbol {
  width: 48px;
  height: 48px;
}

.site-footer .brand-logo {
  width: 250px;
  height: 72px;
}

.site-footer p {
  max-width: 440px;
  margin: 10px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 850;
}

.site-footer a:hover {
  color: var(--gold-2);
}

.contact-panel {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(21, 21, 21, 0.06);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.contact-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.contact-panel p:not(.eyebrow) {
  margin: 4px 0;
  color: var(--muted);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: min(100%, 420px);
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--black);
  background: var(--paper);
  font-weight: 900;
}

.social-links a:hover {
  background: var(--gold-soft);
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  width: min(calc(100% - 36px), 720px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(21, 21, 21, 0.94);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner a,
.cookie-banner button {
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--black);
  background: var(--gold);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.cookie-banner a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.legal-page {
  padding-top: 112px;
}

.legal-content {
  max-width: 920px;
  padding-bottom: 60px;
}

.legal-content h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.04;
}

.legal-content h2 {
  margin: 28px 0 8px;
  font-size: 1.22rem;
}

.legal-content p {
  margin: 8px 0;
  color: var(--muted);
}

.blog-page,
.admin-page {
  padding-top: 110px;
}

.blog-hero {
  max-width: 930px;
  padding-bottom: 30px;
}

.blog-hero h1,
.post-article h1,
.admin-panel h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  line-height: 1.02;
}

.blog-hero p:not(.eyebrow),
.post-meta,
.admin-panel p {
  color: var(--muted);
  font-size: 1.06rem;
}

.blog-list {
  padding-top: 24px;
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(21, 21, 21, 0.06);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card div {
  padding: 20px;
}

.blog-card span,
.post-meta {
  color: var(--gold-2);
  font-weight: 950;
}

.blog-card h2 {
  margin: 8px 0;
  font-size: 1.32rem;
  line-height: 1.12;
}

.blog-card p,
.blog-empty p {
  margin: 0;
  color: var(--muted);
}

.post-article {
  max-width: 900px;
}

.post-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  margin: 26px 0;
  box-shadow: var(--shadow);
}

.post-body {
  color: var(--black);
  font-size: 1.12rem;
}

.post-body p {
  margin: 0 0 18px;
}

.post-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.admin-shell {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto 50px;
}

.admin-panel,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(21, 21, 21, 0.08);
}

.admin-panel {
  padding: 28px;
}

.admin-logo {
  width: 280px;
  max-width: 100%;
  margin-bottom: 22px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.admin-card {
  padding: 22px;
  margin-top: 16px;
}

.admin-card h2 {
  margin: 0 0 14px;
}

.admin-form {
  display: grid;
  gap: 12px;
}

.admin-form label {
  display: grid;
  gap: 6px;
  color: var(--black);
  font-weight: 900;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  color: var(--black);
  background: #fbfbfb;
}

.admin-form textarea {
  resize: vertical;
}

.admin-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.admin-check input {
  width: auto;
}

.admin-alert {
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--black);
  background: var(--gold-soft);
  font-weight: 850;
}

.admin-alert.error {
  color: #8a1f11;
  background: #ffe2dc;
}

.admin-post-list {
  display: grid;
  gap: 10px;
}

.admin-post-list article {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.admin-post-list strong,
.admin-post-list span {
  display: block;
}

.admin-post-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.landing-hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 44px;
  align-items: center;
  padding: 140px max(20px, calc((100vw - var(--max)) / 2)) 62px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 186, 8, 0.20), transparent 26%),
    linear-gradient(135deg, var(--black), #2f2f2d);
}

.landing-hero.fiscal {
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 186, 8, 0.28), transparent 28%),
    linear-gradient(135deg, #171717, #3a3423);
}

.landing-hero.ponto {
  background:
    radial-gradient(circle at 78% 26%, rgba(31, 122, 79, 0.36), transparent 30%),
    linear-gradient(135deg, #121212, #29342e);
}

.mock-dashboard,
.login-preview {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mock-dashboard {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.dash-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.24);
}

.dash-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.dash-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.dash-card,
.dash-chart {
  min-height: 116px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.dash-card.gold {
  color: var(--black);
  background: var(--gold);
}

.dash-card strong,
.dash-card small {
  display: block;
}

.dash-card small {
  margin-top: 6px;
  opacity: 0.72;
}

.dash-chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 12px;
}

.dash-chart span {
  flex: 1;
  min-height: 36px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(255, 186, 8, 0.3));
}

.dash-chart span:nth-child(2) { min-height: 72px; }
.dash-chart span:nth-child(3) { min-height: 52px; }
.dash-chart span:nth-child(4) { min-height: 96px; }
.dash-chart span:nth-child(5) { min-height: 128px; }

.login-preview {
  width: min(100%, 390px);
  justify-self: center;
  padding: 34px;
  color: var(--black);
  background: var(--white);
}

.login-preview > svg {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  color: var(--gold);
}

.login-preview h2,
.login-preview p {
  text-align: center;
  margin: 0;
}

.login-preview h2 span {
  color: var(--gold-2);
}

.login-preview p {
  color: var(--muted);
  margin-bottom: 24px;
}

.input-line {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 14px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fafafa;
}

.login-preview a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  margin-top: 18px;
  border-radius: 8px;
  color: var(--black);
  background: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span {
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
}

.signup-band {
  background: linear-gradient(135deg, #151515, #24352e);
}

svg {
  width: 1.1em;
  height: 1.1em;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    width: calc(100% - 22px);
  }

  .brand-name small {
    max-width: 118px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .main-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-open .header-cta {
    width: 100%;
  }

  .hero-shell,
  .section-heading.split,
  .product-grid,
  .feature-grid,
  .service-grid,
  .showcase-grid,
  .blog-grid,
  .admin-grid,
  .proof-band,
  .audience-band,
  .signup-band,
  .step-grid,
  .final-cta,
  .landing-hero,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .landing-hero {
    min-height: auto;
  }

  .hero-panel {
    display: none;
  }

  .landing-hero {
    padding-top: 132px;
  }

  .mock-dashboard,
  .login-preview {
    width: 100%;
  }

  .showcase-grid {
    grid-auto-rows: 320px;
  }

  .showcase-card.tall {
    grid-row: span 1;
  }

  .social-links {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 66px;
  }

  .brand-logo {
    width: 188px;
    height: 46px;
  }

  .brand-name small {
    display: none;
  }

  .home-hero {
    padding-top: 108px;
  }

  .hero-actions,
  .cta-stack {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .header-cta {
    width: 100%;
    white-space: normal;
  }

  .proof-band,
  .audience-band,
  .signup-band,
  .final-cta,
  .contact-panel {
    padding: 24px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .instagram-call {
    flex-direction: column;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .dash-body {
    grid-template-columns: 1fr;
  }

  .dash-chart {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .admin-topbar,
  .admin-post-list article,
  .post-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-row-actions {
    justify-content: stretch;
  }
}

/* Premium Grupo Diamond refresh */
.premium-header {
  min-height: 68px;
}

.premium-header .brand-logo,
.site-header.page-header .brand-logo {
  width: 218px;
  height: 50px;
}

.premium-hero {
  width: min(calc(100% - 40px), 1240px);
  min-height: 720px;
  margin: 0 auto;
  padding: 118px 0 48px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.premium-hero__media {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.premium-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.premium-hero__content h1,
.product-copy h1 {
  margin: 0;
  max-width: 760px;
  color: var(--black);
  font-size: clamp(2.15rem, 4.2vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.premium-hero__content p:not(.eyebrow),
.product-copy p:not(.eyebrow),
.proof-copy p,
.editorial-band p,
.slim-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.compact-actions {
  margin-top: 24px;
}

.metric-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.metric-strip span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.05);
}

.metric-strip strong {
  display: block;
  color: var(--black);
}

.slim-heading h2 {
  font-size: clamp(1.8rem, 3.3vw, 2.9rem);
}

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

.business-card {
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(21, 21, 21, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.business-card img {
  max-width: 190px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
}

.business-card > svg {
  width: 42px;
  height: 42px;
  color: var(--gold-2);
  margin-bottom: 18px;
}

.business-card h3 {
  margin: auto 0 8px;
  font-size: 1.26rem;
}

.business-card p {
  margin: 0;
  color: var(--muted);
}

.business-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 950;
}

.fiscal-card {
  border-color: rgba(0, 71, 217, 0.22);
  background: linear-gradient(180deg, rgba(0, 92, 255, 0.07), var(--white) 48%);
}

.gestao-card,
.loja-card {
  background: linear-gradient(180deg, rgba(255, 186, 8, 0.10), var(--white) 48%);
}

.ponto-card {
  color: var(--white);
  border-color: rgba(21, 21, 21, 0.24);
  background: linear-gradient(145deg, #161616, #30302c);
}

.ponto-card p {
  color: rgba(255, 255, 255, 0.74);
}

.editorial-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: #151515;
}

.editorial-band h2,
.editorial-band p {
  color: var(--white);
}

.editorial-list {
  display: grid;
  gap: 10px;
}

.editorial-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.visual-proof {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.proof-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.proof-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 12px;
}

.proof-mosaic img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(21, 21, 21, 0.08);
}

.proof-mosaic img:first-child {
  grid-row: span 2;
  height: 532px;
}

.product-page {
  background: #f8f9fb;
}

.product-hero {
  width: min(calc(100% - 40px), 1240px);
  min-height: 700px;
  margin: 0 auto;
  padding: 132px 0 56px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: center;
}

.product-logo {
  width: min(260px, 72vw);
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.fiscal-logo {
  width: 235px;
}

.gestao-logo {
  width: 285px;
  padding: 16px;
  border-radius: var(--radius);
  background: #111;
}

.product-visual {
  position: relative;
}

.fiscal-stack {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: center;
}

.fiscal-stack img,
.single-shot img,
.loja-mosaic img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.fiscal-stack img:first-child {
  transform: translateY(28px);
}

.fiscal-stack img:last-child {
  transform: translateY(-20px);
}

.product-benefits {
  padding-top: 54px;
}

.premium-features article {
  min-height: 220px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 30px;
  align-items: center;
}

.product-showcase > img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-showcase h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.06;
}

.product-showcase p {
  color: var(--muted);
}

.fiscal-theme .eyebrow,
.fiscal-theme .product-card svg {
  color: #0057d9;
}

.fiscal-theme .btn.primary {
  color: #fff;
  background: #0057d9;
  box-shadow: 0 12px 30px rgba(0, 87, 217, 0.20);
}

.fiscal-ghost {
  color: #061a3d;
  border-color: rgba(0, 87, 217, 0.22);
  background: rgba(0, 87, 217, 0.06);
}

.gestao-hero {
  grid-template-columns: 0.9fr 1.1fr;
}

.single-shot img {
  max-height: 640px;
  object-position: top center;
}

.loja-hero {
  grid-template-columns: 0.9fr 1.1fr;
}

.loja-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 14px;
}

.loja-mosaic img {
  height: 520px;
}

.loja-mosaic img:last-child {
  height: 430px;
  align-self: end;
}

.ponto-hero {
  grid-template-columns: 0.9fr 1.1fr;
}

.ponto-screen {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.screen-sidebar {
  padding: 22px;
  color: #fff;
  background: #1f2428;
  display: grid;
  gap: 14px;
  align-content: start;
}

.screen-sidebar strong {
  color: var(--gold);
  margin-bottom: 10px;
}

.screen-content {
  padding: 24px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.screen-title {
  font-size: 1.55rem;
  font-weight: 950;
}

.screen-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.screen-kpis span,
.screen-table {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f9fb;
}

.screen-kpis strong {
  display: block;
  color: #1266ff;
  font-size: 1.6rem;
}

.screen-table {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.5fr;
  gap: 12px;
}

.screen-table span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

@media (max-width: 1080px) {
  .premium-hero,
  .product-hero,
  .visual-proof,
  .product-showcase,
  .editorial-band,
  .business-grid {
    grid-template-columns: 1fr;
  }

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

  .premium-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .premium-hero__media,
  .premium-hero__media img {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .premium-header .brand-logo,
  .site-header.page-header .brand-logo {
    width: 178px;
    height: 42px;
  }

  .premium-hero,
  .product-hero {
    width: min(calc(100% - 28px), 1240px);
    gap: 24px;
    padding-top: 104px;
  }

  .premium-hero__content h1,
  .product-copy h1 {
    font-size: clamp(2rem, 11vw, 2.75rem);
    line-height: 1.04;
  }

  .metric-strip,
  .business-grid,
  .fiscal-stack,
  .loja-mosaic,
  .proof-mosaic,
  .screen-kpis,
  .screen-table,
  .ponto-screen {
    grid-template-columns: 1fr;
  }

  .premium-hero__media,
  .premium-hero__media img {
    min-height: 330px;
  }

  .fiscal-stack img,
  .fiscal-stack img:first-child,
  .fiscal-stack img:last-child {
    transform: none;
  }

  .loja-mosaic img,
  .loja-mosaic img:last-child,
  .proof-mosaic img,
  .proof-mosaic img:first-child {
    height: auto;
    max-height: none;
  }

  .editorial-band,
  .final-cta {
    padding: 24px;
  }
}
