:root {
  --green-900: #0d5d18;
  --green-800: #167514;
  --green-700: #158b21;
  --green-600: #12a825;
  --green-100: #e8f6e9;
  --green-050: #f4faf4;
  --yellow: #ffcf26;
  --ink: #172019;
  --text: #333b35;
  --muted: #657069;
  --white: #fff;
  --border: rgba(22, 117, 20, .16);
  --shadow-sm: 0 10px 28px rgba(22, 117, 20, .11);
  --shadow-lg: 0 24px 70px rgba(7, 55, 14, .19);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--green-800);
  text-underline-offset: .2em;
}

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

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 7vw, 3.75rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 5.8vw, 3.1rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 3.8vw, 1.45rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 760px);
}

.section {
  padding-block: 64px;
}

.section-compact {
  padding-block: 44px;
}

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

.section-green {
  color: rgba(255, 255, 255, .89);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 207, 38, .13), transparent 24rem),
    linear-gradient(135deg, var(--green-900), var(--green-700));
}

.section-green h2,
.section-green h3,
.section-green .eyebrow {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-green .section-heading p {
  color: rgba(255, 255, 255, .83);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green-800);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
  content: "";
}

.highlight {
  color: var(--green-600);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(22, 117, 20, .08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  flex: 0 1 218px;
  align-items: center;
}

.brand img {
  width: 218px;
  height: auto;
}

.menu-toggle {
  display: inline-grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before { top: -7px; }
.menu-toggle-lines::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 99;
  top: var(--header-height);
  right: 0;
  bottom: auto;
  left: 0;
  display: none;
  height: calc(100dvh - var(--header-height));
  min-height: min(34rem, calc(100dvh - var(--header-height)));
  padding: 22px 20px max(28px, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  background: linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(244, 250, 244, .94));
  box-shadow: 0 20px 48px rgba(7, 55, 14, .14);
  -webkit-backdrop-filter: blur(30px) saturate(120%);
  backdrop-filter: blur(30px) saturate(120%);
}

.site-nav.is-open {
  display: block;
}

.site-nav.has-overflow:not(.is-at-end)::after {
  position: fixed;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 76px;
  padding: 30px 20px 10px;
  align-items: end;
  justify-content: center;
  color: var(--green-800);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .95) 58%);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .03em;
  pointer-events: none;
  content: "Role para ver mais ↓";
}

body.menu-open .mobile-sticky,
body.menu-open .whatsapp-float {
  visibility: hidden;
}

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

.nav-list a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 10px;
  font-size: 1.04rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--green-800);
  background: var(--green-050);
}

.button.header-cta {
  display: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  background: var(--green-600);
  border: 2px solid var(--green-600);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--green-800);
  background: transparent;
  border-color: var(--green-800);
}

.button-secondary:hover {
  color: var(--white);
}

.button-white {
  color: var(--green-800);
  background: var(--white);
  border-color: var(--white);
}

.button-white:hover {
  color: var(--green-900);
  background: var(--green-100);
  border-color: var(--green-100);
}

.button-outline-white {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .78);
}

.button-outline-white:hover {
  color: var(--green-900);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  color: var(--green-800);
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.hero-support-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.hero-proof-link {
  display: inline-flex;
  min-height: 44px;
  padding: 6px 0;
  align-items: center;
  gap: 8px;
  color: var(--green-800);
  border-bottom: 1px solid currentColor;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  opacity: .82;
  transition: color .2s ease, opacity .2s ease;
}

.hero-proof-link::before {
  font-size: .78em;
  content: "\25B6";
}

.hero-proof-link:hover {
  color: var(--green-900);
  opacity: 1;
}

.hero .hero-proof-link {
  color: var(--white);
}

.hero .hero-proof-link:hover {
  color: var(--white);
}

.hero-copy .microproof-list,
.article-hero .microproof-list {
  margin-top: 18px;
}

.hero-copy .hero-proof-link,
.article-hero .hero-proof-link {
  margin-top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .88);
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 207, 38, .15), transparent 26rem),
    linear-gradient(140deg, #0b5c17 0%, #147e1d 58%, #12a825 100%);
}

.hero::before {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -170px;
  bottom: -190px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  padding-block: 54px 62px;
  gap: 34px;
}

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

.hero h1 {
  color: var(--white);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, .82);
}

.hero .lead {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(1.04rem, 3.9vw, 1.25rem);
}

.hero .button-row {
  margin-bottom: 18px;
}

.microproof-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  font-size: .9rem;
  font-weight: 700;
}

.microproof-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.microproof-list li::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  color: var(--green-900);
  background: var(--yellow);
  border-radius: 50%;
  font-size: .74rem;
  content: "✓";
}

.hero-visual {
  position: relative;
}

