:root {
  color-scheme: dark;
  --ink: #fcfdfc;
  --muted: rgba(227, 250, 236, .68);
  --paper: #1d1d1d;
  --panel: rgba(29, 29, 29, .96);
  --panel-strong: #1d1d1d;
  --line: rgba(60, 225, 124, .18);
  --accent: #3ce17c;
  --accent-dark: #1d1d1d;
  --lime: #cbed66;
  --mint: #e3faec;
  --danger: #ff9b87;
  --shadow: 0 30px 90px rgba(0, 0, 0, .38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { width: 100%; min-height: 100%; overflow-x: clip; background: var(--paper); }

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(10, 31, 24, .86), rgba(2, 10, 7, .98)),
    radial-gradient(circle at 20% 25%, #244c26 0, transparent 32%);
  overflow-x: hidden;
}

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

.page-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: .17;
}
.page-glow-one { background: #9bd52e; top: -230px; right: -160px; }
.page-glow-two { background: #259e6f; bottom: -320px; left: -220px; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  z-index: 1;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent-dark);
  background: var(--accent);
  font-size: 11px;
  letter-spacing: -.06em;
}

.site-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
}

.layout {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: 48px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.context-panel { padding: 24px 0; }
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

h1 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 760;
}

h1 em { color: var(--accent); font-style: normal; }
.lead {
  max-width: 560px;
  margin: 24px 0 30px;
  color: #c9d1cc;
  font-size: 17px;
  line-height: 1.65;
}

.method-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(14, 39, 30, .5);
  backdrop-filter: blur(12px);
}

.method-card > div { padding: 17px 15px; border-right: 1px solid var(--line); }
.method-card > div:last-child { border-right: 0; }
.method-card span { display: block; color: var(--accent); font-size: 10px; font-weight: 800; margin-bottom: 9px; }
.method-card strong { display: block; font-size: 14px; margin-bottom: 4px; }
.method-card small { color: var(--muted); font-size: 11px; line-height: 1.4; }

