:root {
  --bg: #fcfaf7;
  --bg-soft: #f4f0eb;
  --surface: #ffffff;
  --surface-soft: #f8f6f2;
  --text: #2d2925;
  --muted: #746b61;
  --line: #e2ddd6;
  --primary: #fe6e00;
  --primary-strong: #d95c00;
  --primary-soft: #fff0df;
  --cta-primary: #ff5f00;
  --cta-primary-strong: #d94800;
  --dark: #211c18;
  --success: #167a3d;
  --shadow: 0 24px 70px rgba(45, 41, 37, 0.10);
  --radius: 8px;
  --container: 1180px;
  --font-primary: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-primary);
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-shell .container {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 247, 0.94);
  border-bottom: 1px solid rgba(226, 221, 214, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  padding: 10px 12px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--primary-soft);
  color: var(--primary-strong);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
}

.menu-toggle svg {
  margin: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 750;
  padding: 0 18px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: #c9bfb4;
  background: #fffaf4;
}

.btn-whatsapp {
  background: #1f7d47;
  color: #fff;
}

.hero {
  padding: 54px 0 38px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  font-weight: 850;
}

.hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.17rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.proof-item {
  border-left: 3px solid var(--primary);
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.proof-item strong {
  display: block;
  font-size: 1.05rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.hero-card-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  box-shadow: 0 14px 45px rgba(33, 28, 24, 0.16);
}

.hero-card-panel strong {
  display: block;
  font-size: 1rem;
}

.hero-card-panel span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 68px 0;
}

.section-soft {
  background: var(--bg-soft);
}

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

.section-dark .section-intro p,
.section-dark .muted,
.section-dark .feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-intro h2,
.page-section h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.section-intro p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

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

.feature-card,
.solution-card,
.blog-card,
.contact-panel,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}

.feature-card h3,
.solution-card h3,
.blog-card h3,
.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

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

.icon-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary-strong);
}

.solutions-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-card {
  min-height: 100%;
}

.solution-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.solution-card li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--primary);
}

.split {
  display: grid;
  align-items: center;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
}

.check-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 850;
}

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

.blog-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
}

.blog-card .category {
  color: var(--primary-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.blog-card a {
  margin-top: auto;
  color: var(--primary-strong);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-line {
  display: flex;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

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

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

.field label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8d0c7;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(254, 110, 0, 0.16);
  outline: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  display: none;
  border: 1px solid #b7dfc4;
  border-radius: var(--radius);
  background: #eefaf1;
  color: #145c30;
  padding: 12px;
}

.form-status.is-visible {
  display: block;
}

.page-hero {
  padding: 64px 0 40px;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.page-section {
  padding: 42px 0;
}

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

.article {
  width: min(100% - 32px, 780px);
  margin: 0 auto;
  padding: 54px 0 72px;
}

.article h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.08;
}

.article-meta {
  margin: 16px 0 32px;
  color: var(--muted);
}

.article h2 {
  margin-top: 36px;
  font-size: 1.65rem;
}

.article p,
.article li {
  color: #4f4740;
  font-size: 1.06rem;
}

.article a {
  color: var(--primary-strong);
  font-weight: 800;
}

.site-footer {
  background: #17130f;
  color: #fff;
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.65fr));
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 12px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.legal-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.muted {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

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

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .section-intro {
    display: grid;
  }

  .feature-grid,
  .blog-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .site-shell .container {
    width: calc(100% - 24px);
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand span {
    font-size: 0.78rem;
  }

  .hero-proof,
  .feature-grid,
  .solutions-grid,
  .blog-grid,
  .value-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 340px;
  }

  .section {
    padding: 46px 0;
  }

  .legal-bar {
    display: grid;
  }
}

/* Reference-style Home, matching the approved full-page visual. */
.reference-home {
  --bg: #ffffff;
  --bg-soft: #fbfaf8;
  --surface: #ffffff;
  --text: #080a24;
  --muted: #5e6072;
  --line: #e5e2dc;
  --primary: #c27a00;
  --primary-strong: #b36d00;
  --primary-soft: #fff7ea;
  --shadow: 0 16px 40px rgba(17, 20, 42, 0.08);
  background: #fff;
  color: var(--text);
}

.reference-home .site-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e9e6df;
  box-shadow: 0 2px 10px rgba(17, 20, 42, 0.03);
}

.reference-home .nav {
  min-height: 70px;
}

.brand-wordmark {
  gap: 0;
}

.brand-wordmark img {
  width: 76px;
  height: 58px;
  object-fit: contain;
  border-radius: 0;
}

.reference-home .nav-links {
  gap: 34px;
}

.reference-home .nav-links a {
  padding: 8px 0;
  color: #090b25;
  font-size: 0.88rem;
  font-weight: 700;
}

.reference-home .nav-links a:hover,
.reference-home .nav-links a[aria-current="page"] {
  background: transparent;
  color: var(--primary-strong);
}

.reference-home .btn {
  min-height: 44px;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 800;
}

.reference-home .btn-primary {
  background: linear-gradient(180deg, #d28a06 0%, #bd7300 100%);
  border-color: #b66f00;
  color: #fff;
  box-shadow: 0 8px 18px rgba(194, 122, 0, 0.18);
}

.reference-home .btn-secondary {
  background: #fff;
  border-color: var(--primary-strong);
  color: var(--primary-strong);
}

.btn-wa {
  min-width: 220px;
}

.btn-whatsapp-brand {
  border-color: #1fb85d;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp-brand:hover {
  border-color: #1daa55;
  background: #1fb85d;
  color: #fff;
}

.wa-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ref-hero {
  overflow: hidden;
  min-height: 0;
  border-bottom: 1px solid #ece8df;
  background: linear-gradient(90deg, #fff 0%, #fff 49%, #f6f4f0 49%, #fff 100%);
}

.ref-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: stretch;
  min-height: 460px;
}

.ref-hero-copy {
  min-width: 0;
  padding: 38px 44px 30px 0;
}

.ref-hero-copy h1 {
  max-width: 610px;
  margin: 0;
  color: #070921;
  font-size: clamp(2.05rem, 3.52vw, 3.25rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 560px;
  margin: 16px 0 0;
  color: #1e2438;
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero-plan-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 100%;
  margin-top: 18px;
}

.hero-plan {
  display: grid;
  gap: 5px;
  min-width: 0;
  min-height: 94px;
  border: 1px solid #e5dfd4;
  border-radius: 6px;
  padding: 14px 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 20, 42, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-plan:hover {
  border-color: rgba(194, 122, 0, 0.55);
  box-shadow: 0 14px 30px rgba(17, 20, 42, 0.09);
  transform: translateY(-1px);
}

.hero-plan strong {
  color: #080a24;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.15;
}

.hero-plan span {
  color: #4d5268;
  font-size: 0.8rem;
  line-height: 1.4;
}

.hero-plan.is-pro {
  border-left: 4px solid #c27a00;
}

.hero-plan.is-simple {
  border-left: 4px solid #2478d8;
}

.hero-benefits {
  display: grid;
  gap: 8px;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li,
.support-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: start;
}

.hero-benefits p,
.support-list p {
  margin: 0;
  color: #0f132b;
  font-size: 0.8rem;
  line-height: 1.42;
}

.line-icon,
.feature-icon {
  display: inline-grid;
  color: var(--primary-strong);
  place-items: center;
}

.line-icon svg,
.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ref-hero .hero-actions {
  flex-wrap: wrap;
  margin-top: 18px;
}

.ref-hero .btn {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.86rem;
}

.ref-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  margin-right: 0;
}

.ref-hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 150px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.88) 28%, rgba(255,255,255,0.34) 62%, rgba(255,255,255,0) 100%);
}

