:root {
  --bg: #f3f7fb;
  --surface: #ffffff;
  --surface-soft: #f7fbfe;
  --ink: #15171a;
  --muted: #657181;
  --brand: #4db2ec;
  --brand-dark: #147fbe;
  --brand-soft: #e8f6fe;
  --line: rgba(21, 23, 26, 0.12);
  --shadow: 0 18px 54px rgba(31, 58, 78, 0.12);
  --radius-xl: 16px;
  --radius-lg: 13px;
  --radius-md: 10px;
  --max: 1080px;
  --product: var(--brand);
  --product-contrast: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 1%, rgba(77, 178, 236, 0.18), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 15px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -60px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--ink);
  color: #ffffff;
}

.skip-link:focus {
  top: 12px;
}

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

.hidden {
  display: none !important;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

/* Cabeçalho */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(21, 23, 26, 0.08);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  width: min(100% - 28px, var(--max));
  min-height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-name {
  max-width: 220px;
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.site-name::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 4px;
  border-radius: 0;
  background: var(--brand);
}

.topbar-link {
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

/* Estrutura */

.app-shell {
  width: min(100% - 20px, var(--max));
  margin: 0 auto;
  padding: 12px 0 26px;
}

.hero,
.quiz-card,
.result-shell,
.info-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

/* Hero */

.hero {
  min-height: calc(100svh - 86px);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -150px;
  top: -120px;
  border-radius: 50%;
  background: rgba(77, 178, 236, 0.11);
}

.hero-route {
  width: min(280px, 88%);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  color: var(--brand-dark);
  font-weight: 900;
}

.hero-route i {
  height: 2px;
  background-image: linear-gradient(90deg, var(--brand) 50%, transparent 50%);
  background-size: 10px 2px;
}

.eyebrow,
.result-kicker,
.account-overline {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 18px;
  margin-top: 8px;
  font-size: clamp(2.35rem, 12vw, 3.9rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 25px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 550;
}

.microcopy {
  margin: 44px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Botões */

.primary-btn,
.secondary-btn,
.product-btn,
.link-btn {
  appearance: none;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 900;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.primary-btn {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(77, 178, 236, 0.27);
}

.secondary-btn {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.primary-btn:hover,
.secondary-btn:hover,
.product-btn:hover {
  transform: translateY(-1px);
}

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

.secondary-btn:hover {
  border-color: rgba(77, 178, 236, 0.52);
  color: var(--brand-dark);
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(77, 178, 236, 0.43);
  outline-offset: 3px;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.hero-button {
  width: 100%;
}

/* Quiz */

.quiz-card {
  padding: 22px 16px 28px;
}

.quiz-header h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 8vw, 3.1rem);
  line-height: 1.07;
  letter-spacing: -0.052em;
}

.quiz-navigation {
  min-height: 34px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.back-button {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.back-button span {
  font-size: 1rem;
  transition: transform 0.18s ease;
}

.back-button:hover {
  color: var(--brand-dark);
}

.back-button:hover span {
  transform: translateX(-3px);
}

.back-button:disabled {
  visibility: hidden;
}

.question-help {
  margin-top: 20px;
  margin-bottom: 2px;  
  color: var(--muted);
  font-size: 1rem;
}

.selection-status {
  min-height: 22px;
  margin: 5px 0 0;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.progress-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(21, 23, 26, 0.07);
}

.progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  transition: width 0.25s ease;
}

.progress-wrap span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.options-grid {
  display: grid;
  gap: 11px;
}

.option-card {
  width: 100%;
  min-height: 92px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 3px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 8px 22px rgba(31, 58, 78, 0.055);
}

.option-card::after {
  content: "";
  width: 20px;
  height: 20px;
  grid-column: 3;
  grid-row: 1 / span 2;
  border: 2px solid rgba(21, 23, 26, 0.2);
  border-radius: 50%;
}

.option-card.is-multi::after {
  border-radius: 4px;
}

.option-card:hover {
  border-color: rgba(77, 178, 236, 0.5);
}

.option-card[aria-pressed="true"] {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 12px 28px rgba(77, 178, 236, 0.16);
}

.option-card[aria-pressed="true"]::after {
  content: "✓";
  display: grid;
  place-items: center;
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.option-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--brand-soft);
  font-size: 1.35rem;
}

.option-title {
  grid-column: 2;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.option-desc {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

/* Rodapé da pergunta — fluxo normal da página */

.quiz-footer {
  position: static;
  width: 100%;
  max-width: none;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.confirm-button {
  width: 100%;
  min-height: 54px;
  border-radius: 0;
  font-size: 0.84rem;
  letter-spacing: 0.015em;
}

.quiz-footer .back-button {
  width: auto;
  align-self: center;
  padding: 9px 12px;
}

/* Resultado */

.result-screen {
  margin-top: 0;
}

.result-shell {
  overflow: hidden;
  padding: 16px;
}

.profile-hero {
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 14px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.24), transparent 10rem),
    linear-gradient(135deg, #158acb, #4db2ec);
  color: #ffffff;
  text-align: center;
}

.profile-icon {
  width: 94px;
  height: 94px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.19);
  font-size: 3.45rem;
  line-height: 1;
}

.profile-hero > div:not(.profile-icon) {
  width: min(100%, 720px);
  display: grid;
  justify-items: center;
}

.profile-hero .result-kicker {
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.profile-hero h2 {
  width: 100%;
  margin: 0 auto 10px;
  font-size: clamp(1.75rem, 8vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-align: center;
}

.profile-hero > div > p:not(.result-kicker) {
  width: min(100%, 680px);
  margin: 0 auto 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-align: center;
}

.profile-focus {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.profile-focus span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.recommendations,
.decision-map,
.editorial-note,
.share-box {
  margin-top: 24px;
}

.section-heading h3,
.alternatives-heading h3,
.decision-map h3,
.share-box h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 6.6vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.alternatives-heading > p,
.share-box p {
  color: var(--muted);
  font-size: 0.86rem;
}

/* Recomendação principal */

.winner-card {
  --product: var(--brand);
  --product-contrast: #ffffff;
  margin-top: 17px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--product) 52%, var(--line));
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--product) 10%, white),
    #ffffff 46%
  );
  box-shadow: 0 18px 44px color-mix(in srgb, var(--product) 15%, transparent);
}

.winner-topline,
.winner-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.winner-label {
  color: var(--product);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--product) 13%, white);
  color: color-mix(in srgb, var(--product) 78%, #111111);
  font-size: 0.64rem;
  font-weight: 900;
  white-space: nowrap;
}

.winner-brand-row {
  margin: 18px 0 10px;
}

.account-overline {
  margin-bottom: 2px;
  color: var(--muted);
}

.winner-brand-row h3 {
  margin: 0;
  color: color-mix(in srgb, var(--product) 78%, #15171a);
  font-size: clamp(2rem, 10vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.brand-dot {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 9px solid color-mix(in srgb, var(--product) 17%, white);
  border-radius: 50%;
  background: var(--product);
}

.winner-tagline {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.why-box {
  margin: 28px 0 28px 0;
  padding: 16px;
  border-radius: var(--radius-md);
  background: #f7f9fb;
}

.why-box h4 {
  margin-bottom: 29px;
  font-size: 0.88rem;
  text-transform: uppercase;

}

.why-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.why-box li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 7px;
  color: #343940;
  font-size: 0.8rem;
  font-weight: 600;
}

.why-box li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--product) 15%, white);
  color: color-mix(in srgb, var(--product) 78%, #111111);
  font-size: 0.68rem;
  font-weight: 900;
}

.open-hint {
  padding-left: 12px;
  margin-bottom: 30px;
  border-left: 3px solid var(--product);
  color: var(--muted);
  font-size: 0.76rem;
}

.winner-actions {
  display: grid;
  gap: 8px;
}

.product-btn {
  width: 100%;
  background: var(--product);
  color: var(--product-contrast);
  box-shadow: 0 11px 24px color-mix(in srgb, var(--product) 23%, transparent);
}

.review-link {
  padding: 8px;
  color: color-mix(in srgb, var(--product) 78%, #15171a);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Alternativas */

.alternatives-heading {
  margin-top: 28px;
}

.alternatives-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.alternative-card {
  --product: var(--brand);
  padding: 17px;
  border: 1px solid color-mix(in srgb, var(--product) 34%, var(--line));
  border-radius: var(--radius-md);
  display: grid;
  gap: 11px;
  background: #ffffff;
}

.alternative-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.alternative-card h4 {
  margin: 0;
  color: color-mix(in srgb, var(--product) 76%, #15171a);
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.alt-match {
  color: color-mix(in srgb, var(--product) 75%, #15171a);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.alternative-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.alt-reason {
  padding: 10px 11px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--product) 8%, white);
  font-weight: 650;
}

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

.alt-actions a {
  color: color-mix(in srgb, var(--product) 78%, #15171a);
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
}

.alt-actions a:first-child {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mapa de decisão */

.decision-map {
  padding: 19px;
  border-radius: var(--radius-lg);
  background: #f4f8fb;
}

.answer-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  text-transform: uppercase;
}

.answer-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 11px;
  border: 1px solid rgba(77, 178, 236, 0.2);
  border-radius: 5px;
  background: #ffffff;
  color: #303842;
  font-size: 0.72rem;
  font-weight: 800;
}

/* Nota editorial */

.editorial-note {
  padding: 17px;
  border: 1px solid rgba(235, 174, 26, 0.3);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  background: #fff9e9;
}

.editorial-note strong {
  font-size: 0.84rem;
}

.editorial-note p {
  margin: 4px 0 0;
  color: #5f5a4e;
  font-size: 0.75rem;
}

/* Compartilhamento para Stories */

.share-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(77, 178, 236, 0.14), transparent 9rem),
    #ffffff;
}

.share-box .secondary-btn {
  width: 100%;
  margin-top: 10px;
}

.story-preview {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  justify-items: center;
  gap: 14px;
  background: #ffffff;
}

.story-preview::before {
  content: "Prévia do seu Story";
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.story-preview canvas {
  width: min(300px, 100%);
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(31, 58, 78, 0.14);
}

.story-preview .link-btn {
  width: 100%;
}

/* Todas as contas */

.all-accounts {
  width: 100%;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #f4f8fb;
}

.all-accounts p {
  color: var(--muted);
  font-size: 0.86rem;
}

.all-accounts-grid {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.account-link {
  --product: var(--brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--product) 30%, var(--line));
  border-radius: var(--radius-md);
  background: #ffffff;
  color: color-mix(in srgb, var(--product) 78%, #15171a);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.account-link span {
  color: color-mix(in srgb, var(--product) 78%, #15171a);
  font-size: 0.9rem;
}

.footer-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-actions .secondary-btn {
  width: auto;
  min-width: 190px;
  padding-inline: 22px;
}

/* Como funciona */

.info-section {
  margin-top: 22px;
  padding: 25px 20px;
  box-shadow: none;
}

.info-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 8.5vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.info-section > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.98rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

.info-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.info-grid span {
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 900;
}

.info-grid strong {
  display: block;
  margin: 5px 0;
  font-size: 0.9rem;
}

.info-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

/* Rodapé */

.site-footer {
  width: min(100% - 28px, var(--max));
  margin: 0 auto;
  padding: 4px 0 32px;
  color: var(--muted);
  text-align: center;
  font-size: 0.68rem;
}

.site-footer p {
  margin-bottom: 5px;
}

/* Tablet */

@media (min-width: 720px) {
  .topbar-inner {
    min-height: 68px;
  }

  .site-name {
    max-width: none;
    font-size: 1.05rem;
  }

  .app-shell {
    width: min(100% - 36px, var(--max));
    padding-top: 28px;
  }

  .hero {
    min-height: 70vh;
    padding: 55px;
  }

  .hero-button {
    width: auto;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .quiz-card {
    min-height: auto;
    padding: 36px;
  }

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

  .quiz-footer {
    position: static;
    width: min(100%, 430px);
    margin: 30px 0 0 auto;
  }

  .confirm-button {
    width: 100%;
    padding-inline: 24px;
  }
}

  .confirm-button {
    width: 100%;
    min-height: 54px;
    padding-inline: 24px;
  }

  .result-shell {
    padding: 30px;
  }

  .profile-hero {
    gap: 16px;
    padding: 40px 34px;
  }

  .profile-icon {
    width: 112px;
    height: 112px;
    font-size: 4rem;
  }

  .profile-hero > div > p:not(.result-kicker) {
    font-size: 0.82rem;
    margin-top: 7px;
    margin-bottom: 18px;
  }

  .winner-card {
    padding: 30px;
  }

  .winner-actions {
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
  }

  .product-btn {
    width: auto;
  }

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

  .share-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px;
  }

  .share-box .secondary-btn {
    width: auto;
    margin: 0;
    white-space: nowrap;
  }

  .story-preview .link-btn {
    width: auto;
  }

  .footer-actions .secondary-btn {
    width: auto;
  }

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

/* Desktop */

@media (min-width: 980px) {
  .hero {
    padding: 72px;
  }

  .quiz-card {
    padding: 48px;
  }

  .result-shell {
    padding: 44px;
  }

  .profile-hero {
    padding: 48px 42px;
  }

  .profile-icon {
    width: 120px;
    height: 120px;
    font-size: 4.25rem;
  }

  .recommendations {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 30px;
    align-items: start;
  }

  .section-heading {
    grid-column: 1 / -1;
  }

  .winner-card {
    grid-column: 1;
    grid-row: 2 / span 2;
    margin-top: 0;
  }

  .alternatives-heading {
    grid-column: 2;
    margin-top: 0;
  }

  .alternatives-grid {
    grid-column: 2;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .decision-map {
    padding: 26px;
  }

  .share-box {
    padding: 25px;
  }

  .all-accounts {
    padding: 25px;
  }

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

  .info-section {
    padding: 44px;
  }

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

/* Reduz animações quando o usuário solicitar */

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}