/* ==========================================================================
   Thermo Ignite — Institutional page styles
   Complements assets/css/style.css (does not override it).
   Palette: #101010 base · #e2c677 gold · #C1121F brand red · #fff text
   ========================================================================== */

:root {
  --ti-bg: #101010;
  --ti-bg-soft: #171717;
  --ti-card: #1a1a1a;
  --ti-border: rgba(226, 198, 119, 0.22);
  --ti-gold: #e2c677;
  --ti-red: #c1121f;
  --ti-red-light: #ea745c;
  --ti-text: #cfcfcf;
  --ti-radius: 16px;
}

/* ---------- Anchor offset for the sticky top bar ---------- */

section[id],
div[id],
header[id] {
  scroll-margin-top: 84px;
}

/* ---------- Shared helpers ---------- */

.section-head {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.section-head .headline {
  margin: 0;
}

.section-head .title {
  margin: 0;
  max-width: 26ch;
  text-wrap: balance;
}

.section-head .subtitle {
  max-width: 62ch;
  color: var(--ti-text);
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .section-head {
    margin-bottom: 32px;
  }
  .section-head .subtitle {
    font-size: 16px;
  }
}

.disclaimer-note {
  display: block;
  margin: 32px auto 0;
  max-width: 70ch;
  text-align: center;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

.section-alt {
  background: var(--ti-bg-soft);
}

/* ---------- Top navigation bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  background: rgba(16, 16, 16, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.topbar__brand img {
  width: 36px;
  height: 36px;
}

.topbar__brand span {
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
}

.topbar__brand span b {
  color: var(--ti-gold);
  font-weight: 700;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar__nav a {
  color: var(--ti-text);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
  color: var(--ti-gold);
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 50px;
  background: linear-gradient(180deg, #fffe4a 0%, #ffd901 100%);
  border-bottom: 4px solid #8e7c02;
  color: #0e0d11;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.topbar__cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

@media (max-width: 1000px) {
  .topbar__nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar__brand span {
    font-size: 15px;
  }
  .topbar__cta {
    padding: 9px 16px;
    font-size: 12px;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      900px 500px at 85% 10%,
      rgba(193, 18, 31, 0.28) 0%,
      rgba(16, 16, 16, 0) 70%
    ),
    radial-gradient(
      700px 400px at 5% 90%,
      rgba(226, 198, 119, 0.14) 0%,
      rgba(16, 16, 16, 0) 70%
    ),
    var(--ti-bg);
  padding: 64px 0 72px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero__text {
  display: grid;
  gap: 20px;
  justify-items: flex-start;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--ti-border);
  border-radius: 50px;
  background: rgba(226, 198, 119, 0.08);
  color: var(--ti-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  text-align: left;
  color: #fff;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 400;
  line-height: 1.2;
}

.hero__title b {
  display: block;
  font-weight: 700;
  color: var(--ti-gold);
  font-size: inherit;
  line-height: inherit;
}

.hero__desc {
  margin: 0;
  max-width: 54ch;
  color: var(--ti-text);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0.3px;
}

.hero .list {
  margin-bottom: 8px;
}

/* Keep the check aligned to the first line when an item wraps. */
.hero .list li {
  align-items: flex-start;
}

.hero .list li::before {
  flex: 0 0 20px;
  margin-top: 4px;
}

.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.5;
}

.hero__note img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__media::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(226, 198, 119, 0.25) 0%,
    rgba(226, 198, 119, 0) 70%
  );
}

.hero__media img {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: auto;
}

@media (max-width: 900px) {
  .hero {
    padding: 40px 0 48px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .hero__text {
    justify-items: center;
  }
  .hero__title {
    text-align: center;
  }
  .hero__desc {
    font-size: 16px;
  }
  .hero .list li {
    text-align: left;
  }
  .hero__media {
    order: -1;
  }
  .hero__media img {
    max-width: 320px;
  }
  .hero .btn {
    width: 100%;
    font-size: 20px;
  }
}

/* ---------- "What is" section (extends .benefits from style.css) ---------- */

.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
}

.about__media img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.about__text {
  display: grid;
  gap: 18px;
}

.about__text .title {
  text-align: left;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  line-height: 1.3;
}

.about__text .title b {
  color: var(--ti-gold);
  font-size: inherit;
  line-height: inherit;
}

.about__text p {
  margin: 0;
  color: var(--ti-text);
  font-size: 17px;
  line-height: 1.7;
}

.about__text p b {
  color: #fff;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.about__facts li {
  display: grid;
  gap: 4px;
  padding: 16px 12px;
  border: 1px solid var(--ti-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.about__facts strong {
  color: var(--ti-gold);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.about__facts span {
  color: #9a9a9a;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about__text .title {
    text-align: center;
  }
  .about__media img {
    max-width: 300px;
  }
  .about__facts {
    grid-template-columns: 1fr;
  }
}

/* ---------- Ingredients ---------- */

.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ingredient {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--ti-border);
  border-radius: var(--ti-radius);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.ingredient:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 198, 119, 0.55);
}

.ingredient__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ti-border);
  background: rgba(226, 198, 119, 0.1);
  color: var(--ti-gold);
  font-size: 16px;
  font-weight: 700;
}

.ingredient h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
}

.ingredient p {
  margin: 0;
  color: var(--ti-text);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.2px;
}

@media (max-width: 1000px) {
  .ingredients__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ingredients__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ingredient {
    padding: 22px 20px;
  }
}