.ref-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.ref-section {
  padding: 42px 0;
}

.ref-section h2,
.contact-light h2 {
  margin: 0;
  color: #080a24;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 850;
  line-height: 1.15;
}

.ref-features {
  background: #fff;
  text-align: center;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.feature-strip article {
  padding: 0 10px;
}

.feature-strip .feature-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
}

.feature-strip .feature-icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.55;
}

.feature-strip h3 {
  margin: 0 0 9px;
  color: #080a24;
  font-size: 1rem;
  font-weight: 850;
}

.feature-strip p {
  margin: 0 auto;
  max-width: 160px;
  color: #40445a;
  font-size: 0.92rem;
  line-height: 1.6;
}

.center-title {
  text-align: center;
}

.solution-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}

.solution-showcase-card {
  display: grid;
  grid-template-columns: 44% 56%;
  overflow: hidden;
  min-height: 295px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 20, 42, 0.04);
}

.solution-showcase-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-showcase-card > div {
  padding: 32px 30px 26px;
}

.partner-logo {
  width: 158px;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.simplificado-logo {
  margin-bottom: 18px;
  color: #2478d8;
  font-size: 1.85rem;
  font-weight: 850;
  line-height: 1;
}

.solution-showcase-card p {
  margin: 0;
  color: #22263b;
  font-size: 0.98rem;
  line-height: 1.6;
}

.solution-showcase-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
}

.solution-showcase-card li {
  color: #1d2235;
  font-size: 0.92rem;
}

.solution-showcase-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--primary-strong);
  font-weight: 850;
}

.solution-showcase-card a,
.blog-head a,
.blog-preview-grid a {
  color: var(--primary-strong);
  font-weight: 850;
}

.support-section {
  background: #fff;
}

.support-grid {
  display: grid;
  grid-template-columns: 41% 1fr 190px;
  gap: 38px;
  align-items: center;
}

.support-photo {
  width: 100%;
  min-height: 270px;
  object-fit: cover;
  border-radius: 4px;
}

.support-copy h2 {
  max-width: 410px;
  margin-bottom: 22px;
}

.support-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list p {
  font-size: 0.9rem;
}

.support-numbers {
  display: grid;
  gap: 32px;
}

.support-numbers p {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  color: #080a24;
}

.support-numbers strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.support-numbers span {
  color: #35394d;
  font-size: 0.88rem;
}

.blog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

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

.blog-preview-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
  box-shadow: 0 18px 42px rgba(17, 20, 42, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.blog-preview-grid article:hover {
  border-color: #dcc27c;
  box-shadow: 0 24px 58px rgba(17, 20, 42, 0.11);
  transform: translateY(-3px);
}

.blog-preview-grid img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  background: #f4f0eb;
}

.blog-preview-grid article > *:not(img) {
  margin-right: 22px;
  margin-left: 22px;
}

