:root {
  --navy: #06133c;
  --navy-2: #0d235e;
  --blue: #073d97;
  --cyan: #2aabc8;
  --orange: #ff992d;
  --pink: #da1367;
  --ink: #111827;
  --muted: #5b6475;
  --line: #dce2eb;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --success: #147d5b;
  --danger: #b42318;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(7, 25, 72, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
.button {
  min-height: 44px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 19, 60, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 190px;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 750;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #8ee7f2;
}

.nav-primary {
  flex: 0 0 auto;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.menu-toggle-icon {
  display: grid;
  gap: 4px;
  width: 20px;
}

.menu-toggle-icon i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu {
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #06133c;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  display: grid;
  gap: 4px;
  padding-block: 12px 18px;
}

.mobile-menu-inner > a:not(.button) {
  min-height: 44px;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-weight: 800;
}

.mobile-menu-inner .button {
  margin-top: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 42px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(218, 19, 103, 0.35), transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(42, 171, 200, 0.32), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #87deec;
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

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

.hero-lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: #dbe7ff;
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

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

.button-primary {
  color: #071333;
  background: linear-gradient(135deg, var(--orange), #ffc76b);
  box-shadow: 0 10px 30px rgba(255, 153, 45, 0.25);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.button-outline {
  color: var(--blue);
  background: #fff;
  border: 1px solid #b8c8e6;
}

.button[aria-disabled="true"],
.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.hero-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

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

.hero-card p {
  margin: 8px 0 0;
  color: #dbe7ff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.hero-stat {
  padding: 16px;
  border-radius: 18px;
  color: #fff;
  background: rgba(3, 12, 40, 0.5);
}

.hero-stat span {
  display: block;
  color: #8ee7f2;
  font-size: 1.7rem;
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

#tarefas.section {
  padding-top: 48px;
}

.help-intro-section {
  padding: 48px 0 34px;
  border-bottom: 1px solid #e1e7f0;
  background: linear-gradient(180deg, #eef4fb 0%, var(--soft) 100%);
}

.help-intro-head {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

.help-intro-head h2 {
  max-width: 760px;
  margin: 3px auto 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.help-intro-section .eyebrow {
  color: #0b5ba7;
}

.journey-shortcuts {
  color: #fff;
  background: #081947;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shortcut-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-block: 14px;
}

.shortcut-inner a {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
}

.shortcut-inner a:hover,
.shortcut-inner a:focus-visible {
  border-color: #87deec;
  background: rgba(255, 255, 255, 0.12);
}

.shortcut-inner a > span {
  display: grid;
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #071333;
  background: #87deec;
  font-size: 1.35rem;
  font-weight: 900;
}

.shortcut-inner strong,
.shortcut-inner small {
  display: block;
}

.shortcut-inner small {
  color: #bfcdec;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
}

.section .eyebrow {
  color: #0b5ba7;
}

.calculator-section .eyebrow {
  color: #87deec;
}

.task-tools {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.category-guide-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: -8px 0 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-guide-links span {
  font-weight: 800;
}

.category-guide-links a {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  background: #fff;
}

.category-guide-links a:hover {
  border-color: var(--cyan);
}

.search-wrap {
  position: relative;
}

.search-wrap input {
  width: 100%;
  min-height: 58px;
  padding: 0 54px 0 20px;
  color: var(--ink);
  border: 1px solid #cbd6e6;
  border-radius: 18px;
  outline: none;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 25, 72, 0.06);
}

.search-wrap input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(42, 171, 200, 0.17);
}

.clear-search {
  position: absolute;
  right: 9px;
  top: 7px;
  width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
}

.filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.filter-button {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid #cbd6e6;
  border-radius: 999px;
  cursor: pointer;
  color: #26334b;
  background: #fff;
  font-weight: 800;
}

.filter-button span,
.filter-button small {
  display: block;
  line-height: 1.2;
}

.filter-button small {
  margin-top: 3px;
  color: #667085;
  font-size: 0.71rem;
  font-weight: 650;
}

.filter-button[aria-pressed="true"] {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.filter-button[aria-pressed="true"] small {
  color: #dff9ff;
}

.help-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 16px;
}

.video-guide-card,
.community-prompt {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 25, 72, 0.07);
}

.video-guide-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(260px, 1.15fr);
}

.video-facade {
  position: relative;
  display: block;
  min-height: 190px;
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: #06133c;
}

.video-facade img,
.video-facade iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  border: 0;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(218, 19, 103, 0.94);
  box-shadow: 0 10px 30px rgba(3, 9, 29, 0.4);
  transform: translate(-50%, -50%);
}

.video-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 7px;
  border-radius: 7px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.78rem;
  font-weight: 850;
}

.video-guide-copy,
.community-prompt {
  padding: 20px;
}

.video-guide-copy h3,
.community-prompt h3 {
  margin: 4px 0 7px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.video-guide-copy p,
.community-prompt p {
  margin: 0 0 14px;
  color: var(--muted);
}

.card-kicker {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--blue);
  background: transparent;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button-whatsapp {
  color: #fff;
  background: #147d5b;
}

.result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 16px;
  color: var(--muted);
}

.result-count {
  font-weight: 850;
  color: var(--blue);
}

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

.task-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 9px 28px rgba(7, 25, 72, 0.06);
}

.task-card[hidden] {
  display: none;
}

.task-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 20px 20px 16px;
}

.task-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-weight: 900;
}