.hero-photo {
  width: 100%;
  max-height: 510px;
  object-fit: cover;
  object-position: center;
  border: 7px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  width: min(90%, 310px);
  margin: clamp(14px, 2vw, 20px) auto 0;
  padding: 15px 17px;
  color: var(--text);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  font-size: .9rem;
}

.hero-badge strong {
  display: block;
  margin-bottom: 2px;
  color: var(--green-800);
  font-size: 1rem;
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -22px;
}

.trust-grid {
  display: grid;
  padding: 20px;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 800;
}

.trust-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 50%;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

.card-icon {
  display: inline-grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 15px;
  font-size: 1.25rem;
  font-weight: 900;
}

.intent-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.intent-card .text-link {
  margin-top: auto;
}

.intent-card p {
  margin-bottom: 18px;
}

.pain-card {
  border-left: 5px solid var(--green-600);
}

.pain-card h3::before {
  margin-right: 7px;
  color: var(--green-600);
  content: "?";
}

.split {
  display: grid;
  align-items: center;
  gap: 32px;
}

.feature-photo {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-photo-contain {
  max-height: none;
  object-fit: contain;
}

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

.check-list li {
  position: relative;
  padding-left: 31px;
}

.check-list li::before {
  position: absolute;
  top: .18em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: var(--green-600);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
  content: "✓";
}

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

.step {
  position: relative;
  min-height: 100%;
  padding: 24px;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  counter-increment: steps;
}

.step::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--green-800);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
  content: counter(steps, decimal-leading-zero);
}

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

.topic-band {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  color: var(--white);
  background: var(--green-800);
  border-radius: var(--radius-md);
}

.topic-band h2,
.topic-band h3 {
  color: var(--white);
}

.topic-band p {
  color: rgba(255, 255, 255, .82);
}

.topic-band .eyebrow {
  color: var(--white);
}

.testimonial-card {
  overflow: hidden;
  padding: 0;
}

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

.video-lesson {
  width: min(100%, 940px);
  margin-inline: auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.video-lesson iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.testimonial-body {
  padding: 22px;
}

.testimonial-body .role {
  color: var(--green-800);
  font-size: .88rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: clip;
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 60px;
  padding: 17px 56px 17px 18px;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  right: 16px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 50%;
  content: "+";
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 20px;
  color: var(--muted);
}

.breadcrumb {
  padding-block: 14px;
  background: var(--green-050);
  border-bottom: 1px solid var(--border);
}

.breadcrumb ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  font-size: .86rem;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 7px;
  color: var(--muted);
  content: "/";
}

.article-hero {
  padding-block: 52px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 207, 38, .16), transparent 22rem),
    var(--green-050);
}

.article-hero-inner {
  display: grid;
  align-items: center;
  gap: 30px;
}

.article-hero h1 {
  font-size: clamp(2.1rem, 7vw, 4rem);
}

.article-hero .lead {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.1rem;
}

.article-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.article-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.definition-box {
  padding: 22px;
  background: var(--green-100);
  border-left: 5px solid var(--green-600);
  border-radius: var(--radius-sm);
}

.definition-box strong {
  color: var(--green-900);
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.comparison-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--white);
  background: var(--green-800);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.notice {
  padding: 17px 19px;
  color: #594a08;
  background: #fff8d8;
  border: 1px solid rgba(160, 127, 0, .22);
  border-radius: var(--radius-sm);
}

.cta-panel {
  display: grid;
  padding: 30px 24px;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, .86);
  background: linear-gradient(135deg, var(--green-900), var(--green-600));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-panel h2,
.cta-panel h3 {
  color: var(--white);
}

.cta-panel .cta-panel-highlight {
  color: var(--yellow);
}

.cta-panel .eyebrow {
  color: var(--white);
}

.site-footer {
  padding-block: 52px 96px;
  color: rgba(255, 255, 255, .73);
  background: #0d1710;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

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

.footer-title {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, .79);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contact {
  display: grid;
  margin-top: 20px;
  gap: 3px;
}

.footer-contact strong {
  color: var(--white);
  font-size: .86rem;
}

.footer-contact a {
  width: fit-content;
  min-height: 44px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
}

.footer-legal {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: .82rem;
}

.mobile-sticky {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
  gap: 8px;
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 28px rgba(0, 0, 0, .12);
  backdrop-filter: blur(10px);
}

.mobile-sticky .button {
  min-height: 48px;
  padding: 10px 14px;
  font-size: .88rem;
}

.mobile-sticky.is-hidden {
  display: none;
}

.nav-whatsapp {
  margin-top: 10px;
}

.nav-list .nav-whatsapp-link {
  justify-content: center;
  color: var(--white);
  background: var(--green-600);
}

.nav-list .nav-whatsapp-link:hover {
  color: var(--white);
  background: var(--green-800);
}

.whatsapp-float {
  position: fixed;
  z-index: 91;
  right: 16px;
  bottom: calc(78px + env(safe-area-inset-bottom));
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
  transition: opacity .2s ease, transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}

.whatsapp-float.is-hidden {
  display: none;
}

body[data-page="home"] .whatsapp-float {
  bottom: calc(136px + env(safe-area-inset-bottom));
}

.media-band {
  position: relative;
  margin-top: -48px;
  padding-block: 82px 38px;
  overflow: hidden;
  background: var(--green-050);
  border-bottom: 1px solid var(--border);
}

.media-band-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-band-heading {
  max-width: 760px;
}

.media-band-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 5vw, 2.15rem);
}