.blog-preview-grid span {
  display: block;
  margin-top: 20px;
  color: #8f6500;
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-preview-grid h3 {
  margin-top: 11px;
  color: #080a24;
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.28;
}

.blog-preview-grid p {
  margin-top: 10px;
  color: #4b4f64;
  font-size: 0.95rem;
  line-height: 1.55;
}

.blog-preview-grid a {
  display: inline-block;
  margin-top: auto;
  margin-bottom: 24px;
  padding-top: 20px;
  color: #9a6500;
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-light {
  padding: 46px 0 34px;
  background: #fff;
}

.contact-light-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.contact-light p {
  max-width: 430px;
  color: #41465d;
  font-size: 0.98rem;
}

.btn-outline-wa {
  margin-top: 18px;
  min-width: 244px;
}

.compact-form {
  gap: 12px;
}

.compact-form input,
.compact-form textarea {
  width: 100%;
  min-height: 37px;
  border: 1px solid #d9d6cf;
  border-radius: 3px;
  padding: 9px 12px;
  color: #080a24;
  font-size: 0.9rem;
}

.compact-form textarea {
  min-height: 92px;
  resize: vertical;
}

.compact-form button {
  width: 100%;
  min-height: 38px;
}

.ref-footer {
  background: #f8f7f4;
  color: #080a24;
  padding: 30px 0 12px;
}

.ref-footer .footer-grid {
  grid-template-columns: 1.25fr 0.7fr 0.7fr 1fr;
  gap: 70px;
}

.ref-footer h4 {
  color: #080a24;
  font-size: 0.94rem;
}

.ref-footer p,
.ref-footer a {
  display: block;
  margin: 0 0 6px;
  color: #4a4e63;
  font-size: 0.88rem;
}

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

.footer-brand img {
  width: 86px;
  height: 70px;
  background: #fff;
}

.footer-copy {
  margin-top: 26px;
  color: #686c7c;
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 760px) {
  .reference-home .nav-links {
    gap: 0;
  }

  .btn-wa {
    min-width: 0;
  }

  .ref-hero {
    background: #fff;
  }

  .ref-hero-grid,
  .solution-showcase,
  .support-grid,
  .contact-light-grid {
    grid-template-columns: 1fr;
  }

  .ref-hero-copy {
    padding: 34px 0 20px;
  }

  .ref-hero-media {
    min-height: auto;
    margin-right: 0;
    border-radius: 6px;
    overflow: hidden;
  }

  .ref-hero-media::before {
    display: none;
  }

  .ref-hero-media img {
    min-height: 360px;
  }

  .hero-proof-card {
    right: 14px;
    bottom: 14px;
    max-width: min(280px, calc(100% - 28px));
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-numbers {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1180px) and (min-width: 761px) {
  .ref-hero-media {
    margin-right: 0;
  }
}

@media (max-width: 680px) {
  .brand-wordmark img {
    width: 66px;
    height: 52px;
  }

  .reference-home .nav-actions .btn {
    display: none;
  }

  .ref-hero-grid {
    min-height: 0;
  }

  .ref-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 10vw, 2.38rem);
    line-height: 1.04;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-plan-switch {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-plan {
    min-height: 0;
    padding: 12px 14px;
  }

  .hero-benefits {
    gap: 7px;
    margin-top: 16px;
  }

  .hero-benefits li,
  .support-list li {
    grid-template-columns: 30px 1fr;
  }

  .ref-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ref-hero .btn {
    width: 100%;
    justify-content: center;
    padding: 0 12px;
    white-space: normal;
    text-align: center;
  }

  .ref-hero-media img {
    min-height: 300px;
  }

  .feature-strip,
  .blog-preview-grid,
  .support-numbers,
  .form-row {
    grid-template-columns: 1fr;
  }

  .solution-showcase-card {
    grid-template-columns: 1fr;
  }

  .solution-showcase-card > img {
    height: 210px;
  }

  .ref-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.product-page {
  background: #fff;
}

/* Premium home refresh - 2026-06-27 */
.premium-home {
  --premium-bg: #f7f8f5;
  --premium-surface: #ffffff;
  --premium-text: #111827;
  --premium-muted: #5f6673;
  --premium-line: #dce1dd;
  --premium-orange: #fe6e00;
  --premium-orange-dark: #c74f00;
  --premium-green: #17834d;
  --premium-blue: #224f8f;
  --premium-dark: #11151d;
  --premium-shadow: 0 28px 80px rgba(17, 24, 39, 0.14);
  margin: 0;
  color: var(--premium-text);
  background: var(--premium-bg);
  font-family: Manrope, sans-serif;
  letter-spacing: 0;
}

.premium-home .material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 450, 'GRAD' 0, 'opsz' 24;
}

.premium-container {
  width: min(1390px, calc(100% - 140px));
  margin: 0 auto;
}

.premium-home nav > div {
  width: min(1390px, calc(100% - 140px));
  max-width: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.tagse-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--cta-primary, #ff5f00);
  border-radius: 8px;
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  background: var(--cta-primary, #ff5f00);
  box-shadow: 0 12px 28px rgba(255, 95, 0, 0.22);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.tagse-header-cta:hover {
  color: #fff;
  background: var(--cta-primary-strong, #d94800);
  transform: translateY(-1px);
}

.tagse-wordmark {
  display: grid;
  min-width: 135px;
  color: #121212;
  line-height: 0.86;
  text-decoration: none;
}

.tagse-wordmark strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0;
}

.tagse-wordmark strong span {
  color: var(--premium-orange, #fe6e00);
}

.tagse-wordmark small {
  margin-left: 69px;
  color: #171717;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-hero {
  position: relative;
  height: 520px;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  color: var(--premium-text);
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 52%, #f2f3ef 52%, #ffffff 100%);
}

.premium-hero__media {
  position: relative;
  align-self: stretch;
  height: 520px;
  min-height: 520px;
  margin-right: -56px;
  overflow: hidden;
}

.premium-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(580px, 0.96fr);
  align-items: stretch;
  gap: 28px;
  height: 520px;
  min-height: 520px;
  padding: 80px 0 0;
}

.premium-hero__copy {
  align-self: start;
  max-width: 650px;
  padding-top: 54px;
  padding-bottom: 0;
}

.premium-hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.premium-hero h1 span {
  display: block;
  color: var(--premium-orange);
}

.premium-hero__lead {
  max-width: 540px;
  margin: 22px 0 0;
  color: #2c3440;
  font-size: 17px;
  line-height: 1.58;
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.premium-btn--primary {
  background: var(--cta-primary, #ff5f00);
  color: #fff;
  box-shadow: 0 18px 38px rgba(255, 95, 0, 0.26);
}

.premium-btn--primary:hover {
  background: var(--cta-primary-strong, #d94800);
}

.premium-btn--whatsapp {
  border-color: var(--cta-primary, #ff5f00);
  background: var(--cta-primary, #ff5f00) !important;
  color: #fff !important;
  box-shadow: 0 18px 38px rgba(255, 95, 0, 0.26) !important;
}

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

.premium-hero__signals p {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 2px 12px;
  margin: 0;
  color: #111827;
}

.premium-hero__signals .material-symbols-outlined {
  grid-row: span 2;
  color: #111827;
  font-size: 27px;
}

.premium-hero__signals strong {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.premium-hero__signals small {
  color: var(--premium-muted);
  font-size: 11px;
  line-height: 1.35;
}

.premium-hero__media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 150px;
  content: "";
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.88) 32%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.premium-hero__media img {
  width: 100%;
  height: 520px;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.premium-partner {
  border-block: 1px solid var(--premium-line);
  background: linear-gradient(180deg, #fff 0%, #fafaf8 100%);
}

.premium-partner__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  padding: 20px 0 18px;
}

.premium-partner span {
  display: block;
  margin-bottom: 8px;
  color: #7c828c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-partner img {
  width: 180px;
  max-width: 100%;
  height: auto;
}

.premium-partner h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.premium-partner p {
  margin: 6px 0 12px;
  color: var(--premium-muted);
  font-size: 14px;
}

.premium-partner a {
  color: var(--premium-orange-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.premium-solutions-band {
  background: #fff;
  border-bottom: 1px solid var(--premium-line);
}

.premium-solution-layout {
  display: grid;
  grid-template-columns: 0.58fr 1fr 1fr;
  min-height: 214px;
}

.premium-solution-layout > * {
  border-right: 1px solid var(--premium-line);
  padding: 28px 36px 24px;
}

.premium-solution-layout > *:last-child {
  border-right: 0;
}

.premium-solution-intro h2 {
  margin: 0;
  max-width: 300px;
  color: var(--premium-text);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.12;
}

.premium-solution-intro h2 span {
  color: var(--premium-orange);
}

.premium-solution-intro {
  padding-left: 4px;
}

.premium-solution-intro p {
  max-width: 305px;
}

.premium-solution-intro p,
.premium-solution-card p {
  margin: 14px 0 0;
  color: #394150;
  font-size: 13px;
  line-height: 1.48;
}

.premium-solution-intro a,
.premium-solution-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--premium-orange-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.premium-solution-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 22px;
  align-items: center;
}

.premium-solution-card strong {
  display: block;
  color: var(--premium-text);
  font-size: 18px;
  font-weight: 800;
}

.premium-solution-card strong::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  border: 6px solid var(--premium-orange);
  border-radius: 50%;
  vertical-align: -5px;
}

.premium-solution-card img {
  width: 100%;
  max-height: 128px;
  object-fit: contain;
}

.premium-dark-band {
  background: radial-gradient(circle at 45% -10%, rgba(255,255,255,0.08), transparent 32%), #151a22;
  color: #fff;
}

.premium-dark-grid {
  display: grid;
  grid-template-columns: 0.82fr 0.72fr 0.72fr 0.72fr 0.65fr;
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding: 30px 0;
}

.premium-dark-intro h2 {
  margin: 0;
  max-width: 260px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
}

.premium-dark-intro p,
.premium-dark-grid small {
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  line-height: 1.45;
}

.premium-dark-intro p {
  margin: 12px 0 0;
  max-width: 290px;
}

.premium-dark-grid > p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  margin: 0;
}

.premium-dark-grid .material-symbols-outlined {
  grid-row: span 2;
  color: #fff;
  font-size: 34px;
}

.premium-dark-grid strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.premium-dark-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--premium-orange);
  border-radius: 6px;
  padding: 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.premium-section {
  padding: 82px 0;
}

.premium-section--intro {
  background: var(--premium-bg);
}

.premium-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.5fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.premium-section h2 {
  margin: 0;
  color: var(--premium-text);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
}

.premium-section__head p,
.premium-support__grid > div > p,
.premium-contact p,
.premium-method > div:first-child p {
  margin: 0;
  color: var(--premium-muted);
  font-size: 17px;
  line-height: 1.68;
}

.premium-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.premium-product {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 420px;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.07);
}

.premium-product--pro {
  border-top: 5px solid var(--premium-orange);
}

.premium-product--simple {
  border-top: 5px solid var(--premium-blue);
}

.premium-product__mark {
  color: var(--premium-orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-product h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
}

.premium-product p {
  margin: 0;
  color: var(--premium-muted);
  font-size: 16px;
  line-height: 1.65;
}

.premium-product ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-product li {
  color: #293241;
  font-size: 15px;
}

.premium-product li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--premium-orange);
  transform: translateY(-1px);
}

.premium-product a,
.premium-link {
  color: var(--premium-orange-dark);
  font-weight: 800;
  text-decoration: none;
}

.premium-section--dark {
  background: var(--premium-dark);
  color: #fff;
}

.premium-method {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.7fr);
  gap: 64px;
  align-items: start;
}

.premium-method h2 {
  color: #fff;
}

.premium-method > div:first-child p {
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
}

.premium-method__steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
}

.premium-method__steps p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 16px;
  margin: 0;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.55;
}

.premium-method__steps span {
  grid-row: span 2;
  color: var(--premium-orange);
  font-weight: 800;
}

.premium-method__steps strong {
  color: #fff;
  font-size: 16px;
}

.premium-support {
  background: #fff;
}

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

.premium-support img {
  width: 100%;
  min-height: 430px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--premium-shadow);
}

.premium-support__grid h2,
.premium-contact h2 {
  max-width: 620px;
}

.premium-support__grid > div > p {
  margin-top: 18px;
  max-width: 620px;
}

.premium-support__list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.premium-support__list p {
  display: grid;
  gap: 5px;
  margin: 0;
  border-left: 3px solid var(--premium-orange);
  padding-left: 18px;
}

.premium-support__list strong {
  font-size: 15px;
  font-weight: 800;
}

.premium-support__list span {
  color: var(--premium-muted);
  font-size: 14px;
  line-height: 1.5;
}

.premium-contact {
  background: #eef1ed;
}

.premium-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: start;
}

.premium-contact p {
  margin-top: 18px;
  max-width: 500px;
}

.premium-link {
  display: inline-block;
  margin-top: 24px;
}

.premium-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--premium-line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.1);
}

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

.premium-form label {
  display: grid;
  gap: 7px;
  color: #293241;
  font-size: 13px;
  font-weight: 800;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd6d2;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--premium-text);
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  outline: none;
}