.task-title-en {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

.task-title-pt {
  margin: 5px 0 0;
  color: var(--muted);
}

.category-tag {
  display: inline-flex;
  width: max-content;
  margin-top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #743000;
  background: #fff0dc;
  font-size: 0.73rem;
  font-weight: 850;
}

.category-tag-en {
  margin-left: 7px;
  padding-left: 7px;
  border-left: 1px solid rgba(116, 48, 0, 0.28);
  color: #92501f;
  font-weight: 700;
}

.opportunity-section {
  background: linear-gradient(180deg, #f7faff, #eef4ff);
}

#plataformas,
#tarefas,
#calculadora,
#comunidade,
#video-guia {
  scroll-margin-top: 84px;
}

.platform-section-head {
  display: block;
  text-align: center;
}

.platform-section-head h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.platform-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid #c4d3ee;
  border-radius: 22px;
  background: #071a4b;
  box-shadow: 0 12px 34px rgba(7, 25, 72, 0.14);
}

.platform-flow > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 10px;
  align-items: center;
  color: #fff;
}

.platform-flow span {
  grid-row: 1 / 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #06133c;
  background: #8ee7f2;
  font-weight: 950;
}

.platform-flow strong,
.platform-flow small {
  grid-column: 2;
}

.platform-flow small {
  color: #c9d9f3;
  line-height: 1.35;
}

.platform-flow > i {
  color: #8ee7f2;
  font-size: 1.35rem;
  font-style: normal;
}

.opportunity-video-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid #c4d3ee;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 25, 72, 0.06);
}

.opportunity-video-callout h3,
.opportunity-card h3 {
  margin: 6px 0 8px;
}

.opportunity-video-callout p,
.opportunity-card p {
  margin: 0;
  color: var(--muted);
}

.opportunity-video-callout .button {
  flex: 0 0 auto;
}

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

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

.opportunity-card {
  display: flex;
  min-height: 250px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.platform-card {
  min-height: 430px;
}

.platform-card-proven {
  border-color: #89d7c2;
  box-shadow: inset 0 5px 0 #16a07d;
}

.platform-card-potential {
  border-color: #f2c06a;
  box-shadow: inset 0 5px 0 #f59f24;
}

.platform-facts {
  width: 100%;
  margin: 20px 0 22px;
}

.platform-facts > div {
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.platform-facts dt {
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.platform-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.platform-secondary-link {
  margin-bottom: 14px;
}

.opportunity-card .button {
  margin-top: auto;
}

.opportunity-card .button-secondary {
  color: var(--blue);
  border-color: #b8c8e6;
  background: #fff;
}

.opportunity-status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: #6d3f00;
  background: #fff0d5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-proven {
  color: #075c47;
  background: #dff8ef;
}

.status-potential {
  color: #743000;
  background: #fff0dc;
}

.minute-callout {
  margin-top: 20px;
  margin-bottom: 0;
}

.opportunity-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.task-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 1;
  border-top: 1px solid var(--line);
}

.language-block {
  padding: 18px 20px;
}

.language-block + .language-block {
  border-left: 1px solid var(--line);
}

.language-label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.language-block p {
  margin: 0;
  color: #303b50;
}

.task-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 20px 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px 20px;
  border: 1px dashed #b7c4da;
  border-radius: 22px;
  text-align: center;
  color: var(--muted);
  background: #fff;
}

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

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 34px;
  align-items: start;
}