/* ---------- Benefits grid ---------- */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 32px 24px;
  border-radius: var(--ti-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ti-card);
  text-align: center;
  justify-items: center;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.benefit-card:hover {
  border-color: rgba(226, 198, 119, 0.5);
  transform: translateY(-4px);
}

.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(226, 198, 119, 0.1);
  border: 1px solid var(--ti-border);
}

.benefit-card__icon svg {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--ti-gold);
}

.benefit-card h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

.benefit-card p {
  margin: 0;
  color: var(--ti-text);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .benefit-card {
    padding: 24px 20px;
  }
}

/* ---------- How to use / steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 32px 24px 28px;
  border-radius: var(--ti-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: linear-gradient(
    82deg,
    var(--ti-red) 0%,
    var(--ti-red-light) 100%
  );
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.step h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.step p {
  margin: 0;
  color: var(--ti-text);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step {
    padding: 24px 20px;
  }
}

/* ---------- Quality / transparency panel ---------- */

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

.quality__card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px 26px;
  border-radius: var(--ti-radius);
  border-left: 3px solid var(--ti-gold);
  background: rgba(255, 255, 255, 0.035);
}

.quality__card h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

.quality__card p {
  margin: 0;
  color: var(--ti-text);
  font-size: 16px;
  line-height: 1.65;
}

.quality__card a {
  color: var(--ti-gold);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .quality__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .quality__card {
    padding: 22px 20px;
  }
}

/* ---------- Shipping callout ---------- */

.shipping-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 32px;
  border-radius: var(--ti-radius);
  border: 1px dashed var(--ti-border);
  background: rgba(226, 198, 119, 0.06);
  text-align: center;
}

.shipping-callout img {
  width: 40px;
  height: 40px;
}

.shipping-callout p {
  margin: 0;
  max-width: 62ch;
  text-align: left;
  color: var(--ti-text);
  font-size: 16px;
  line-height: 1.6;
}

.shipping-callout p b {
  color: var(--ti-gold);
}

@media (max-width: 900px) {
  .shipping-callout {
    flex-direction: column;
    padding: 22px 20px;
    gap: 12px;
  }
  .shipping-callout p {
    text-align: center;
    font-size: 15px;
  }
}

/* ---------- FAQ tweaks (structure comes from style.css) ---------- */

.faq .faq__foot {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.faq .faq__foot p {
  margin: 0;
  color: var(--ti-text);
  font-size: 16px;
}

.faq .faq__foot a.inline-link {
  color: var(--ti-gold);
  text-decoration: underline;
}

/* ==========================================================================
   Overrides — style.css is minified and highly specific in a few places.
   These selectors intentionally match its specificity so the institutional
   layout wins without editing the original stylesheet.
   ========================================================================== */

/* "What is" block sits inside .benefits .content .text, which caps width,
   turns every <li> into an inline-flex row and injects a green check icon. */
.benefits .content .text.about__text {
  max-width: none;
  gap: 18px;
}

.benefits .content .text.about__text .title {
  text-align: left;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  line-height: 1.3;
}

.benefits .content .text.about__text ul.about__facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.benefits .content .text.about__text ul.about__facts li {
  display: grid;
  gap: 4px;
  align-items: stretch;
}

.benefits .content .text.about__text ul.about__facts li::before {
  content: none;
  display: none;
}

@media (max-width: 900px) {
  .benefits .content .text.about__text .title {
    text-align: center;
  }
  .benefits .content .text.about__text ul.about__facts {
    grid-template-columns: 1fr;
  }
}

/* The FAQ container is a centered flex column, so children shrink to
   content width unless told otherwise. */
.faq .container .accordion,
.faq .container .faq__foot {
  width: 100%;
}

/* Links inside FAQ answers inherit the global #cfcfcf otherwise. */
.faq .item .body p a,
.faq .item .body li a {
  color: var(--ti-gold);
  text-decoration: underline;
}

/* .days_gua loses to `.faq .item .body p b` without this. */
.faq .item .body p b.days_gua {
  color: var(--ti-gold);
}

/* Package banner: same look as the original `header h1`, but as an <h2>
   so the page keeps a single <h1> (the hero). */
header.banner .banner-title {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 135%;
}

header.banner .banner-title b {
  color: #fff;
  font-weight: 700;
  font-size: inherit;
  line-height: inherit;
}

@media (max-width: 900px) {
  header.banner .banner-title {
    font-size: 28px;
  }
}

/* Trust seals under the packages: the original caps labels at 14ch. */
.area-kits .medalhas > .container > ul > li {
  max-width: 18ch;
}

/* The trust strip sets `white-space: nowrap` with a 20px font below 900px,
   which pushes the whole document wider than the viewport on phones. */
@media (max-width: 900px) {
  .faixa ul {
    width: 100%;
    max-width: 100%;
  }

  .faixa li {
    justify-content: center;
    min-height: 0;
    white-space: normal;
    text-align: center;
    font-size: 16px;
  }
}

/* Nothing on this page should scroll sideways. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ---------- Accessibility ---------- */

a:focus-visible,
button:focus-visible,
.faq .item .header:focus-visible {
  outline: 3px solid var(--ti-gold);
  outline-offset: 3px;
}

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

/* ---------- SodaFit ---------- */

/* O template traz uma bandeira dos EUA na 2a medalha ("Made in the USA"). O
   rotulo do SodaFit nao traz esse selo, entao a medalha vira a garantia. */
.area-kits .medalhas > .container > ul .medalha-2::before {
  background-image: url(../../assets/img/seal.svg);
}