.premium-form textarea {
  min-height: 94px;
  resize: vertical;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  border-color: var(--premium-orange);
  box-shadow: 0 0 0 3px rgba(254, 110, 0, 0.16);
}

.premium-form__status {
  color: var(--premium-green);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 960px) {
  .premium-container {
    width: min(100% - 32px, 1180px);
  }

  .premium-home nav > div {
    width: calc(100% - 32px);
  }

  .premium-hero,
  .premium-hero__content {
    height: auto;
    min-height: 0;
  }

  .premium-hero {
    background: #fff;
  }

  .premium-hero__content,
  .premium-section__head,
  .premium-method,
  .premium-support__grid,
  .premium-contact__grid {
    grid-template-columns: 1fr;
  }

  .premium-hero__content {
    padding: 116px 0 32px;
  }

  .premium-hero__copy {
    align-self: end;
    padding-bottom: 0;
  }

  .premium-hero h1 {
    font-size: 46px;
  }

  .premium-hero__lead {
    font-size: 18px;
  }

  .premium-hero__media {
    height: auto;
    min-height: 360px;
    margin-right: 0;
    border-radius: 8px;
  }

  .premium-hero__media::before {
    display: none;
  }

  .premium-hero__media img {
    height: auto;
    min-height: 360px;
  }

  .premium-hero__signals,
  .premium-partner__grid,
  .premium-solution-layout,
  .premium-dark-grid {
    grid-template-columns: 1fr;
  }

  .premium-solution-layout > * {
    border-right: 0;
    border-bottom: 1px solid var(--premium-line);
  }

  .premium-solution-card {
    grid-template-columns: 1fr;
  }

  .premium-dark-grid {
    align-items: start;
  }

  .premium-products,
  .premium-form__row {
    grid-template-columns: 1fr;
  }

  .premium-section {
    padding: 58px 0;
  }

  .premium-section h2 {
    font-size: 32px;
  }

  .premium-product {
    min-height: 0;
  }

  .premium-support img {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .premium-hero__content {
    padding-top: 112px;
  }

  .premium-hero h1 {
    font-size: 38px;
  }

  .premium-hero__lead {
    font-size: 17px;
  }

  .premium-actions {
    display: grid;
  }

  .premium-btn {
    width: 100%;
  }

  .premium-product,
  .premium-form {
    padding: 22px;
  }

  .premium-hero__signals {
    gap: 14px;
  }
}

.product-hero {
  padding: 64px 0 54px;
  background:
    radial-gradient(circle at 16% 10%, rgba(194, 122, 0, 0.12), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
}

.product-hero-grid,
.product-modules-grid,
.product-compare-grid,
.related-products-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.product-hero-grid {
  align-items: center;
}

.product-kicker {
  margin: 0 0 14px;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-hero h1 {
  margin: 0;
  max-width: 790px;
  color: #080a24;
  font-size: clamp(2.2rem, 5.1vw, 4.15rem);
  font-weight: 880;
  line-height: 1.02;
}

.product-bullets {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  max-width: 690px;
  padding: 0;
  list-style: none;
}

.product-bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: #38394c;
  font-weight: 650;
}

.product-bullets span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-hero-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  background: #f6f2ec;
}

.product-card-body {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.product-card-body span {
  color: var(--primary-strong);
  font-size: 0.88rem;
  font-weight: 850;
}

.product-card-body strong {
  color: #080a24;
  font-size: 1.18rem;
}

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

.product-section {
  padding: 64px 0;
}

.product-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 830px;
}

.product-section h2 {
  margin: 0;
  color: #080a24;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
  font-weight: 850;
}

.product-section-head p,
.product-modules p,
.product-compare p,
.related-products p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.product-feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(17, 20, 42, 0.04);
}