.proof-row { display: flex; gap: 34px; margin-top: 28px; }
.proof-row div { display: flex; flex-direction: column; }
.proof-row strong { font-size: 19px; color: var(--ink); }
.proof-row span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.source-note { color: #75877e; font-size: 11px; margin: 18px 0 0; }

.chat-card {
  min-height: 690px;
  max-height: 790px;
  display: grid;
  grid-template-rows: auto 3px minmax(0, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(213, 245, 106, .16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 43, 34, .97), rgba(7, 23, 17, .98));
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 20px;
  background: rgba(255, 255, 255, .025);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.avatar-wrap { position: relative; flex: 0 0 auto; }
.avatar-wrap img, .typing img, .message-avatar {
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 34%;
  border: 2px solid rgba(60, 225, 124, .72);
}
.online-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  right: 0;
  bottom: 1px;
  background: #3ce17c;
  border: 2px solid var(--panel-strong);
}
.chat-header strong { display: block; font-size: 15px; }
.chat-header span { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.restart-button {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: .2s ease;
}
.restart-button:hover, .restart-button:focus-visible { color: var(--accent); border-color: var(--accent); }

.progress-track { background: rgba(255, 255, 255, .04); }
.progress-track span { display: block; width: 4%; height: 100%; background: var(--accent); transition: width .45s ease; }

.chat-log {
  overflow-y: auto;
  padding: 24px 20px 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(60, 225, 124, .34) transparent;
}

.message { max-width: 100%; min-width: 0; display: flex; align-items: flex-end; gap: 9px; margin: 0 0 14px; animation: rise .28s ease both; }
.message.user { justify-content: flex-end; }
.message-avatar { width: 32px; height: 32px; flex: 0 0 auto; }
.bubble {
  min-width: 0;
  max-width: min(85%, 430px);
  padding: 12px 15px;
  border-radius: 6px 18px 18px 18px;
  color: #fcfdfc;
  background: rgba(252, 253, 252, .09);
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.user .bubble {
  color: var(--accent-dark);
  background: var(--accent);
  border-radius: 18px 18px 6px 18px;
  font-weight: 650;
}
.bubble strong { color: var(--accent); }
.user .bubble strong { color: inherit; }

.typing { display: flex; gap: 9px; align-items: center; padding: 0 20px 8px; }
.typing[hidden] { display: none; }
.typing span { display: flex; gap: 4px; padding: 12px 14px; border-radius: 6px 18px 18px 18px; background: rgba(252, 253, 252, .09); }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: blink 1s infinite; }
.typing i:nth-child(2) { animation-delay: .16s; }
.typing i:nth-child(3) { animation-delay: .32s; }

.composer {
  min-height: 94px;
  padding: 12px 20px 17px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: rgba(5, 18, 13, .64);
}
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.option-button, .primary-button, .secondary-button {
  min-height: 46px;
  border: 1px solid rgba(60, 225, 124, .26);
  border-radius: 13px;
  padding: 10px 13px;
  background: rgba(252, 253, 252, .07);
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  line-height: 1.35;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.option-button:hover, .option-button:focus-visible { transform: translateY(-1px); border-color: var(--accent); background: rgba(60, 225, 124, .12); }
.option-button span { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; }

.composer form, .input-row { width: 100%; min-width: 0; max-width: 100%; }
.input-row { display: flex; gap: 9px; align-items: flex-start; }
.input-stack { flex: 1; min-width: 0; }
.text-input, .text-area, .phone-country-select, .ddi-input {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, .055);
  color: var(--ink);
  padding: 13px 15px;
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.phone-fields { display: grid; grid-template-columns: minmax(126px, .78fr) minmax(0, 1fr); gap: 8px; }
.phone-country-select {
  appearance: auto;
  padding: 13px 10px;
  cursor: pointer;
}
.phone-country-select option { color: #1d1d1d; background: #fcfdfc; }
.phone-local-input { min-width: 0; }
.custom-ddi-row {
  display: grid;
  grid-template-columns: auto minmax(90px, 120px);
  align-items: center;
  justify-content: start;
  gap: 8px;
  margin-top: 8px;
  color: rgba(227, 250, 236, .72);
  font-size: 11px;
}
.custom-ddi-row[hidden] { display: none; }
.ddi-input { padding: 9px 11px; font-size: 16px; }
.text-area { resize: vertical; min-height: 76px; max-height: 130px; }
.text-input::placeholder, .text-area::placeholder, .ddi-input::placeholder { color: rgba(227, 250, 236, .43); }
.text-input:focus, .text-area:focus, .phone-country-select:focus, .ddi-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(60, 225, 124, .11); }
.send-button {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  color: var(--accent-dark);
  background: var(--accent);
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}
.field-hint { display: block; color: rgba(227, 250, 236, .52); font-size: 10px; margin: 6px 3px 0; }
.field-error { display: block; min-height: 15px; color: var(--danger); font-size: 11px; margin: 5px 3px 0; }

.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
  color: rgba(227, 250, 236, .72);
  font-size: 11px;
  line-height: 1.45;
}
.consent-box input { accent-color: var(--accent); margin-top: 2px; }
.primary-button, .secondary-button { width: 100%; text-align: center; font-weight: 800; }
.primary-button { border-color: var(--accent); color: var(--accent-dark); background: var(--accent); }
.secondary-button { color: var(--accent); background: transparent; }
.primary-button:hover, .primary-button:focus-visible, .secondary-button:hover, .secondary-button:focus-visible { transform: translateY(-1px); }
.button-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }

.diagnosis-card {
  padding: 17px;
  border: 1px solid rgba(60, 225, 124, .3);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(60, 225, 124, .11), rgba(252, 253, 252, .045));
}
.diagnosis-card span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.diagnosis-card h3 { margin: 8px 0; font-size: 17px; }
.diagnosis-card p { margin: 0; color: rgba(227, 250, 236, .82); font-size: 12px; line-height: 1.55; }

