:root {
  --gl-forest:#061D18;
  --gl-deep-green:#082821;
  --gl-bone:#EEE8DC;
  --gl-warm-white:#F5F2EA;
  --gl-bronze:#A9743B;
  --gl-light-bronze:#C99A5B;
  --text-muted:#58635b;
  --border:#ccc9bc;
  --error:#9b3527;
  --radius:8px;
  font-family:'Poppins',Arial,sans-serif;
  color:var(--gl-forest);
  background:var(--gl-forest);
  font-synthesis:none;
}
* {
  box-sizing:border-box;
}
body {
  margin:0;
}
button,input {
  font:inherit;
}
button,label,input {
  -webkit-tap-highlight-color:transparent;
}
button {
  cursor:pointer;
}
button:disabled {
  cursor:not-allowed;
}
button,input {
  min-height:48px;
}
button:focus-visible,input:focus-visible,a:focus-visible {
  outline:3px solid var(--gl-bronze);
  outline-offset:4px;
}
input[type=radio],input[type=checkbox] {
  accent-color:var(--gl-deep-green);
  width:19px;
  height:19px;
  min-height:19px;
  flex-shrink:0;
}
input[type=radio] {
  margin:0;
}
[hidden] {
  display:none!important;
}
.site-header {
  max-width:1176px;
  margin:auto;
  padding:21px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #ffffff20;
}
.site-header img {
  display:block;
  width:174px;
  height:58px;
  object-fit:contain;
}
.site-header>span {
  color:var(--gl-bone);
  font-size:10px;
  letter-spacing:2px;
}
.intro {
  max-width:1120px;
  margin:0 auto;
  padding:49px 0 43px;
  color:var(--gl-warm-white);
}
.eyebrow {
  font-size:10px;
  font-weight:600;
  letter-spacing:1.7px;
  line-height:1.8;
  color:var(--gl-light-bronze);
  margin:0 0 18px;
}
h1 {
  font-family:'Newsreader',Georgia,serif;
  font-size:54px;
  line-height:1.08;
  font-weight:400;
  letter-spacing:-1.5px;
  margin:0 0 16px;
}
.title-logo {
  display:inline-block;
  width:252px;
  max-width:100%;
  height:auto;
  vertical-align:middle;
  margin-left:4px;
}
.intro>p:not(.eyebrow) {
  font-size:14px;
  line-height:1.85;
  color:var(--gl-bone);
  margin:0;
}
.intro-note {
  display:flex;
  gap:9px;
  align-items:center;
  font-size:11px;
  color:var(--gl-bone);
  margin-top:20px;
}
.intro-note>span {
  border:1px solid var(--gl-light-bronze);
  border-radius:50%;
  width:17px;
  height:17px;
  text-align:center;
  font-family:Georgia,serif;
  font-size:12px;
  color:var(--gl-light-bronze);
}
.calculator-layout {
  max-width:1120px;
  margin:auto;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);
  align-items:start;
  background:var(--gl-warm-white);
  border-radius:12px;
  overflow:clip;
}
form {
  padding:36px 34px;
  background:var(--gl-warm-white);
  min-width:0;
}
fieldset {
  padding:0 0 28px;
  margin:0 0 28px;
  border:0;
  border-bottom:1px solid var(--border);
  min-width:0;
}
legend {
  font-size:17px;
  line-height:1.6;
  font-weight:500;
  padding:0;
  width:100%;
  margin-bottom:8px;
}
.step {
  font-size:11px;
  color:#785027;
  margin-right:12px;
  vertical-align:2px;
  font-weight:600;
}
.helper {
  font-size:12px;
  color:var(--text-muted);
  line-height:1.8;
  margin:0 0 16px;
}
.presentation-options {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.presentation-option {
  border:1px solid var(--border);
  border-radius:var(--radius);
  display:flex;
  align-items:center;
  gap:10px;
  min-height:57px;
  padding:12px;
  font-size:12px;
  cursor:pointer;
  background:#ffffff35;
}
.presentation-option:has(input:checked),.syringe-option:has(input:checked) {
  border-color:var(--gl-bronze);
  box-shadow:inset 0 0 0 1px var(--gl-bronze);
  background:#ece4d4;
}
.presentation-option:has(input:focus-visible),.syringe-option:has(input:focus-visible) {
  outline:3px solid var(--gl-bronze);
  outline-offset:3px;
}
.custom-fields {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:18px;
}
label.field-label,.custom-fields label {
  font-size:12px;
  display:block;
  margin-bottom:8px;
  font-weight:500;
}
.input-unit {
  position:relative;
}
.input-unit input {
  width:100%;
  border:1px solid var(--border);
  background:#fffdf8;
  border-radius:var(--radius);
  padding:13px 48px 13px 15px;
  color:var(--gl-forest);
  font-size:16px;
}
.input-unit input[aria-invalid=true] {
  border-color:var(--error);
}
.input-unit>span {
  position:absolute;
  right:16px;
  top:15px;
  color:var(--text-muted);
  font-size:14px;
}
.dose-unit input {
  font-size:18px;
  min-height:58px;
}
.dose-unit>span {
  top:18px;
}
.quick-help {
  margin:14px 0 10px;
  font-size:11px;
}
.quick-doses {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}
.quick-doses button,.capacity-actions button {
  border:1px solid var(--border);
  background:transparent;
  border-radius:6px;
  color:var(--gl-forest);
  font-size:12px;
  padding:8px 4px;
  white-space:nowrap;
}
.quick-doses button span {
  font-size:10px;
}
.quick-doses button[aria-pressed=true] {
  background:var(--gl-deep-green);
  color:var(--gl-warm-white);
  border-color:var(--gl-deep-green);
}
.quick-doses button:hover,.capacity-actions button:hover {
  border-color:var(--gl-bronze);
}
.syringe-options {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.syringe-option {
  padding:13px 10px 0;
  border:1px solid var(--border);
  border-radius:var(--radius);
  cursor:pointer;
  position:relative;
  min-width:0;
}
.syringe-option>input {
  width:16px;
  height:16px;
  min-height:16px;
  margin-bottom:9px;
}
.syringe-choice-content {
  display:flex;
  flex-direction:column;
}
.syringe-choice-content strong {
  font-size:11px;
  font-weight:500;
  white-space:nowrap;
}
.syringe-choice-content>span {
  font-size:10px;
  color:var(--text-muted);
  margin-top:3px;
}
.miniature {
  margin:0!important;
  width:100%!important;
}
.miniature .scale-mark text {
  display:none;
}
.confirmation {
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:12px;
  line-height:1.8;
  cursor:pointer;
}
.confirmation input {
  margin:2px 0 0;
}
.primary {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  min-height:56px;
  width:100%;
  border:0;
  border-radius:var(--radius);
  background:var(--gl-deep-green);
  color:var(--gl-warm-white);
  font-size:12px;
  font-weight:500;
  letter-spacing:1.2px;
  margin-top:22px;
}
.primary:disabled {
  background:#d7d9ce;
  color:#61685d;
}
.primary:not(:disabled):hover {
  background:#164537;
}
.primary>span {
  font-size:21px;
}
.button-help {
  font-size:10px;
  line-height:1.8;
  color:var(--text-muted);
  text-align:center;
  margin:10px 0 0;
}
.error {
  color:var(--error);
  font-size:12px;
  line-height:1.6;
  margin:8px 0 0;
}
.error:empty {
  display:none;
}
.preview-panel {
  padding:36px 30px;
  background:var(--gl-bone);
  position:sticky;
  top:16px;
  min-width:0;
  align-self:start;
  margin:14px;
  border-radius:8px;
}
.preview-panel h2 {
  font-family:'Newsreader',Georgia,serif;
  font-weight:400;
  font-size:32px;
  line-height:1.15;
  margin:0 0 14px;
  letter-spacing:-.5px;
}
.preview-intro {
  font-size:12px;
  color:var(--text-muted);
  line-height:1.9;
  max-width:330px;
}
.preview-panel .eyebrow {
  color:#775025;
  font-size:9px;
}
.empty-preview {
  min-height:236px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--text-muted);
  font-size:12px;
  line-height:1.9;
}
.empty-preview svg {
  width:42px;
  fill:none;
  stroke:var(--gl-bronze);
  stroke-width:1.2;
  margin-bottom:10px;
}
.safety-notice {
  font-size:11px;
  line-height:1.95;
  color:var(--text-muted);
  border-top:1px solid #c9c6b9;
  padding-top:22px;
  margin:26px 0 0;
}
.syringe-heading {
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  font-size:11px;
  border-top:1px solid #c9c6b9;
  padding-top:22px;
  margin-top:26px;
}
.syringe-heading strong {
  font-weight:500;
}
.syringe-heading span {
  font-size:10px;
  color:var(--text-muted);
}
.syringe {
  width:calc(100% + 24px);
  height:auto;
  display:block;
  overflow:visible;
  margin:6px -12px 0;
}
/* Transparent plastic, black seal and orange cap from the supplied references. */
.barrel {
  fill:#f9faf6;
  fill-opacity:.8;
  stroke:#8c9891;
  stroke-width:1.2;
}
.barrel-edge {
  fill:none;
  stroke:#bec8bf;
  stroke-width:2;
}
.needle-shadow { stroke:#5a625f; stroke-width:1.6; }
.needle { stroke:#afb8b2; stroke-width:.6; }
.needle-hub { fill:#e6ebe5; stroke:#9da89e; stroke-width:1; }
.plastic-highlight { fill:none; stroke:#fffefa; stroke-width:2; }
.cap-body { fill:#ef861a; stroke:#c46b12; stroke-width:1; }
.cap-rim { stroke:#dc7710; stroke-width:5; stroke-linecap:round; }
.cap-rib { fill:none; stroke:#d97312; stroke-width:1.3; }
.cap-shine { fill:none; stroke:#ffb657; stroke-width:2.5; stroke-linecap:round; }
.rod { fill:#e0e6de; stroke:#aab5ac; stroke-width:1; }
.rod-ridge { stroke:#fafbf6; stroke-width:2; }
.plunger-seal rect { fill:#30332f; }
.plunger-seal path { stroke:#686d64; stroke-width:1.2; }
.plunger-sleeve { fill:#f6f8f0; fill-opacity:.3; stroke:#b6c0b5; stroke-width:1; }
.thumb { fill:#e2e8df; stroke:#aab6aa; stroke-width:1; }
.flange { fill:#e2e8df; fill-opacity:.85; stroke:#a6b3a7; stroke-width:1; }
.scale-mark path { fill:none; stroke:#222b25; stroke-width:1.2; }
.minor-tick path { stroke-width:.85; }
.scale-mark text {
  fill:var(--gl-forest);
  font-family:'Poppins',Arial,sans-serif;
  font-size:14px;
  font-weight:500;
}
.liquid {
  fill:#aac4ad;
  animation:fill-in .35s ease-out;
}
.dose-marker>path:first-child {
  stroke:#794d22;
  stroke-width:2;
  stroke-dasharray:3 2;
}
.dose-marker .arrow,.dose-marker rect {
  fill:#794d22;
}
.dose-marker text {
  fill:#fffaf0;
  font-family:'Poppins',Arial,sans-serif;
  font-size:14px;
  font-weight:600;
}
.visual-caption {
  text-align:center;
  font-size:12px;
  line-height:1.8;
  margin:0;
}
.illustration-note {
  text-align:center;
  font-size:10px;
  line-height:1.8;
  color:var(--text-muted);
  margin:10px 0 0;
}
.preview-panel .result-label {
  max-width:270px;
  line-height:1.9;
  margin-bottom:10px;
}
.preview-panel .result-number {
  font-family:'Poppins',Arial,sans-serif;
  font-size:76px;
  font-weight:500;
  letter-spacing:-4px;
  margin:0;
  line-height:1.2;
}
.result-number>span {
  font-size:33px;
  font-weight:400;
  letter-spacing:-1px;
}
.scale-description {
  font-size:11px;
  color:var(--text-muted);
  margin:5px 0 24px;
}
.result-details {
  font-size:11px;
  line-height:1.8;
  margin:0;
}
.result-details>div {
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:8px;
}
.result-details dt {
  color:var(--text-muted);
}
.result-details dd {
  margin:0;
  text-align:right;
  overflow-wrap:anywhere;
}
.capacity-warning {
  border-top:1px solid #c9c6b9;
  margin-top:24px;
  padding-top:20px;
}
.capacity-warning h3 {
  font-size:15px;
  font-weight:500;
  line-height:1.6;
  margin:0 0 10px;
}
.capacity-warning p,.result-warning>p:last-child {
  font-size:12px;
  line-height:1.9;
}
.capacity-actions {
  display:flex;
  gap:10px;
  margin-top:16px;
}
.capacity-actions button {
  min-width:95px;
  border-color:var(--gl-bronze);
}
.reset {
  display:block;
  border:0;
  background:transparent;
  text-decoration:underline;
  text-underline-offset:5px;
  color:var(--gl-forest);
  font-size:11px;
  margin:18px auto 0;
  padding:6px 10px;
}
.reset span {
  padding-left:10px;
}
#result {
  scroll-margin-top:24px;
}
.platform-highlight {
  max-width:1120px;
  margin:32px auto 0;
  padding:44px 32px;
  border:1px solid #c99a5b66;
  border-radius:12px;
  background:var(--gl-deep-green);
  text-align:center;
  color:var(--gl-warm-white);
}
.platform-highlight h2 {
  font-family:'Newsreader',Georgia,serif;
  font-size:40px;
  font-weight:400;
  line-height:1.15;
  margin:0 0 20px;
}
.platform-copy {
  max-width:700px;
  margin:0 auto 28px;
  color:var(--gl-bone);
  font-size:15px;
  line-height:1.9;
}
.platform-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  max-width:100%;
  min-height:60px;
  padding:17px 25px;
  border:1px solid #ecd5a2;
  border-radius:8px;
  background:linear-gradient(115deg,#c99a5b 0%,#e9d1a0 44%,#f5e5bd 50%,#dfbc7e 62%,#c99a5b 100%);
  background-size:200% 100%;
  color:var(--gl-forest);
  box-shadow:inset 0 1px 0 #fff6d9,0 3px 18px #c99a5b22;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:background-position .45s ease,box-shadow .2s ease;
}
.platform-button:hover {
  background-position:100% 0;
  box-shadow:inset 0 1px 0 #fff6d9,0 4px 24px #c99a5b40;
}
.platform-button:focus-visible { outline:3px solid var(--gl-warm-white); outline-offset:5px; }
.platform-button>span:last-child { font-size:23px; }
@media(max-width:1190px) { .platform-highlight { margin-left:28px; margin-right:28px; } }
@media(max-width:599px) {
  .platform-highlight { margin:24px 16px 0; padding:32px 20px; }
  .platform-highlight h2 { font-size:32px; }
  .platform-copy { font-size:14px; text-align:left; }
  .platform-button { width:100%; padding:16px; gap:12px; font-size:13px; }
}
.author-section {
  max-width:1120px;
  margin:32px auto 0;
  padding:30px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-bottom:1px solid #ffffff20;
  color:var(--gl-warm-white);
}
.author-info .eyebrow { margin:0 0 9px; }
.author-info h2 {
  font-family:'Newsreader',Georgia,serif;
  font-size:32px;
  font-weight:400;
  margin:0 0 8px;
}
.author-info>p:last-child { color:var(--gl-bone); font-size:13px; margin:0; }
.instagram-button {
  display:flex;
  align-items:center;
  gap:15px;
  padding:16px 20px;
  min-height:70px;
  border:1px solid var(--gl-light-bronze);
  border-radius:var(--radius);
  color:var(--gl-warm-white);
  background:var(--gl-deep-green);
  text-decoration:none;
}
.instagram-button:hover { background:#164537; }
.instagram-button svg { width:25px; height:25px; fill:none; stroke:var(--gl-light-bronze); stroke-width:1.6; }
.instagram-button .instagram-dot { fill:var(--gl-light-bronze); stroke:none; }
.instagram-button span { font-size:12px; }
.instagram-button strong { display:block; font-size:15px; font-weight:500; margin-top:3px; }
.instagram-button .instagram-arrow { color:var(--gl-light-bronze); font-size:23px; margin-left:14px; }
@media(max-width:1190px) { .author-section { margin-left:28px; margin-right:28px; } }
@media(max-width:599px) {
  .author-section { flex-direction:column; align-items:stretch; margin:12px 24px 0; padding:28px 0; }
  .author-info h2 { font-size:30px; }
  .instagram-button .instagram-arrow { margin-left:auto; }
}
footer {
  max-width:1120px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:30px 0;
  color:var(--gl-bone);
  font-size:10px;
}
footer>p { text-align:right; }
footer>span {
  letter-spacing:2px;
  color:var(--gl-light-bronze);
}
.skip-link {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip-path:inset(50%);
  white-space:nowrap;
}
.skip-link:focus {
  position:fixed;
  top:12px;
  left:16px;
  width:auto;
  height:auto;
  clip-path:none;
  padding:16px;
  background:var(--gl-warm-white);
  z-index:5;
  color:var(--gl-forest);
}
@keyframes fill-in {
  from {
    transform:scaleX(0);
  }
  to {
    transform:scaleX(1);
  }
}
@media(max-width:1190px) {
  .intro,.calculator-layout,footer {
    margin-left:28px;
    margin-right:28px;
  }
  h1 {
    font-size:48px;
  }
  .preview-panel {
    padding:30px 22px;
  }
  form {
    padding:30px 26px;
  }
}
@media(max-width:899px) {
  .calculator-layout {
    grid-template-columns:1fr;
    max-width:620px;
    margin:0 auto;
  }
  .intro {
    max-width:620px;
    margin:auto;
    padding:35px 24px;
  }
  .site-header {
    padding:14px 24px;
  }
  .site-header>span {
    font-size:8px;
    letter-spacing:1px;
  }
  .site-header img {
    width:140px;
    height:47px;
  }
  h1 {
    font-size:43px;
  }
  .title-logo {
    display:block;
    width:210px;
    margin:3px 0 0;
  }
  .intro>p:not(.eyebrow) {
    font-size:13px;
  }
  .preview-panel {
    position:static;
    margin:0 18px 18px;
    padding:28px 24px;
  }
  form {
    padding:30px 26px;
  }
  .preview-panel h2 {
    font-size:32px;
  }
  .empty-preview {
    min-height:180px;
  }
  footer {
    padding:25px 0;
    margin:0 24px;
  }
  .syringe {
    max-width:none;
  }
}
@media(max-width:480px) {
  .calculator-layout {
    border-radius:12px 12px 0 0;
  }
  form {
    padding:28px 20px;
  }
  legend {
    font-size:16px;
  }
  .step {
    margin-right:8px;
  }
  .presentation-options {
    gap:8px;
  }
  .presentation-option {
    font-size:11px;
    padding:12px 9px;
    gap:8px;
  }
  .custom-fields {
    grid-template-columns:1fr;
  }
  .quick-doses {
    grid-template-columns:repeat(3,1fr);
  }
  .syringe-options {
    grid-template-columns:1fr;
    gap:9px;
  }
  .syringe-option {
    padding:12px;
    display:flex;
    align-items:center;
    gap:12px;
    min-height:75px;
  }
  .syringe-option>input {
    margin:0;
    width:19px;
    height:19px;
  }
  .syringe-choice-content {
    display:grid;
    grid-template-columns:1fr 106px;
    flex:1;
    align-items:center;
  }
  .syringe-choice-content strong {
    font-size:13px;
  }
  .syringe-choice-content>span {
    font-size:11px;
  }
  .syringe-choice-content .miniature {
    grid-column:2;
    grid-row:1 / 3;
  }
  .preview-panel {
    margin:0 12px 12px;
    padding:28px 16px;
  }
  .preview-panel .result-number {
    font-size:72px;
  }
  .scale-mark text {
    font-size:16px;
  }
  .intro-note {
    font-size:10px;
  }
  .site-header>span {
    max-width:100px;
    text-align:right;
    line-height:1.9;
  }
  .safety-notice {
    font-size:11px;
  }
  .result-details {
    font-size:11px;
  }
}
@media(prefers-reduced-motion:reduce) {
  *,*::before,*::after {
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
}
/* Legibilidade dos textos funcionais em todas as larguras. */
.helper,.preview-intro,.confirmation,.visual-caption {
  font-size:14px;
}
.presentation-option {
  font-size:13px;
}
.quick-doses button {
  font-size:13px;
}
.quick-doses button span {
  font-size:11px;
}
.safety-notice,.illustration-note,.button-help {
  font-size:12px;
}
.result-details {
  font-size:13px;
}
.scale-description,.syringe-heading,.reset {
  font-size:12px;
}
.syringe-heading span {
  font-size:11px;
}
.custom-fields label,label.field-label {
  font-size:13px;
}
@media(max-width:480px) {
  .presentation-option {
    font-size:12px;
  }
  .result-details {
    font-size:12px;
  }
  .syringe {
    width:calc(100% + 28px);
    margin-left:-14px;
    margin-right:-14px;
  }
}

/* Oferta junto à visualização; aviso de conversão permanece abaixo. */
.preview-panel .platform-highlight {
  margin:24px 0 0;
  padding:26px 20px;
  border-radius:8px;
}
.preview-panel .platform-highlight .eyebrow {
  color:var(--gl-light-bronze);
  margin-bottom:12px;
}
.preview-panel .platform-highlight h2 {
  font-size:30px;
  line-height:1.15;
  margin-bottom:16px;
}
.preview-panel .platform-copy {
  font-size:13px;
  line-height:1.85;
  margin-bottom:20px;
  text-align:left;
}
.preview-panel .platform-button {
  width:100%;
  padding:15px 12px;
  gap:10px;
  font-size:12px;
}
@media(max-width:480px) {
  .preview-panel .platform-highlight { padding:24px 16px; }
  .preview-panel .platform-highlight h2 { font-size:28px; }
}

/* Benefícios e chamada principal da plataforma. */
.preview-panel .platform-copy {
  font-size:15px;
  line-height:1.9;
  color:var(--gl-warm-white);
}
.platform-copy strong {
  color:#efcf95;
  font-weight:600;
  text-decoration:underline;
  text-decoration-color:#c99a5b80;
  text-decoration-thickness:1px;
  text-underline-offset:4px;
}
.preview-panel .platform-button {
  position:relative;
  overflow:hidden;
  isolation:isolate;
  min-height:78px;
  padding:19px 16px;
  font-size:16px;
  line-height:1.5;
  border-color:#f5dfac;
  box-shadow:inset 0 1px 0 #fff7df,0 4px 20px #c99a5b38;
}
.platform-button::before {
  content:'';
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:linear-gradient(110deg,transparent 30%,#fff9e8a6 50%,transparent 70%);
  transform:translateX(-140%);
  animation:platform-shimmer 4.5s ease-in-out infinite;
}
.platform-button>span { position:relative; z-index:1; }
.preview-panel .platform-button>span:last-child { font-size:27px; }
@keyframes platform-shimmer {
  0%,20% { transform:translateX(-140%); }
  60%,100% { transform:translateX(140%); }
}
@media(prefers-reduced-motion:reduce) {
  .platform-button::before { animation:none; display:none; }
}

.platform-promise {
  margin:0 0 24px;
  padding:20px 0 0;
  border-top:1px solid #c99a5b66;
  font-family:'Newsreader',Georgia,serif;
  font-size:23px;
  line-height:1.4;
  color:#FF9B85;
  text-align:left;
}
.platform-promise strong {
  color:var(--gl-warm-white);
  font-weight:700;
}
.author-identity { display:flex; align-items:center; gap:22px; min-width:0; }
.author-portrait {
  width:112px;
  height:140px;
  flex-shrink:0;
  object-fit:cover;
  object-position:50% 27%;
  border-radius:10px;
  border:1px solid #c99a5b66;
}
.instagram-story-ring {
  display:block;
  width:62px;
  height:62px;
  padding:3px;
  flex-shrink:0;
  border-radius:50%;
  background:conic-gradient(from 210deg,#feda75,#fa7e1e,#d62976,#962fbf,#d62976,#fa7e1e,#feda75);
}
.instagram-avatar {
  display:block;
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
  border:3px solid var(--gl-deep-green);
  border-radius:50%;
}
.instagram-avatar img {
  position:absolute;
  width:235%;
  max-width:none;
  height:auto;
  left:-68%;
  top:-60%;
}
@media(max-width:760px) {
  .author-section { flex-direction:column; align-items:stretch; }
  .instagram-button .instagram-arrow { margin-left:auto; }
}
@media(max-width:480px) {
  .author-identity { gap:16px; }
  .author-portrait { width:86px; height:112px; }
  .author-info h2 { font-size:26px; }
  .author-info>p:last-child { font-size:12px; }
}

/* Mantém Dose e a marca juntas, inclusive na quebra mobile. */
.title-dose-brand {
  display:inline-flex;
  align-items:center;
  gap:12px;
  vertical-align:middle;
  white-space:nowrap;
}
.title-dose-brand .title-logo { margin:0; }
@media(max-width:899px) {
  .title-dose-brand { gap:10px; }
  .title-dose-brand .title-logo { display:block; width:170px; height:auto; }
}
@media(max-width:360px) {
  .title-dose-brand .title-logo { width:150px; }
}