.product-feature-grid h3,
.product-compare h3 {
  margin: 14px 0 8px;
  color: #080a24;
  font-size: 1.08rem;
  font-weight: 850;
}

.product-feature-grid p,
.product-compare li,
.product-faq p {
  margin: 0;
  color: var(--muted);
}

.product-modules {
  background: #17130f;
  color: #fff;
}

.product-modules h2,
.product-modules p {
  color: #fff;
}

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

.module-list span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 760;
  padding: 10px 14px;
}

.product-compare {
  background: #fbfaf8;
}

.product-compare-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
}

.product-compare ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.faq-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}

.faq-grid summary {
  cursor: pointer;
  color: #080a24;
  font-weight: 850;
}

.faq-grid p {
  padding-top: 12px;
}

.related-products {
  background: #fbfaf8;
}

.related-products-grid {
  align-items: stretch;
  grid-template-columns: 1fr repeat(2, minmax(0, 0.82fr));
}

.related-products-grid a {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.related-products-grid a:hover {
  border-color: #d9b572;
  transform: translateY(-2px);
}

.related-products-grid span {
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 850;
}

.related-products-grid strong {
  color: #080a24;
  font-size: 1.14rem;
}

.related-products-grid small {
  color: var(--muted);
  font-size: 0.93rem;
}

.product-link-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #080a24;
  font-weight: 800;
  padding: 12px 14px;
}