.calculator-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.calculator-copy p {
  color: #c9d7f2;
}

.referral-network {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  color: var(--ink);
  background: #f8fbff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

.network-you {
  width: max-content;
  margin-inline: auto;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  background: #111827;
  font-weight: 900;
}

.network-earnings {
  display: block;
  margin-top: 7px;
  text-align: center;
  color: #147d5b;
  font-size: 0.83rem;
}

.network-connector {
  position: relative;
  width: 4px;
  height: 34px;
  margin-inline: auto;
  overflow: hidden;
  background-image: radial-gradient(circle, #14c881 2px, transparent 2.5px);
  background-size: 4px 10px;
}

.network-connector span,
.network-connector i,
.network-connector b {
  position: absolute;
  top: -8px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #14c881;
  box-shadow: 0 0 8px rgba(20, 200, 129, 0.9);
  animation: network-flow 1.8s linear infinite;
}

.network-connector i {
  animation-delay: 0.6s;
}

.network-connector b {
  animation-delay: 1.2s;
}

@keyframes network-flow {
  to { transform: translateY(46px); }
}

.network-level {
  display: grid;
  grid-template-columns: minmax(92px, auto) 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid #d2dae6;
  border-radius: 15px;
  background: #fff;
  opacity: 0.52;
  transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.network-level.is-active {
  border-color: #a9dfc8;
  background: #e9faf2;
  opacity: 1;
}

.network-level div > strong,
.network-level div > span {
  display: block;
  line-height: 1.2;
}

.network-level div > span {
  color: var(--muted);
  font-size: 0.76rem;
}

.network-level em {
  padding: 6px 9px;
  border-radius: 999px;
  color: #147d5b;
  background: #fff;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.network-avatars {
  display: flex;
  min-width: 92px;
  padding-left: 3px;
}

.network-avatar,
.network-more {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 0.63rem;
  font-weight: 900;
  animation: avatar-pop 260ms ease both;
}

.network-avatar:first-child,
.network-more:first-child {
  margin-left: 0;
}

.network-avatar:nth-child(2n) {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.network-avatar::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}

.network-avatar::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 4px;
  left: 5px;
  height: 8px;
  border-radius: 8px 8px 5px 5px;
  background: #fff;
}

.network-avatar {
  position: relative;
}

@keyframes avatar-pop {
  from { opacity: 0; transform: translateY(5px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.rate-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.rate-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.calculator-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.calc-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.calc-tab {
  min-height: 42px;
  padding: 8px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  color: #c9d7f2;
  background: transparent;
  font-weight: 850;
}

.calc-tab[aria-pressed="true"] {
  color: var(--navy);
  background: #fff;
}

.calc-result {
  margin: 24px 0;
  padding: 20px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.calc-result small {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
}

.calc-result strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.range-group {
  margin-top: 21px;
}

.range-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.range-value {
  color: #8ee7f2;
  font-weight: 900;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
}

.calc-note {
  color: #c9d7f2;
  font-size: 0.86rem;
}

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

.community-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 25, 72, 0.06);
}

.community-card h3 {
  margin: 0 0 8px;
}

.community-card p {
  min-height: 72px;
  color: var(--muted);
}

.affiliate-note {
  margin-top: 13px;
  color: #c9d7f2;
  font-size: 0.8rem;
}

.site-footer {
  padding: 34px 0;
  color: #c9d7f2;
  background: #03091d;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #fff;
}

.lead-sheet {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: min(460px, calc(100% - 36px));
  max-height: min(720px, calc(100vh - 36px));
  overflow-y: auto;
  padding: 24px;
  border: 1px solid #ffd493;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 90px rgba(3, 9, 29, 0.3);
  transform: translateY(calc(100% + 40px));
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms ease;
}

.lead-sheet.is-open {
  transform: translateY(0);
  visibility: visible;
}

.lead-sheet h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

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

.lead-sheet .lead-signature {
  margin: -4px 0 12px;
  color: var(--blue);
  font-weight: 900;
}

.close-sheet {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--soft);
}

.form-field {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.form-field label {
  font-weight: 850;
}

.form-field input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #b8c4d7;
  border-radius: 12px;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin: 16px 0;
  color: #39445a;
  font-size: 0.88rem;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  font-size: 0.9rem;
  font-weight: 750;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.task-page-main {
  padding: 52px 0 76px;
}

.category-page-main {
  padding-bottom: 36px;
}

.category-page-head {
  padding: clamp(26px, 5vw, 52px);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
}

.category-page-head h1 {
  max-width: 900px;
  margin: 14px 0 12px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.category-page-head > p {
  max-width: 760px;
  color: #dbe7ff;
  font-size: 1.08rem;
}

.category-page-head .hero-stat {
  width: fit-content;
  margin-top: 24px;
}

.category-task-section {
  padding-top: 28px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.task-page-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.task-page-head {
  padding: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.task-page-head h1 {
  max-width: 900px;
  margin: 10px 0 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.task-page-head p {
  margin: 12px 0 0;
  color: #dbe7ff;
  font-size: 1.2rem;
}

.task-page-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.task-page-language {
  padding: 30px;
}

.task-page-language + .task-page-language {
  border-left: 1px solid var(--line);
}

.task-page-language h2 {
  margin: 0 0 12px;
}

.task-page-cta {
  padding: 26px 30px 30px;
  border-top: 1px solid var(--line);
  background: #f6f9ff;
}

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

.related-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  background: #fff;
}

.related-card:hover {
  border-color: var(--cyan);
}

.legal-page {
  max-width: 800px;
  padding: 54px 0 80px;
}

.legal-page h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.legal-page h2 {
  margin-top: 34px;
}

.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;
}

.button-wide {
  width: 100%;
}

.hero-photo-wrap {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-person-label {
  display: block;
  margin-bottom: 6px;
  color: #8ee7f2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.steps-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 25, 72, 0.06);
}

.steps-grid article > span,
.channel-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-weight: 900;
}

.steps-grid h3 {
  margin: 16px 0 6px;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
}

.recording-guide-section {
  background: linear-gradient(180deg, #f7f9ff 0%, #fff 100%);
}

.recording-guide-head {
  align-items: end;
}

.evidence-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: -8px 0 24px;
  padding: 16px 18px;
  border: 1px solid #d8e2f4;
  border-radius: 16px;
  color: var(--muted);
  background: #fff;
  font-size: 0.9rem;
}

.evidence-legend > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.evidence-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.evidence-official {
  color: #064b31;
  background: #d9f8e9;
}

.evidence-community {
  color: #714100;
  background: #fff0c7;
}

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

.recording-guide-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 25, 72, 0.07);
}

.recording-guide-ideal {
  border-top: 4px solid #27a978;
}

.recording-guide-start {
  border-top: 4px solid var(--orange);
}

.recording-guide-card h3 {
  margin: 16px 0 10px;
}

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

.recording-guide-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
  padding-left: 21px;
}

.recording-review-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  align-items: center;
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 18px;
  color: #fff;
  background: var(--blue);
}

.recording-review-note strong {
  font-size: 1.02rem;
}

.recording-review-note p {
  margin: 0;
  color: #e9f1ff;
}

.community-card .button-secondary {
  color: var(--blue);
  border-color: #b8c8e6;
  background: #fff;
}

.community-card-accent {
  border-color: #ffc76b;
  background: linear-gradient(145deg, #fff, #fff6e8);
}

.footer-inner img {
  display: block;
  width: 180px;
  height: auto;
}

.footer-inner p {
  max-width: 580px;
}

.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #91a1c2;
  font-size: 0.82rem;
}

.footer-note p {
  margin: 0;
}

.lead-kicker {
  margin: 0 48px 9px 0;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-form small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.lead-success h3 {
  margin-bottom: 6px;
}

.lead-success-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #16834b;
  font-size: 1.6rem;
  font-weight: 900;
}

.lead-redirect-status {
  padding: 11px 13px;
  border-radius: 12px;
  color: #24523a !important;
  background: #eaf8ef;
  font-size: 0.9rem;
}

.success-links {
  display: grid;
  gap: 9px;
}

.related-card strong {
  color: var(--blue);
}

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

.related-section > .container > .button {
  margin-top: 20px;
  color: var(--blue);
  border-color: #b8c8e6;
  background: #fff;
}

.narrow-content {
  max-width: 980px;
}

.content-page-hero {
  padding: 54px 0 58px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(42, 171, 200, 0.28), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.content-page-hero .breadcrumbs {
  margin-bottom: 28px;
}

.breadcrumbs-light,
.breadcrumbs-light a {
  color: #dbe7ff;
}

.content-page-hero .eyebrow {
  color: #8ee7f2;
}

.content-page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.content-page-hero > .container > p {
  max-width: 760px;
  margin: 20px 0 0;
  color: #dbe7ff;
  font-size: 1.08rem;
}

.directory-section {
  padding: 48px 0 78px;
}

.evidence-notice,
.help-safety-note {
  padding: 24px;
  border: 1px solid #b8c8e6;
  border-radius: 20px;
  background: #eef5ff;
}

.evidence-notice > strong {
  color: var(--blue);
  font-size: 1.12rem;
}

.evidence-notice p,
.evidence-notice ul,
.help-safety-note p {
  color: #39445a;
}

.evidence-notice p {
  margin: 8px 0 10px;
}

.evidence-notice ul {
  margin: 0;
  padding-left: 20px;
}

.evidence-notice .evidence-warning {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid #c6d5ed;
  font-size: 0.9rem;
}

.compatibility-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.compatibility-summary article {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 25, 72, 0.05);
}

.compatibility-summary span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compatibility-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 2.15rem;
  line-height: 1;
}

.compatibility-summary p {
  margin: 7px 0 0;
  color: var(--muted);
}

.directory-tools {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(170px, 0.8fr) minmax(190px, 0.9fr);
  align-items: end;
  gap: 14px;
  margin-top: 26px;
}

.directory-tools .search-wrap label,
.help-search-wrap label,
.select-field {
  display: grid;
  gap: 7px;
  color: #26334b;
  font-size: 0.88rem;
  font-weight: 850;
}

.select-field select {
  min-height: 58px;
  padding: 0 42px 0 14px;
  border: 1px solid #cbd6e6;
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
}

.select-field select:focus {
  outline: 4px solid rgba(42, 171, 200, 0.17);
  border-color: var(--cyan);
}

.directory-count {
  margin: 22px 0 14px;
  color: var(--blue);
  font-weight: 850;
}

.phone-grid {
  display: grid;
  gap: 16px;
}

.phone-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 25, 72, 0.06);
}