.media-band-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.media-motion-toggle {
  width: fit-content;
  min-height: 44px;
  padding: 8px 14px;
  flex: 0 0 auto;
  color: var(--green-800);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 800;
  white-space: nowrap;
}

.media-motion-toggle:hover {
  background: var(--green-100);
}

.media-marquee {
  width: 100%;
  margin-top: 26px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.media-track {
  display: flex;
  width: max-content;
  animation: media-scroll 42s linear infinite;
  will-change: transform;
}

.media-band.is-paused .media-track,
.media-band.is-offscreen .media-track,
.media-marquee:hover .media-track {
  animation-play-state: paused;
}

.media-group {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 0 26px 0 0;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.media-link {
  display: flex;
  width: 210px;
  min-height: 76px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .58);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.media-link:hover,
.media-link:focus-visible {
  background: rgba(255, 255, 255, .92);
  border-color: var(--border);
}

.media-link img {
  width: auto;
  max-width: 170px;
  max-height: 50px;
  opacity: .72;
  filter: grayscale(1) contrast(1.15);
  mix-blend-mode: multiply;
}

.media-link:hover img,
.media-link:focus-visible img {
  opacity: 1;
}

.media-link .media-logo-light {
  filter: grayscale(1) brightness(.3);
  mix-blend-mode: normal;
}

.media-link .media-logo-icon {
  max-width: 38px;
  max-height: 38px;
}

.media-publisher-name,
.media-text-logo {
  color: #566159;
  font-weight: 800;
  line-height: 1.15;
}

.media-publisher-name {
  max-width: 120px;
  font-size: .92rem;
}

.media-text-logo {
  font-size: 1.15rem;
  text-align: center;
}

.media-band.is-keyboard-mode .media-marquee,
.media-band.is-reduced-motion .media-marquee {
  padding-bottom: 10px;
  overflow-x: auto;
  mask-image: none;
  -webkit-mask-image: none;
}

.media-band.is-keyboard-mode .media-track,
.media-band.is-reduced-motion .media-track {
  animation: none;
  transform: none;
  will-change: auto;
}

.media-band.is-keyboard-mode .media-group[aria-hidden="true"],
.media-band.is-reduced-motion .media-group[aria-hidden="true"] {
  display: none;
}

@keyframes media-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 560px) {
  .trust-grid,
  .grid-2,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  body[data-page="home"] .whatsapp-float {
    bottom: calc(78px + env(safe-area-inset-bottom));
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(100% - 64px, var(--container));
  }

  .section {
    padding-block: 88px;
  }

  .hero-inner {
    padding-block: 76px 88px;
  }

  .hero-photo {
    max-height: 600px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 22px 28px;
  }

  .media-band {
    padding-block: 88px 42px;
  }

  .media-band-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

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

  .split,
  .article-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    gap: 54px;
  }

  .split.reverse > :first-child {
    order: 2;
  }

  .topic-band {
    padding: 32px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .topic-band > div {
    max-width: 700px;
  }

  .cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 42px;
  }

  .cta-panel > .button-row {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 1px;
  }

  .nav-list a {
    min-height: 44px;
    padding: 8px 9px;
    font-size: .82rem;
  }

  .nav-whatsapp {
    display: none;
  }

  .button.header-cta {
    display: inline-flex;
    min-height: 44px;
    padding: 9px 15px;
    font-size: .84rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
    min-height: 650px;
    align-items: center;
    gap: 56px;
  }

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

  .site-footer {
    padding-bottom: 54px;
  }

  .mobile-sticky {
    display: none;
  }

  .whatsapp-float {
    right: 24px;
    bottom: 24px;
    width: 68px;
    height: 68px;
  }

  body[data-page="home"] .whatsapp-float {
    bottom: 24px;
  }
}

@media (min-width: 1180px) {
  .nav-list a {
    padding-inline: 12px;
    font-size: .88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .media-track {
    animation: none !important;
    transform: none !important;
  }
}