.schedule-title { margin: 0; color: var(--ink); font-size: 13px; font-weight: 800; }
.schedule-subtitle { margin: 3px 0 10px; color: var(--muted); font-size: 10px; }
.slot-days {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 1px 1px 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(60, 225, 124, .35) transparent;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
}
.day-button {
  min-width: 78px;
  min-height: 52px;
  flex: 0 0 auto;
  border: 1px solid rgba(252,253,252,.13);
  border-radius: 12px;
  padding: 8px;
  background: rgba(252,253,252,.06);
  cursor: pointer;
  scroll-snap-align: start;
}
.day-button.active { border-color: var(--accent); color: var(--accent-dark); background: var(--accent); }
.day-button strong, .day-button span { display: block; text-align: center; }
.day-button strong { font-size: 11px; }
.day-button span { color: var(--muted); font-size: 10px; margin-top: 2px; }
.day-button.active span { color: rgba(29,29,29,.72); }
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-height: 0;
  max-height: 245px;
  overflow-y: auto;
  margin-top: 2px;
  padding: 1px 3px 10px 1px;
  scrollbar-width: thin;
  scrollbar-color: rgba(60, 225, 124, .4) transparent;
  overscroll-behavior-y: contain;
}
.slot-button {
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(60,225,124,.3);
  border-radius: 11px;
  padding: 9px 6px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.slot-button:hover, .slot-button:focus-visible { color: var(--accent-dark); background: var(--accent); }
.slot-note { color: var(--muted); font-size: 11px; text-align: center; padding: 12px; }

.privacy-line {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 14px;
  color: rgba(227, 250, 236, .48);
  background: rgba(29, 29, 29, .98);
  font-size: 9px;
  text-align: center;
}
.noscript { position: fixed; inset: auto 20px 20px; padding: 12px; color: #111; background: var(--accent); border-radius: 12px; text-align: center; }

@keyframes rise { from { opacity: 0; transform: translateY(8px); } }
@keyframes blink { 0%, 65%, 100% { opacity: .25; transform: translateY(0); } 35% { opacity: 1; transform: translateY(-2px); } }

@media (max-width: 940px) {
  .layout { grid-template-columns: 1fr; gap: 34px; padding-top: 34px; }
  .context-panel { text-align: center; padding: 0; }
  h1, .lead { margin-left: auto; margin-right: auto; }
  .method-card { max-width: 650px; margin: 0 auto; }
  .proof-row { justify-content: center; }
  .chat-card { width: min(650px, 100%); margin: 0 auto; min-height: 660px; }
}

@media (max-width: 600px) {
  .site-header { width: calc(100% - 28px); min-height: 68px; }
  .site-header p { display: none; }
  .layout { width: 100%; padding: 24px 0 0; gap: 28px; }
  .context-panel { padding: 0 18px; }
  h1 { font-size: clamp(38px, 12vw, 55px); }
  .lead { font-size: 15px; margin-top: 18px; }
  .method-card { grid-template-columns: 1fr; text-align: left; }
  .method-card > div { border-right: 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 30px 1fr; }
  .method-card > div:last-child { border-bottom: 0; }
  .method-card span { grid-row: span 2; }
  .proof-row { gap: 22px; }
  .source-note { margin-bottom: 0; }
  .chat-card { min-height: 700px; max-height: none; height: calc(100dvh - 16px); border-radius: 24px 24px 0 0; border-left: 0; border-right: 0; }
  .chat-header { padding: 13px 15px; }
  .chat-log { padding: 18px 14px 12px; }
  .composer { padding: 11px 14px 14px; }
  .option-grid { grid-template-columns: 1fr; max-height: 220px; overflow-y: auto; }
  .bubble { max-width: 88%; }
  .button-pair { grid-template-columns: 1fr; }
}

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

.not-found-page { display: grid; place-items: center; padding: 20px; }
.not-found-card { width: min(460px, 100%); padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); box-shadow: var(--shadow); }
.not-found-card h1 { font-size: 38px; }
.not-found-card > p:not(.eyebrow) { margin: 14px 0 24px; color: var(--muted); }
.not-found-card .eyebrow { margin-top: 22px; }
.not-found-card .primary-button { display: block; text-decoration: none; }

/* Experiência de chat em página única, inspirada no fluxo conversacional da MarAI. */
.chat-only {
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  background: #1d1d1d;
}

.chat-only-layout {
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: stretch center;
}

.chat-only .chat-card {
  width: min(720px, 100%);
  max-width: 100vw;
  min-width: 0;
  height: 100dvh;
  min-height: 0;
  max-height: none;
  margin: 0;
  grid-template-rows: auto 3px minmax(0, 1fr) auto auto auto;
  border-color: rgba(252, 253, 252, .08);
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  background: #1d1d1d;
  box-shadow: 0 0 100px rgba(0, 0, 0, .55);
}

.chat-only .chat-header {
  width: 100%;
  min-width: 0;
  min-height: 74px;
  padding: 12px 18px;
  background: rgba(29, 29, 29, .97);
  backdrop-filter: blur(16px);
}

.chat-identity { min-width: 0; }
.chat-identity strong, .chat-identity span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-actions .step-pill {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(60, 225, 124, .25);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(60, 225, 124, .08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .03em;
  white-space: nowrap;
  flex: 0 0 auto;
}

.chat-only .restart-button { margin-left: 0; }
.chat-only .chat-log { width: 100%; min-width: 0; padding: 26px 20px 20px; }
.chat-only .composer {
  width: 100%;
  min-width: 0;
  min-height: 88px;
  padding-bottom: 14px;
  background: rgba(29, 29, 29, .97);
  backdrop-filter: blur(14px);
}
.chat-only .composer.schedule-mode {
  min-height: 278px;
  max-height: min(48dvh, 410px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  padding: 13px 16px max(14px, env(safe-area-inset-bottom));
  border-top-color: rgba(60, 225, 124, .2);
}
.chat-only .privacy-line { min-height: 35px; }

.gift-announcement {
  max-width: min(84%, 450px);
  padding: 15px 17px;
  border: 1px solid rgba(60, 225, 124, .58);
  border-radius: 6px 18px 18px 18px;
  color: #e3faec;
  background: linear-gradient(135deg, rgba(60, 225, 124, .16), rgba(252, 253, 252, .055));
  box-shadow: 0 10px 30px rgba(60, 225, 124, .1);
  font-size: 14px;
  line-height: 1.5;
  animation: gift-pop .6s cubic-bezier(.22, 1, .36, 1) both;
}
.gift-announcement strong { display: block; margin: 3px 0; color: #cbed66; font-size: 17px; }

.bonus-card-message { align-items: flex-end; }
.bonus-card {
  width: min(390px, 84%);
  overflow: hidden;
  position: relative;
  padding: 19px;
  border: 1px solid rgba(60, 225, 124, .38);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(60, 225, 124, .18), transparent 36%),
    linear-gradient(155deg, rgba(252, 253, 252, .08), rgba(29, 29, 29, .98) 78%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .36);
  animation: gift-pop .6s cubic-bezier(.22, 1, .36, 1) both;
}

.bonus-badge {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  color: #1d1d1d;
  background: linear-gradient(135deg, #3ce17c, #cbed66);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}
.bonus-kicker { display: block; margin-top: 14px; color: var(--mint); font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.bonus-title { margin-top: 3px; color: #fcfdfc; font-size: 27px; line-height: 1.05; font-weight: 900; letter-spacing: -.04em; }
.bonus-description { margin: 9px 0 15px; color: rgba(227, 250, 236, .76); font-size: 12px; line-height: 1.5; }
.bonus-items { display: grid; gap: 7px; }
.bonus-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border-radius: 10px;
  color: #1d1d1d;
  background: #fcfdfc;
  font-size: 11px;
  font-weight: 750;
}
.bonus-item > span {
  flex: 0 0 auto;
  padding: 3px 6px;
  border-radius: 6px;
  color: var(--accent-dark);
  background: var(--accent);
  font-size: 9px;
}
.bonus-item.locked { filter: blur(2.2px); opacity: .62; }
.bonus-lock { margin: -2px auto 0; width: max-content; max-width: 100%; padding: 5px 11px; border: 1px solid rgba(60,225,124,.28); border-radius: 999px; color: #e3faec; background: rgba(29,29,29,.9); font-size: 9px; font-weight: 750; }
.bonus-footer { margin-top: 16px; color: rgba(227,250,236,.78); font-size: 11px; text-align: center; }
.bonus-footer strong { color: var(--accent); font-size: 15px; }

@keyframes gift-pop {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  70% { transform: scale(1.015); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 600px) {
  .chat-only .chat-card { width: 100%; height: 100dvh; min-height: 0; border-radius: 0; }
  .chat-only .chat-header { min-height: 68px; padding: 10px 12px; }
  .chat-only .avatar-wrap img { width: 44px; height: 44px; }
  .chat-identity strong { font-size: 13px; }
  .chat-identity span { max-width: 155px; font-size: 9px; }
  .chat-actions { gap: 5px; }
  .chat-actions .step-pill { padding: 5px 7px; font-size: 9px; }
  .chat-only .restart-button { width: 32px; height: 32px; }
  .chat-only .chat-log { padding: 20px 13px 14px; }
  .text-input, .text-area, .phone-country-select, .ddi-input { font-size: 16px; line-height: 1.3; }
  .phone-fields { grid-template-columns: minmax(118px, .8fr) minmax(0, 1fr); gap: 6px; }
  .phone-country-select { padding-inline: 8px; }
  .chat-only .composer.schedule-mode {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    padding: 12px 12px max(12px, env(safe-area-inset-bottom));
  }
  .schedule-title { font-size: 14px; }
  .schedule-subtitle { margin-bottom: 9px; font-size: 10px; }
  .day-button { min-width: 72px; min-height: 50px; padding: 7px 6px; }
  .slot-grid {
    height: 160px;
    min-height: 160px;
    max-height: 160px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .slot-button { min-height: 46px; font-size: 14px; }
  .bonus-card { width: 86%; padding: 16px; }
  .bonus-title { font-size: 24px; }
}
/* Fallback sem JavaScript exigido pelo Google Tag Manager. */
.gtm-fallback {
  display: none;
  visibility: hidden;
}