.phone-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.phone-brand {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-card h2 {
  margin: 3px 0 0;
  font-size: 1.55rem;
}

.status-badge {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-minute_confirmado {
  color: #085d43;
  background: #d9f6ea;
}

.status-somente_hub,
.status-em_analise {
  color: #704d00;
  background: #fff0bf;
}

.status-problema_minute {
  color: #922018;
  background: #fee4e2;
}

.phone-card-minute_confirmado {
  border-color: #9adbc5;
}

.phone-card-somente_hub {
  border-color: #efcf70;
}

.platform-result dd {
  font-weight: 850;
}

.platform-minute dd {
  color: var(--blue);
}

.phone-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.phone-details > div {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.phone-details > div:nth-child(even) {
  border-left: 1px solid var(--line);
}

.phone-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.phone-details dd {
  margin: 5px 0 0;
}

.directory-empty {
  padding: 36px 24px;
  border: 1px dashed #aebbd0;
  border-radius: 22px;
  text-align: center;
  background: #fff;
}

.directory-empty h2 {
  margin: 0;
  font-size: 1.55rem;
}

.directory-empty p {
  max-width: 680px;
  margin: 10px auto 18px;
  color: var(--muted);
}

.help-search-wrap {
  margin-bottom: 16px;
}

.help-filters {
  margin-bottom: 10px;
}

.help-filter {
  min-height: 44px;
}

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

.faq-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 25, 72, 0.05);
}

.faq-card summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  cursor: pointer;
  list-style: none;
  color: #14213b;
  font-weight: 850;
}

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

