* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #171717;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
a:hover { text-decoration: underline; }

/* Top globo bar */
.globo-bar { width: 100%; background: #fff; border-bottom: 1px solid #e5e5e5; }
.globo-bar-inner {
  display: flex; align-items: center; gap: 20px;
  height: 48px; padding: 0 12px; overflow: hidden;
  font-size: 16px; font-weight: 700; line-height: 1;
}
.globo-bar-inner a { flex-shrink: 0; }

/* Main header */
.main-header { width: 100%; background: #c4170c; color: #fff; }
.main-header-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  align-items: center; height: 48px; padding: 0 12px;
}
.hdr-left { display: flex; align-items: center; gap: 16px; justify-self: start; }
.hdr-right { display: flex; align-items: center; gap: 16px; justify-self: end; }
.hdr-title { justify-self: center; font-size: 20px; font-weight: 400; line-height: 1; }
.icon { width: 28px; height: 28px; color: #fff; }
.icon-sm { width: 24px; height: 24px; }
.g1-logo { font-size: 31px; font-weight: 700; line-height: 1; letter-spacing: -0.06em; }

/* Avatar icon */
.avatar { position: relative; width: 22px; height: 22px; border-radius: 50%; background: #fff; }
.a-head { position: absolute; left: 50%; top: 4px; width: 6px; height: 6px; transform: translateX(-50%); border-radius: 50%; background: #c4170c; }
.a-body { position: absolute; bottom: 3px; left: 50%; width: 12px; height: 9px; transform: translateX(-50%); border-top-left-radius: 999px; border-top-right-radius: 999px; background: #c4170c; }
.a-dot { position: absolute; right: -3px; top: 2px; width: 7px; height: 7px; border-radius: 50%; border: 2px solid #c4170c; background: #fff; }

/* Content */
.content { max-width: 768px; margin: 0 auto; padding: 24px 16px 40px; }
.headline {
  font-size: 22px; line-height: 1.35; font-weight: 800;
  color: #171717; margin-bottom: 20px;
}
.hl-mark {
  background: #fde047; padding: 4px 4px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
@media (min-width: 640px) {
  .headline { font-size: 30px; line-height: 1.25; }
}

.vsl-wrap { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }

.noticia-tambem { margin-top: 32px; padding-top: 24px; background: #fff; }
.noticia-tambem img { display: block; width: 100%; max-width: 28rem; margin: 0 auto; mix-blend-mode: multiply; }

/* Testimonials */
.testimonials { margin-top: 40px; }
.t-title { margin-bottom: 16px; font-size: 16px; font-weight: 700; color: #171717; }
.testimonials ul { list-style: none; }
.t-item { display: flex; gap: 12px; padding: 16px 0; border-top: 1px solid #e5e5e5; }
.t-item:first-child { border-top: none; }
.t-avatar { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.t-body { flex: 1; }
.t-name { font-size: 14px; font-weight: 700; color: #385898; }
.t-text { margin-top: 2px; font-size: 15px; line-height: 1.4; color: #262626; }
.t-meta { margin-top: 4px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: #737373; flex-wrap: wrap; }
.t-meta button { background: none; border: none; padding: 0; font-weight: 600; color: inherit; cursor: pointer; font-size: 12px; font-family: inherit; }
.t-meta button:hover { text-decoration: underline; }
.t-likes { display: inline-flex; align-items: center; gap: 4px; }
.t-likes svg { width: 12px; height: 12px; fill: #385898; color: #385898; }