.product-link-grid a:hover {
  border-color: #d9b572;
  color: var(--primary-strong);
}

@media (max-width: 900px) {
  .product-hero-grid,
  .product-modules-grid,
  .product-compare-grid,
  .related-products-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .product-hero {
    padding: 44px 0 36px;
  }

  .product-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
    line-height: 1.08;
  }

  .product-hero-card img {
    height: 250px;
  }

  .product-section {
    padding: 46px 0;
  }

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

.premium-page {
  --page-orange: #ff5f00;
  --page-orange-dark: #d94800;
  --page-text: #0d1320;
  --page-muted: #536071;
  --page-line: #e4e7ec;
  --page-soft: #f6f7f8;
  --page-dark: #151a22;
  background: #fff;
  color: var(--page-text);
  font-family: var(--font-primary);
}

body > nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 80px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  backdrop-filter: blur(16px);
}

body > nav > div {
  display: flex;
  width: min(1390px, calc(100% - 140px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
}

#main-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

#main-nav-links a {
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

#main-nav-links a:hover,
#main-nav-links a.text-brand-vivid {
  color: var(--cta-primary, #ff5f00);
}

#main-nav-links a[aria-current="page"] {
  color: var(--cta-primary, #ff5f00);
  border-bottom: 2px solid var(--cta-primary, #ff5f00);
}

.tagse-main-nav.is-open a.text-brand-vivid,
.tagse-main-nav.is-open a[aria-current="page"] {
  color: var(--cta-primary, #ff5f00) !important;
}

body > nav .tagse-header-cta {
  display: inline-flex;
}

body > footer {
  border-top: 1px solid rgba(255,255,255,0.10);
  background: #020617;
  color: #fff;
  padding: 56px 0;
}

body > footer > div:first-child {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 32px;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

body > footer a {
  color: inherit;
  text-decoration: none;
}

body > footer h4 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body > footer ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body > footer li,
body > footer p {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.6;
}

body > footer .btn-especialista {
  width: fit-content;
}

body > footer > div:last-child {
  display: flex;
  width: min(1280px, calc(100% - 48px));
  justify-content: space-between;
  gap: 16px;
  margin: 48px auto 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  color: rgba(255,255,255,0.42);
  font-size: 14px;
}

@media (max-width: 1180px) {
  body > nav > div {
    width: min(100% - 40px, 1060px);
  }

  #main-nav-links {
    gap: 18px;
  }

}

@media (max-width: 920px) {
  #main-nav-links {
    display: none;
  }

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

  body > nav .tagse-header-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  body > nav > div,
  body > footer > div:first-child,
  body > footer > div:last-child {
    width: calc(100% - 32px);
  }

  body > footer > div:first-child {
    grid-template-columns: 1fr;
  }

  body > footer > div:last-child {
    flex-direction: column;
  }
}

.premium-page * {
  box-sizing: border-box;
}

.premium-page main {
  overflow: hidden;
  padding-top: 80px;
}

.premium-page-wrap {
  width: min(1390px, calc(100% - 140px));
  margin: 0 auto;
}

.premium-page-hero {
  position: relative;
  isolation: isolate;
  min-height: min(620px, calc(100svh - 80px));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
  padding: clamp(34px, 5vw, 58px) max(24px, calc((100vw - 1390px) / 2));
  border-bottom: 1px solid var(--page-line);
  background: linear-gradient(90deg, #fff 0%, #fff 48%, #f4f6f7 48%, #f4f6f7 100%);
}

.premium-page-hero > .premium-page-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.premium-page-hero__copy {
  align-self: center;
  min-width: 0;
  padding: 0;
}

.premium-page-kicker {
  margin: 0 0 16px;
  color: var(--page-orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-page-hero h1,
.premium-legal-hero h1 {
  font-family: var(--font-primary);
  margin: 0;
  max-width: 720px;
  color: var(--page-text);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.premium-page-hero h1 span,
.premium-legal-hero h1 span,
.premium-page-section h2 span {
  color: var(--page-orange);
}

.premium-page-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.62;
}

.premium-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.premium-page-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--page-orange);
  border-radius: 6px;
  padding: 0 24px;
  color: var(--page-text);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.premium-page-btn--primary {
  background: var(--cta-primary, #ff5f00);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 95, 0, 0.22);
}

.premium-page-btn--primary:hover {
  background: var(--cta-primary-strong, #d94800);
}

.premium-page-btn--dark {
  border-color: var(--page-orange);
  background: transparent;
  color: #fff;
}

.premium-page-hero__media {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
  width: 100%;
  max-height: min(560px, calc(100svh - 140px));
}

.premium-page-hero__media img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-width: 100%;
  max-height: min(560px, calc(100svh - 140px));
  object-fit: cover;
}

.premium-page-hero__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.86) 24%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.premium-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
  max-width: 760px;
}

.premium-proof-row p,
.premium-slim-proof p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 12px;
  margin: 0;
  color: var(--page-muted);
  font-size: 12px;
  line-height: 1.35;
}

.premium-proof-row strong,
.premium-slim-proof strong {
  color: var(--page-text);
  font-size: 13px;
  font-weight: 900;
}

.premium-proof-row .material-symbols-outlined,
.premium-slim-proof .material-symbols-outlined {
  grid-row: span 2;
  color: var(--page-text);
  font-size: 27px;
}

.premium-page-strip {
  border-bottom: 1px solid var(--page-line);
  background: #fff;
}

.premium-page-strip__grid {
  display: grid;
  grid-template-columns: 0.68fr 1fr 1fr;
  min-height: 156px;
}

.premium-page-strip__grid > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--page-line);
  padding: 28px 36px;
}

.premium-page-strip__grid > *:last-child {
  border-right: 0;
}

.premium-page-strip small {
  color: #737b88;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.premium-page-strip strong {
  margin-top: 6px;
  color: var(--page-text);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.premium-page-strip p {
  max-width: 440px;
  margin: 8px 0 0;
  color: var(--page-muted);
  font-size: 13px;
  line-height: 1.5;
}

.premium-page-section {
  padding: 76px 0;
  background: #fff;
}

.premium-page-section--soft {
  background: var(--page-soft);
  border-top: 1px solid var(--page-line);
  border-bottom: 1px solid var(--page-line);
}

.premium-page-section--dark {
  background: radial-gradient(circle at 45% -10%, rgba(255,255,255,0.08), transparent 32%), var(--page-dark);
  color: #fff;
}

.premium-section-head {
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

.premium-page-section h2 {
  font-family: var(--font-primary);
  margin: 0;
  color: inherit;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.premium-section-head p {
  max-width: 610px;
  margin: 0;
  color: var(--page-muted);
  font-size: 17px;
  line-height: 1.62;
}

.premium-page-section--dark .premium-section-head p,
.premium-page-section--dark .premium-page-card p,
.premium-page-section--dark .premium-page-list li {
  color: rgba(255,255,255,0.72);
}

.premium-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--page-line);
  border-left: 1px solid var(--page-line);
}

.premium-page-card {
  min-height: 240px;
  border-right: 1px solid var(--page-line);
  border-bottom: 1px solid var(--page-line);
  padding: 30px;
  background: #fff;
}

.premium-page-section--dark .premium-page-grid {
  border-color: rgba(255,255,255,0.12);
}

.premium-page-section--dark .premium-page-card {
  border-color: rgba(255,255,255,0.12);
  background: transparent;
}

.premium-page-card .material-symbols-outlined {
  margin-bottom: 20px;
  color: var(--page-orange);
  font-size: 34px;
}

.premium-page-card h3 {
  font-family: var(--font-primary);
  margin: 0;
  color: inherit;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

.premium-page-card p {
  margin: 14px 0 0;
  color: var(--page-muted);
  font-size: 14px;
  line-height: 1.58;
}

.premium-page-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--page-orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.premium-page-section--dark .premium-page-card a {
  color: #fff;
}

.premium-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.premium-editorial img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.premium-editorial-copy h2 {
  margin-bottom: 22px;
}

.premium-editorial-copy p {
  margin: 0 0 16px;
  color: var(--page-muted);
  font-size: 16px;
  line-height: 1.72;
}

.premium-page-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.premium-page-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--page-muted);
  font-size: 15px;
  line-height: 1.5;
}

.premium-page-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border: 4px solid var(--page-orange);
  border-radius: 999px;
}