.faq-card summary::after {
  content: "+";
  position: absolute;
  top: 13px;
  right: 15px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #eef5ff;
  font-size: 1.35rem;
}

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

.faq-card summary:focus-visible {
  outline: 4px solid rgba(42, 171, 200, 0.2);
  outline-offset: 2px;
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.help-safety-note {
  margin-top: 26px;
  border-color: #ffc76b;
  background: #fff8eb;
}

.help-safety-note h2 {
  margin: 0;
  font-size: 1.25rem;
}

.help-safety-note p {
  margin: 8px 0 0;
}

.not-found {
  min-height: 60vh;
  padding: 80px 0;
}

.not-found h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
}

@media (max-width: 1100px) {
  .main-nav,
  .header-inner > .nav-primary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

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

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

  .opportunity-video-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .opportunity-video-callout .button {
    width: 100%;
  }

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

  .platform-flow {
    grid-template-columns: 1fr;
  }

  .platform-flow > i {
    justify-self: center;
    transform: rotate(90deg);
  }

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

  .community-card p {
    min-height: 0;
  }

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

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

  .recording-guide-grid {
    grid-template-columns: 1fr;
  }

  .recording-review-note {
    grid-template-columns: 1fr;
  }

  .help-row {
    grid-template-columns: 1fr;
  }

  .help-intro-head {
    text-align: center;
  }

  .directory-tools {
    grid-template-columns: 1fr;
  }

  .compatibility-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 145px;
  }

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

  .hero h1 {
    font-size: clamp(2.35rem, 12.4vw, 3.4rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    column-gap: 13px;
    padding: 13px;
    border-radius: 20px;
  }

  .hero-photo-wrap {
    grid-row: 1 / 4;
    width: 82px;
    height: 82px;
    margin: 0;
    border-radius: 15px;
  }

  .hero-person-label,
  .hero-card > strong,
  .hero-card > p {
    grid-column: 2;
  }

  .hero-card > strong {
    font-size: 1rem;
    line-height: 1.2;
  }

  .hero-card > p {
    margin-top: 3px;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .hero-stats {
    display: none;
  }

  .section {
    padding: 54px 0;
  }

  #tarefas.section {
    padding-top: 36px;
  }

  .help-intro-section {
    padding: 38px 0 30px;
  }

  .help-intro-head {
    gap: 8px;
    margin-bottom: 16px;
  }

  .help-intro-head h2 {
    font-size: 1.7rem;
  }

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

  .shortcut-inner a {
    grid-template-columns: 34px 1fr;
    column-gap: 8px;
    align-items: center;
    padding: 9px;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .shortcut-inner a > span {
    grid-row: 1;
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .shortcut-inner small {
    display: none;
  }

  .video-guide-card {
    grid-template-columns: 132px 1fr;
  }

  .video-facade,
  .video-facade img,
  .video-facade iframe {
    min-height: 100%;
  }

  .video-play {
    width: 46px;
    height: 46px;
  }

  .video-guide-copy,
  .community-prompt {
    padding: 16px;
  }

  .video-guide-copy p {
    display: none;
  }

  .content-page-hero {
    padding: 38px 0 42px;
  }

  .content-page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .directory-section {
    padding: 34px 0 56px;
  }

  .evidence-notice,
  .help-safety-note {
    padding: 18px;
  }

  .phone-card-head {
    display: grid;
    padding: 18px;
  }

  .status-badge {
    justify-self: start;
  }

  .phone-details {
    grid-template-columns: 1fr;
  }

  .phone-details > div {
    padding: 16px 18px;
  }

  .phone-details > div:nth-child(even) {
    border-left: 0;
  }

  .section-head {
    display: block;
  }

  .task-body,
  .task-page-body {
    grid-template-columns: 1fr;
  }

  .language-block + .language-block,
  .task-page-language + .task-page-language {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .task-actions {
    display: grid;
  }

  .task-actions .button,
  .task-actions .text-link {
    width: 100%;
  }

  .calc-tabs {
    grid-template-columns: 1fr;
  }

  .referral-network {
    padding: 16px;
  }

  .network-level {
    grid-template-columns: 82px 1fr;
  }

  .network-level em {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .footer-inner {
    display: block;
  }

  .footer-note {
    display: block;
  }

  .footer-note p + p {
    margin-top: 12px;
  }

  .footer-links {
    margin-top: 18px;
  }

  .lead-sheet {
    right: 8px;
    bottom: 8px;
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
