
:root {
  --red: #c90000;
  --red-dark: #a90000;
  --ink: #171717;
  --muted: #666;
  --line: #e6e6e6;
  --surface: #f7f7f7;
  --content: 880px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  border-top: 4px solid #222;
}

.utility-bar {
  background: #222;
  color: #fff;
  font-size: 13px;
}

.utility-inner,
.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.utility-inner nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-inner a {
  opacity: .92;
}

.utility-inner a:hover {
  opacity: 1;
  text-decoration: underline;
}

.utility-inner > span {
  font-weight: 700;
  letter-spacing: .04em;
}

.main-header {
  background: linear-gradient(90deg, #bd0000, #d30000 55%, #b90000);
  color: #fff;
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  font-style: italic;
  font-size: clamp(30px, 4vw, 47px);
  font-weight: 800;
  letter-spacing: -2px;
  white-space: nowrap;
}

.region {
  justify-self: center;
  font-size: clamp(20px, 2.7vw, 36px);
  font-weight: 300;
  white-space: nowrap;
}

.menu-button,
.search-button {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-button {
  width: 34px;
  height: 34px;
  padding: 5px;
  display: grid;
  align-content: center;
  gap: 5px;
}

.menu-button span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.search-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.search-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

main {
  padding: 20px 16px 70px;
}

.ad {
  width: min(970px, 100%);
  min-height: 100px;
  margin: 0 auto 36px;
  display: grid;
  place-content: center;
  gap: 6px;
  text-align: center;
  color: #6a6a6a;
  background:
    linear-gradient(135deg, transparent 0 36%, rgba(255,255,255,.65) 36% 45%, transparent 45% 100%),
    #f0f0f0;
  border: 1px solid #ececec;
}

.ad strong {
  font-size: 15px;
}

.ad span {
  font-size: 13px;
}

.article {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.fiction-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 17px;
  margin-bottom: 24px;
  border: 2px solid #e00000;
  border-radius: 999px;
  color: #d40000;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}

h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: .99;
  letter-spacing: -2.5px;
}

.subtitle {
  margin: 24px 0 22px;
  max-width: 820px;
  color: #565656;
  font-size: clamp(19px, 2.5vw, 24px);
  line-height: 1.38;
}

.byline {
  display: grid;
  gap: 6px;
  color: #5b5b5b;
  font-size: 15px;
}

.byline strong {
  color: var(--red);
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 23px 0 34px;
}

.share-button {
  width: 54px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.share-button:hover {
  transform: translateY(-2px);
  border-color: #bbb;
  box-shadow: 0 7px 18px rgba(0,0,0,.08);
}

.share-button:active {
  transform: translateY(0);
}

.share-button svg {
  width: 25px;
  height: 25px;
  fill: #222;
}

.share-button[data-share="facebook"] svg,
.share-button[data-share="linkedin"] svg {
  fill: #1473e6;
}

.share-button[data-share="whatsapp"] svg {
  fill: #16a83e;
}

.hero {
  margin: 0;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 670px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 3px;
  background: #eee;
}

.hero figcaption {
  margin-top: 10px;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
}

.disclaimer {
  margin: 30px 0;
  padding: 20px 22px;
  border-left: 5px solid var(--red);
  background: #fff2f2;
  color: #3e2525;
  font-size: 16px;
  line-height: 1.5;
}

.article-body {
  width: min(740px, 100%);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.72;
}

.article-body p {
  margin: 0 0 26px;
}

.article-body .lead {
  font-size: clamp(21px, 2.6vw, 25px);
  line-height: 1.56;
}

.article-body h2 {
  margin: 48px 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.article-body blockquote {
  margin: 35px 0;
  padding: 4px 0 4px 24px;
  border-left: 5px solid var(--red);
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.35;
}

.info-box {
  margin: 36px 0;
  padding: 26px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background: var(--surface);
}

.info-box h3 {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
}

.info-box ul {
  margin: 0;
  padding-left: 24px;
}

.info-box li + li {
  margin-top: 8px;
}

.article-footer {
  margin-top: 55px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #555;
  font-size: 13px;
}

.article-footer strong {
  color: var(--red);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 20;
  transform: translate(-50%, 24px);
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(25,25,25,.95);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 760px) {
  .site-header {
    border-top-width: 0;
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    width: 100%;
    min-height: 62px;
    padding: 0 14px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    font-size: 27px;
    letter-spacing: -1.2px;
  }

  .region {
    display: none;
  }

  .search-button {
    padding: 7px;
  }

  .search-button span {
    display: none;
  }

  main {
    padding: 14px 0 48px;
  }

  .ad {
    width: calc(100% - 28px);
    min-height: 76px;
    margin-bottom: 26px;
  }

  .article {
    width: 100%;
  }

  .article > :not(.hero):not(.article-body) {
    margin-left: 18px;
    margin-right: 18px;
  }

  .fiction-badge {
    margin-bottom: 19px;
    font-size: 12px;
  }

  h1 {
    margin-left: 18px;
    margin-right: 18px;
    font-size: clamp(37px, 11.4vw, 53px);
    line-height: 1.01;
    letter-spacing: -1.9px;
  }

  .subtitle {
    margin-top: 19px;
    font-size: 18px;
    line-height: 1.42;
  }

  .byline {
    font-size: 14px;
  }

  .share-row {
    margin-top: 20px;
    margin-bottom: 26px;
  }

  .share-button {
    width: 49px;
    height: 44px;
    border-radius: 12px;
  }

  .hero img {
    width: 100%;
    max-height: none;
    border-radius: 0;
  }

  .hero figcaption {
    padding: 0 18px;
  }

  .disclaimer {
    margin-top: 24px !important;
    padding: 17px 18px;
  }

  .article-body {
    width: 100%;
    padding: 0 18px;
    font-size: 18px;
    line-height: 1.66;
  }

  .article-body .lead {
    font-size: 21px;
  }

  .article-body h2 {
    margin-top: 40px;
  }

  .article-body blockquote {
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    font-size: 23px;
  }

  .info-box {
    padding: 21px;
  }

  .article-footer {
    margin-top: 42px !important;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 36px;
  }

  .brand {
    font-size: 25px;
  }

  .share-row {
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


.disclaimer-final {
  width: min(740px, 100%);
  margin: 44px auto 0;
  padding: 14px 16px;
  border-left-width: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: #5b3b3b;
  background: #fff7f7;
}

.disclaimer-final strong {
  color: #a80000;
}

@media (max-width: 760px) {
  .disclaimer-final {
    width: auto;
    margin: 38px 18px 0 !important;
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.4;
  }
}


/* Ajustes da versão v6 */
@media (max-width: 760px) {
  .fiction-badge {
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(32px, 9.6vw, 43px);
    line-height: 1.02;
    letter-spacing: -1.35px;
  }

  .subtitle {
    margin-top: 14px;
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 1.34;
  }

  .byline {
    margin-bottom: 14px;
    gap: 3px;
    font-size: 13px;
  }

  .hero {
    margin-top: 0;
  }

  .hero img {
    max-height: 54vh;
    object-fit: cover;
    object-position: center 34%;
  }

  .share-row {
    margin-top: 16px;
    margin-bottom: 22px;
  }
}