.premium-product-hero {
  background: linear-gradient(90deg, #fff 0%, #fff 55%, #f6f7f8 55%, #f6f7f8 100%);
}

.premium-product-hero .premium-page-hero__media img {
  object-fit: contain;
  padding: clamp(24px, 4vw, 56px) clamp(18px, 3vw, 34px);
  width: auto;
  height: auto;
}

.premium-product-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--page-line);
  border-left: 1px solid var(--page-line);
}

.premium-product-card {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 24px;
  min-height: 270px;
  align-items: center;
  border-right: 1px solid var(--page-line);
  border-bottom: 1px solid var(--page-line);
  padding: 34px;
  background: #fff;
}

.premium-product-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.premium-product-card p {
  margin: 14px 0 0;
  color: var(--page-muted);
  font-size: 14px;
  line-height: 1.58;
}

.premium-product-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.premium-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.premium-product-meta span {
  border: 1px solid var(--page-line);
  border-radius: 999px;
  padding: 6px 10px;
  color: #344054;
  font-size: 11px;
  font-weight: 900;
}

.premium-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.premium-contact-panel {
  border: 1px solid var(--page-line);
  background: #fff;
  padding: 34px;
}

.premium-form {
  display: grid;
  gap: 16px;
}

.premium-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.premium-form label {
  display: grid;
  gap: 7px;
  color: var(--page-text);
  font-size: 12px;
  font-weight: 900;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  border: 1px solid var(--page-line);
  border-radius: 6px;
  background: #fff;
  color: var(--page-text);
  padding: 13px 14px;
  font-size: 14px;
  outline: none;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  border-color: var(--page-orange);
  box-shadow: 0 0 0 3px rgba(255, 95, 0, 0.12);
}

.premium-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
}

.premium-article-card {
  border-top: 1px solid var(--page-line);
  padding: 26px 0;
}

.premium-article-card h2,
.premium-article-card h3 {
  margin: 0;
  color: var(--page-text);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.premium-article-card p {
  margin: 12px 0 0;
  color: var(--page-muted);
  font-size: 15px;
  line-height: 1.62;
}

.premium-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--page-orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.premium-article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 0;
}

.premium-article-body h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.premium-article-body p {
  color: #344054;
  font-size: 18px;
  line-height: 1.82;
}

.premium-article-body h2 {
  margin: 46px 0 12px;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.premium-legal-hero {
  padding: 96px 0 54px;
  border-bottom: 1px solid var(--page-line);
  background: #fff;
}

.premium-legal-body {
  max-width: 860px;
  padding: 64px 0 86px;
}

.premium-legal-updated {
  margin: 0 0 28px;
  color: var(--page-orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.premium-legal-body h2 {
  margin: 34px 0 10px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.premium-legal-body p,
.premium-legal-body li {
  color: var(--page-muted);
  font-size: 16px;
  line-height: 1.75;
}

.premium-final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px 0;
}

.premium-final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.premium-final-cta p {
  margin: 12px 0 0;
  max-width: 650px;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 1100px) {
  .premium-page-wrap {
    width: min(100% - 40px, 960px);
  }

  .premium-page-hero,
  .premium-editorial,
  .premium-contact-layout,
  .premium-blog-layout,
  .premium-final-cta {
    grid-template-columns: 1fr;
  }

  .premium-page-hero {
    background: #fff;
    padding: 54px 20px 0;
  }

  .premium-page-hero__copy {
    padding: 0 0 36px;
  }

  .premium-page-hero__media {
    min-height: auto;
    max-height: 420px;
  }

  .premium-page-hero__media img {
    min-height: auto;
    max-height: 420px;
  }

  .premium-page-hero__media::before {
    display: none;
  }

  .premium-page-strip__grid,
  .premium-page-grid,
  .premium-product-matrix {
    grid-template-columns: 1fr;
  }

  .premium-page-strip__grid > *,
  .premium-page-card,
  .premium-product-card {
    border-right: 0;
  }

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

@media (max-width: 720px) {
  .premium-page-wrap {
    width: calc(100% - 32px);
  }

  .premium-page-hero h1,
  .premium-legal-hero h1 {
    font-size: 42px;
  }

  .premium-page-lede {
    font-size: 16px;
  }

  .premium-proof-row,
  .premium-form-row {
    grid-template-columns: 1fr;
  }

  .premium-page-section {
    padding: 58px 0;
  }

  .premium-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .premium-page-card,
  .premium-product-card,
  .premium-contact-panel {
    padding: 24px;
  }

  .premium-page-actions,
  .premium-final-cta {
    align-items: stretch;
  }

  .premium-page-btn {
    width: 100%;
  }
}
