/* ============================================================
   Atlas Visual de Interpretação da Espirometria
   Fontes: Sora (tÃ­tulos) + Inter (corpo)
   Paleta: azul-marinho + teal clÃ­nico + dourado + off-white
   ============================================================ */

:root {
  --navy:       #061b36;
  --navy-2:     #0a3655;
  --blue:       #006f80;
  --blue-l:     #eaf6f7;
  --primary:    #007486;
  --primary-d:  #004d5b;
  --primary-l:  #e8f6f6;
  --gold:       #d89a32;
  --gold-d:     #a56d16;
  --gold-l:     #fff7e8;
  --cream:      #f8f8f5;
  --cream-2:    #eef4f4;
  --white:      #ffffff;
  --ink:        #0a1f3b;
  --text:       #40505e;
  --muted:      #6a7884;
  --line:       #d7e1e2;
  --danger-l:   #fff5ef;
  --radius:     16px;
  --radius-lg:  24px;
  --shadow:     0 12px 30px rgba(6, 27, 54, .09);
  --shadow-lg:  0 26px 62px rgba(6, 27, 54, .17);
  --container:  1160px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.2;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 30px;
  border: 0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .25px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-d));
  box-shadow: 0 10px 22px rgba(0, 116, 134, .30);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 116, 134, .38);
}

.btn--outline {
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  color: #fff;
  background: var(--navy);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn--3d {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 0 var(--primary-d), 0 15px 26px rgba(0, 116, 134, .30);
}

.btn--3d:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--primary-d), 0 11px 20px rgba(0, 116, 134, .30);
}

/* faixa de brilho deslizante (mesma animaÃ§Ã£o do CTA do hero) */
.btn--3d::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: ctaShine 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn--3d::after { animation: none; }
}

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 116, 134, .14);
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-l);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- Topbar ---------- */
.topbar {
  padding: 11px 16px;
  color: #eef6ff;
  background: linear-gradient(90deg, var(--navy), #0a3655, var(--navy));
  text-align: center;
  font-size: .86rem;
}

.topbar strong {
  color: #fff;
}

/* ---------- Sections ---------- */
.section {
  padding: 84px 0;
}

.section--alt {
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 154, 50, .07), transparent 22%),
    var(--cream-2);
}

.section__title {
  margin-bottom: 16px;
  font-size: 2.4rem;
  font-weight: 800;
}

.section__title--left {
  text-align: left;
}

.section__sub {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__sub--left {
  margin-left: 0;
  text-align: left;
}

/* ---------- Image placeholders ---------- */
.placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 18px;
  overflow: hidden;
  border: 2px dashed rgba(0, 116, 134, .34);
  border-radius: var(--radius);
  color: #55738d;
  background:
    linear-gradient(rgba(248, 243, 231, .82), rgba(248, 243, 231, .82)),
    repeating-linear-gradient(45deg, #dce8f3, #dce8f3 12px, #eff5fa 12px, #eff5fa 24px);
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
}

.placeholder::before {
  content: "ATLAS SPIRO";
  position: absolute;
  top: 12px;
  left: 14px;
  color: rgba(8, 31, 53, .28);
  font-family: 'Sora', system-ui, sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.placeholder span {
  position: relative;
  z-index: 1;
}

.placeholder--hero {
  width: 100%;
  max-width: 780px;
  min-height: 380px;
}

.placeholder--tall {
  min-height: 480px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 70px 0 78px;
  background:
    radial-gradient(780px 360px at 50% -5%, rgba(0, 116, 134, .14), transparent 62%),
    radial-gradient(460px 300px at 94% 30%, rgba(216, 154, 50, .10), transparent 68%),
    var(--cream);
  text-align: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: 3rem;
  font-weight: 800;
}

.hero__title .accent {
  color: var(--primary);
}

.hero__lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

/* botÃµes empilhados, largura contida e igual entre si */
.hero__cta .btn {
  width: 100%;
  max-width: 340px;
  text-align: center;
}

/* botÃ£o de cima: ligeiramente maior + brilho deslizante (sem scale) */
.hero__cta .btn--primary {
  position: relative;
  overflow: hidden;
  padding: 21px 38px;
  font-size: 1.04rem;
}

/* faixa de brilho que atravessa o botÃ£o */
.hero__cta .btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: ctaShine 2.2s ease-in-out infinite;
}

.hero__cta .btn--primary:hover::after {
  animation-play-state: paused;
}

/* botÃ£o de baixo: padding um pouco maior que o padrÃ£o, mesma largura */
.hero__cta .btn--outline {
  padding: 18px 34px;
}

@keyframes ctaShine {
  0%   { left: -140%; }
  55%  { left: 160%; }
  100% { left: 160%; }
}

/* respeita quem prefere menos animaÃ§Ã£o */
@media (prefers-reduced-motion: reduce) {
  .hero__cta .btn--primary::after { animation: none; }
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px 26px;
  max-width: 980px;
  margin-bottom: 40px;
  list-style: none;
}

.hero__features li {
  padding: 12px 16px;
  border: 1px solid rgba(0, 116, 134, .16);
  border-radius: 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 6px 16px rgba(6, 27, 54, .06);
  font-size: .92rem;
  font-weight: 700;
}

.hero__mockup {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 26px;
}

.hero__mockup img {
  display: block;
  width: 100%;
  height: auto;
  /* filter: drop-shadow(0 24px 40px rgba(8, 31, 53, .18)); */
}

.hero__stars {
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}

/* ---------- Gallery ---------- */
.gallery {
  margin: 46px 0;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 24px;
  animation: slideLeft 34s linear infinite;
}

.gallery__track--rev {
  animation-direction: reverse;
}

/* segundo carrossel logo abaixo do primeiro */
.gallery--stack {
  margin-top: -8px;
}

.gallery__item {
  width: 210px;
  height: 295px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* itens horizontais (mapas) */
.gallery__track--h .gallery__item {
  width: 210px;
  height: 295px;
}

.gallery__track--h .gallery__item img {
  object-fit: cover;
}

/* carrossel de depoimentos: cards de largura fixa dentro do track */
.gallery__track--reviews {
  align-items: stretch;
}

.gallery__track--reviews .review {
  width: 340px;
  flex-shrink: 0;
}

@keyframes slideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards and grids ---------- */
.grid {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 235px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.feature-card--highlight {
  border-color: rgba(216, 154, 50, .52);
  background: linear-gradient(180deg, #fff, var(--gold-l));
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--primary-l);
  font-size: 1.55rem;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.feature-card p {
  color: var(--muted);
  font-size: .93rem;
}

/* ---------- Audience ---------- */
.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.audience__item {
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: .7rem;
}

/* ---------- Pain ---------- */
.pain-box {
  padding: 50px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.pain-box__head {
  margin-bottom: 34px;
}

.pain-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--gold-d);
  background: var(--gold-l);
  font-size: 1.9rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
  margin-bottom: 38px;
}

.pain-item {
  position: relative;
  padding: 10px 12px 10px 56px;
  border: 1px solid #f0d8ca;
  border-radius: 14px;
  color: var(--navy);
  background: #fff8f3;
  font-weight: 600;
  font-size: .7rem;
}

.pain-item::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: .7rem;
  font-weight: 600;
}

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.two-col__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.two-col__body {
  text-align: left;
}

.check-list {
  margin-top: 8px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 42px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: .85rem;
  font-weight: 900;
}

/* ---------- Bonus cards ---------- */
.bonus-card {
  position: relative;
  overflow: hidden;
  padding: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

/* badges sobrepostos no topo da imagem */
.bonus-card__head {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.bonus-card__num {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 2px 8px rgba(8, 31, 53, .18);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .5px;
}

.bonus-card__free {
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(8, 31, 53, .18);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .45px;
}

/* imagem grande ocupando o topo do card, inteira (sem corte) */
.bonus-card__thumb {
  margin-bottom: 18px;
  overflow: hidden;
}

.bonus-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.bonus-card h3 {
  margin-bottom: 10px;
  padding: 0 22px;
  font-size: 1.02rem;
}

.bonus-card p {
  padding: 0 22px;
  color: var(--muted);
  font-size: .9rem;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.step {
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-d));
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.step p {
  color: var(--muted);
  font-size: .86rem;
}

/* ---------- Benefit/review cards ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 46px auto 0;
  padding: 0 24px;
}

.review {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.review__stars {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .95rem;
}

.review__text {
  min-height: 118px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: .95rem;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-d));
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
}

.review__name {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 800;
}

.review__role {
  color: var(--muted);
  font-size: .8rem;
}

/* ---------- Plans ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
  margin-top: 52px;
}

.plan {
  position: relative;
  padding: 40px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.plan--featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.plan__tag {
  position: absolute;
  top: -17px;
  left: 50%;
  padding: 8px 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .5px;
  white-space: nowrap;
}

.plan__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  margin: 6px 0 22px;
  overflow: hidden;
  border-radius: var(--radius);
}

.plan__hero img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
}

.plan__label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.plan__name {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.plan__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.plan__price s {
  color: #a7adb1;
  font-size: 1rem;
  font-weight: 700;
}

.plan__price strong {
  color: var(--primary);
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
}

.plan__price strong span {
  font-size: 1.3rem;
}

.plan__price em {
  color: var(--muted);
  font-size: .95rem;
  font-style: normal;
}

.plan__note {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .86rem;
}

.plan .check-list {
  margin-bottom: 28px;
}

.plan__release {
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
  font-size: .8rem;
}

/* ---------- Guarantee ---------- */
.guarantee {
  max-width: 800px;
  margin: 0 auto;
  padding: 52px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.guarantee__seal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--primary-l);
  font-size: 2.4rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 44px auto 0;
}

.faq__item {
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 20px 24px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq__q:focus-visible {
  outline: 3px solid rgba(216, 154, 50, .48);
  outline-offset: -3px;
}

.faq__ic {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .25s ease;
}

.faq__item.open .faq__ic {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq__a p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: .95rem;
}

/* ---------- Footer ---------- */
.footer {
  padding: 56px 0;
  color: #c7d4e1;
  background: linear-gradient(180deg, var(--navy), #061726);
}

.footer__brand {
  margin-bottom: 16px;
  color: #fff;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.footer__disclaimer {
  max-width: 820px;
  margin: 0 auto 18px;
  color: #93a6b9;
  font-size: .82rem;
}

.footer__copy {
  color: #7e93a7;
  font-size: .82rem;
}

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

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .section__title { font-size: 1.95rem; }
  .hero__title { font-size: 2.25rem; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-col { grid-template-columns: 1fr; gap: 34px; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-right: auto; margin-left: auto; }
}

@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .hero { padding-top: 56px; }
  .hero__title { font-size: 1.78rem; }
  .hero__lead { font-size: 1rem; }
  .section__title { font-size: 1.62rem; }
  .grid--3,
  .grid--4,
  .reviews,
  .steps,
  .audience,
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }
  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }
  .hero__features {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }
  .pain-box { padding: 34px 22px; }
  .gallery__item { width: 166px; height: 234px; }
  .gallery__track--h .gallery__item { width: 166px; height: 234px; }
  .plan { padding: 38px 24px; }
  .plan__tag { max-width: calc(100% - 28px); text-align: center; white-space: normal; }
  .guarantee { padding: 40px 24px; }
}

/* ============================================================
   MODAL DE UPSELL (Plano Essencial)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 31, 53, .62);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 470px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 42px 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(130% 60% at 50% 0%, rgba(216, 154, 50, .12), transparent 58%),
    #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateY(18px) scale(.96);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.modal.is-open .modal__card {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.modal__close:hover {
  color: var(--navy);
  background: var(--cream-2);
}

.modal__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 15px;
  border-radius: 999px;
  color: var(--gold-d);
  background: var(--gold-l);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.modal__title {
  margin-bottom: 12px;
  font-size: 1.62rem;
  font-weight: 800;
  line-height: 1.22;
}

.modal__title span {
  color: var(--primary);
}

.modal__text {
  margin: 0 auto 22px;
  max-width: 380px;
  color: var(--muted);
  font-size: .96rem;
}

.modal__text strong {
  color: var(--navy);
}

/* comparaÃ§Ã£o de preÃ§o */
.modal__price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.modal__price-from,
.modal__price-to {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.35;
}

.modal__price-from s {
  color: #a7adb1;
  font-size: 1.1rem;
}

.modal__price-to strong {
  display: inline-block;
  color: var(--primary);
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.modal__price-arrow {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
}

.modal__price-tag {
  position: absolute;
  top: -12px;
  right: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .4px;
  box-shadow: 0 4px 12px rgba(216, 154, 50, .4);
}

.modal__list-title {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 800;
}

.modal__list {
  margin: 0 auto 26px;
  max-width: 330px;
  list-style: none;
  text-align: left;
}

.modal__list li {
  position: relative;
  padding: 6px 0 6px 30px;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 600;
}

.modal__list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: .68rem;
  font-weight: 900;
}

.modal__cta {
  font-size: 1.02rem;
}

/* botÃ£o secundÃ¡rio como hiperlink (visÃ­vel, mas sem cara de botÃ£o) */
.modal__decline {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .15s ease;
}

.modal__decline:hover {
  color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal__card {
    transition: none;
  }
}

@media (max-width: 480px) {
  .modal__card { padding: 40px 22px 26px; }
  .modal__title { font-size: 1.4rem; }
  .modal__price { gap: 12px; padding: 16px 14px; }
}

/* ============================================================
   TEMA ESPIROMETRIA — ATLAS VISUAL
   Mantiene la estructura original validada y cambia solo la identidad.
   ============================================================ */

.theme-spiro {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,249,252,.98)), #f7f9fc;
}

.theme-spiro .topbar {
  position: relative;
  overflow: hidden;
  color: #f8fbff;
  background: linear-gradient(90deg, #061b36 0%, #0f355a 34%, #007486 100%);
  box-shadow: 0 4px 18px rgba(8,26,43,.22);
}
.theme-spiro .topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, #007486, #d89a32, #ffffff, #006f80);
}

.theme-spiro .hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background:
    radial-gradient(850px 420px at 50% -4%, rgba(0,116,134,.15), transparent 62%),
    radial-gradient(520px 340px at 95% 26%, rgba(0,111,128,.13), transparent 68%),
    radial-gradient(420px 280px at 5% 50%, rgba(216,154,50,.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}
.theme-spiro .hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: repeating-linear-gradient(135deg, #007486 0 24px, #fff 24px 34px, #006f80 34px 58px, #fff 58px 68px);
}
.theme-spiro .hero::after {
  content: "ESPIROMETRIA  •  CURVAS  •  PADRÕES  •  RACIOCÍNIO";
  position: absolute;
  right: -96px;
  top: 170px;
  transform: rotate(90deg);
  color: rgba(8,26,43,.055);
  font-family: 'Sora', system-ui, sans-serif;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: 4px;
  pointer-events: none;
}

.theme-spiro .badge {
  border-color: rgba(0,116,134,.16);
  color: #006071;
  background: linear-gradient(180deg, #fff, #e8f6f6);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 6px 16px rgba(8,26,43,.05);
}
.theme-spiro .hero .badge {
  color: #fff;
  border: 0;
  background: linear-gradient(90deg, #061b36, #0a3655);
  box-shadow: 0 10px 24px rgba(8,26,43,.18);
}
.theme-spiro .hero__title .accent { color: var(--primary); }
.theme-spiro .hero__title { color: #0b1723; text-wrap: balance; }
.theme-spiro .hero__lead { color: #526779; }

.theme-spiro .hero__mockup {
  position: relative;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0,116,134,.18), rgba(255,255,255,.95) 40%, rgba(0,111,128,.18));
  box-shadow: 0 30px 70px rgba(8,26,43,.14);
}
.theme-spiro .hero__mockup::before {
  content: "MATERIAL REAL • VISUAL • ORGANIZADO";
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 50%;
  padding: 7px 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: #fff;
  background: rgba(8,26,43,.92);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .8px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(8,26,43,.18);
}
.theme-spiro .hero__mockup img { border-radius: 20px; }

.theme-spiro .btn--primary {
  background: linear-gradient(180deg, #008397, #005d6d);
  box-shadow: 0 10px 22px rgba(0,116,134,.30);
}
.theme-spiro .btn--primary:hover { box-shadow: 0 15px 32px rgba(0,116,134,.38); }
.theme-spiro .btn--3d { box-shadow: 0 6px 0 #004652, 0 15px 28px rgba(0,116,134,.28); }
.theme-spiro .btn--3d:hover { box-shadow: 0 4px 0 #004652, 0 12px 22px rgba(0,116,134,.30); }
.theme-spiro .btn--outline {
  color: #0b2e4e;
  border-color: #0b2e4e;
  box-shadow: 0 8px 20px rgba(8,26,43,.06);
}
.theme-spiro .btn--outline:hover { background: #0b2e4e; }

.theme-spiro .section--alt {
  background:
    linear-gradient(180deg, rgba(0,111,128,.045), transparent 30%),
    radial-gradient(circle at 9% 12%, rgba(0,116,134,.055), transparent 24%),
    #edf3f8;
}
.theme-spiro .section__title { color: #0c1722; text-wrap: balance; }

.theme-spiro .gallery { padding: 8px 0 16px; }
.theme-spiro .gallery__item {
  border: 2px solid rgba(8,26,43,.08);
  background: #fff;
  box-shadow: 0 14px 32px rgba(8,26,43,.12);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.theme-spiro .gallery__item:hover {
  transform: translateY(-5px);
  border-color: rgba(0,116,134,.32);
  box-shadow: 0 20px 42px rgba(8,26,43,.17);
}

.theme-spiro .feature-card,
.theme-spiro .bonus-card,
.theme-spiro .step,
.theme-spiro .review,
.theme-spiro .faq__item,
.theme-spiro .plan,
.theme-spiro .pain-box,
.theme-spiro .guarantee { border-color: rgba(0,111,128,.14); }

.theme-spiro .feature-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  transition: transform .2s ease, box-shadow .2s ease;
}
.theme-spiro .feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #007486 0 44%, #d89a32 44% 62%, #006f80 62% 100%);
}
.theme-spiro .feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(8,26,43,.14); }
.theme-spiro .feature-card__icon {
  color: #fff;
  background: linear-gradient(145deg, #007486, #d89a32);
  box-shadow: 0 8px 18px rgba(0,116,134,.18);
}
.theme-spiro .feature-card:nth-child(3n+2) .feature-card__icon {
  background: linear-gradient(145deg, #006f80, #0a3655);
  box-shadow: 0 8px 18px rgba(0,111,128,.18);
}
.theme-spiro .feature-card--highlight {
  border-color: rgba(216,154,50,.45);
  background: linear-gradient(180deg, #fff, #fff3eb);
}

.theme-spiro .audience__item {
  position: relative;
  overflow: hidden;
  color: #16334c;
  border-color: rgba(0,111,128,.13);
  background: #fff;
}
.theme-spiro .audience__item::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(#007486, #d89a32);
}

.theme-spiro .pain-box {
  background: radial-gradient(circle at 100% 0, rgba(0,116,134,.07), transparent 25%), #fff;
}
.theme-spiro .pain-box__icon {
  color: #006071;
  background: #e8f6f6;
  box-shadow: inset 0 0 0 1px rgba(0,116,134,.12);
}
.theme-spiro .pain-item {
  color: #153550;
  border-color: #e4d7d1;
  background: #fff9f6;
}
.theme-spiro .pain-item::before { background: linear-gradient(180deg, #d89a32, #007486); }

.theme-spiro .two-col__media { position: relative; }
.theme-spiro .two-col__media::before {
  content: "ATLAS VISUAL • INTERPRETAÇÃO DA ESPIROMETRIA";
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 9px;
  color: #fff;
  background: rgba(8,26,43,.90);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .7px;
}

.theme-spiro .check-list li { color: #16334c; }
.theme-spiro .check-list li::before {
  background: linear-gradient(145deg, #006f80, #0a3655);
  box-shadow: 0 4px 10px rgba(0,111,128,.18);
}

.theme-spiro .bonus-card {
  border-top: 4px solid #007486;
  background: linear-gradient(180deg, #fff, #fbfdff);
  transition: transform .2s ease, box-shadow .2s ease;
}
.theme-spiro .bonus-card:nth-child(even) { border-top-color: #006f80; }
.theme-spiro .bonus-card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(8,26,43,.15); }
.theme-spiro .bonus-card__thumb {
  background: linear-gradient(135deg, rgba(0,116,134,.08), rgba(0,111,128,.08)), #f6f9fc;
}

.theme-spiro .step__num {
  background: linear-gradient(145deg, #007486, #004d5b);
  box-shadow: 0 7px 16px rgba(0,116,134,.20);
}
.theme-spiro .review__stars { color: #d89a32; }
.theme-spiro .review__avatar { background: linear-gradient(145deg, #006f80, #007486); }

.theme-spiro #planos {
  background: radial-gradient(550px 260px at 50% 0, rgba(0,116,134,.08), transparent 70%), #fff;
}
.theme-spiro .plan { overflow: visible; }
.theme-spiro .plan--featured {
  border: 2px solid #007486;
  background: radial-gradient(circle at 100% 0, rgba(216,154,50,.08), transparent 28%), #fff;
  box-shadow: 0 28px 64px rgba(8,26,43,.18);
}
.theme-spiro .plan__tag {
  background: linear-gradient(90deg, #061b36, #0a3655);
  box-shadow: 0 8px 18px rgba(8,26,43,.22);
}
.theme-spiro .plan__name { color: #0b2e4e; }
.theme-spiro .plan__price strong { color: #007486; }

.theme-spiro .guarantee {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0, rgba(0,111,128,.08), transparent 46%), #fff;
}
.theme-spiro .guarantee::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #006f80, #fff 45%, #007486);
}
.theme-spiro .guarantee__seal {
  background: linear-gradient(145deg, #eaf6f7, #e8f6f6);
  box-shadow: inset 0 0 0 1px rgba(0,111,128,.12);
}

.theme-spiro .faq__q { color: #0b2e4e; }
.theme-spiro .faq__item.open { border-color: rgba(0,116,134,.24); }

.theme-spiro .modal__overlay { background: rgba(4,17,29,.76); }
.theme-spiro .modal__card {
  border: 1px solid rgba(0,116,134,.16);
  background:
    radial-gradient(130% 60% at 50% 0%, rgba(0,116,134,.12), transparent 58%),
    radial-gradient(80% 50% at 100% 100%, rgba(0,111,128,.08), transparent 60%),
    #fff;
}
.theme-spiro .modal__price { background: linear-gradient(180deg, #f8fbfe, #fff8f5); }
.theme-spiro .modal__price-tag {
  background: linear-gradient(180deg, #d89a32, #a56d16);
  box-shadow: 0 4px 12px rgba(216,154,50,.34);
}

.theme-spiro .footer {
  position: relative;
  color: #cad7e4;
  background: linear-gradient(180deg, #0b2742 0%, #061422 100%);
}
.theme-spiro .footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #007486, #d89a32 38%, #fff 50%, #006f80 68%, #0a3655);
}
.theme-spiro .footer__brand { color: #fff; }
.theme-spiro .footer__disclaimer { color: #9fb1c2; }
.theme-spiro .footer__copy { color: #7f95aa; }

@media (max-width: 680px) {
  .theme-spiro .hero::after { display: none; }
  .theme-spiro .hero__mockup { padding: 6px; border-radius: 20px; }
  .theme-spiro .hero__mockup::before {
    top: 14px;
    max-width: calc(100% - 36px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .theme-spiro .gallery__item { width: 180px; height: 253px; }
  .theme-spiro .gallery__item--square { width: 180px; height: 180px; }
}


/* ============================================================
   REDESIGN PREMIUM V2 â€” inspirado em pÃ¡ginas de sistemas visuais
   MantÃ©m a identidade CBMMA, mas reduz aparÃªncia de template.
   ============================================================ */

:root {
  --surface: #fffdfa;
  --surface-2: #f8f6f1;
  --surface-3: #f3f5f7;
  --ink-strong: #101923;
  --red-bright: #008397;
  --red-deep: #9f0d18;
  --ember: #f06a24;
  --navy-rich: #071a2b;
  --green-ok: #12865a;
  --premium-shadow: 0 24px 70px rgba(8,26,43,.12);
  --premium-shadow-sm: 0 12px 34px rgba(8,26,43,.08);
}

.theme-spiro {
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(223,22,39,.055), transparent 62%),
    radial-gradient(720px 420px at 92% 6%, rgba(240,106,36,.05), transparent 64%),
    var(--surface);
}

.theme-spiro .container { max-width: 1180px; }

.theme-spiro .topbar {
  position: relative;
  padding: 12px 18px;
  color: rgba(255,255,255,.92);
  background: linear-gradient(90deg, #9f0d18 0%, #d51626 42%, #a50d18 100%);
  box-shadow: 0 5px 22px rgba(157,13,24,.18);
  font-size: .84rem;
  letter-spacing: .1px;
}

.theme-spiro .topbar strong { color: #fff; font-weight: 800; }

.theme-spiro .hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,253,250,.98)),
    var(--surface);
  border-bottom: 1px solid rgba(8,26,43,.07);
}

.theme-spiro .hero::before,
.theme-spiro .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}
.theme-spiro .hero::before {
  width: 540px; height: 540px; left: -260px; top: -220px;
  background: radial-gradient(circle, rgba(223,22,39,.10), transparent 68%);
}
.theme-spiro .hero::after {
  width: 460px; height: 460px; right: -250px; top: 100px;
  background: radial-gradient(circle, rgba(240,106,36,.09), transparent 70%);
}

.theme-spiro .hero__inner { position: relative; z-index: 1; }
.theme-spiro .hero .badge {
  margin-bottom: 22px;
  padding: 9px 15px;
  border: 1px solid rgba(223,22,39,.16);
  color: #af101c;
  background: rgba(255,246,246,.9);
  box-shadow: 0 5px 18px rgba(223,22,39,.06);
}

.theme-spiro .hero__title {
  max-width: 1010px;
  margin-bottom: 20px;
  color: var(--ink-strong);
  font-size: clamp(2.4rem, 4.8vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.theme-spiro .hero__title .accent {
  position: relative;
  display: inline-block;
  color: var(--red-bright);
}
.theme-spiro .hero__title .accent::after {
  content: "";
  position: absolute;
  left: 4%; right: 2%; bottom: -5px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-bright), var(--ember));
  transform: rotate(-1deg);
  opacity: .85;
}
.theme-spiro .hero__lead {
  max-width: 825px;
  margin-bottom: 32px;
  color: #536170;
  font-size: 1.08rem;
  line-height: 1.72;
}
.theme-spiro .hero__mockup {
  position: relative;
  max-width: 850px;
  margin: 8px auto 34px;
  padding: 10px;
}
.theme-spiro .hero__mockup::before {
  content: "";
  position: absolute;
  inset: 9% 12% 4%;
  z-index: -1;
  border-radius: 48%;
  background: radial-gradient(circle, rgba(223,22,39,.16), rgba(240,106,36,.06) 45%, transparent 72%);
  filter: blur(26px);
}
.theme-spiro .hero__mockup img {
  border-radius: 22px;
  filter: drop-shadow(0 25px 36px rgba(8,26,43,.16));
}
.theme-spiro .hero__cta { gap: 12px; margin-bottom: 34px; }
.theme-spiro .hero__cta .btn { max-width: 370px; border-radius: 14px; }
.theme-spiro .hero__cta .btn--primary { padding: 20px 36px; }
.theme-spiro .hero__features {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 13px 22px;
  border: 1px solid rgba(8,26,43,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--premium-shadow-sm);
  backdrop-filter: blur(8px);
}
.theme-spiro .hero__features li {
  position: relative;
  padding: 13px 18px;
  color: #263747;
  font-size: .83rem;
  line-height: 1.45;
  text-align: left;
}
.theme-spiro .hero__features li:nth-child(3n+2),
.theme-spiro .hero__features li:nth-child(3n+3) { border-left: 1px solid rgba(8,26,43,.07); }
.theme-spiro .hero__stars {
  padding: 9px 14px;
  border-radius: 999px;
  color: #5c6671;
  background: #fff;
  box-shadow: 0 7px 20px rgba(8,26,43,.06);
  font-size: .86rem;
}

.theme-spiro .section { padding: 88px 0; }
.theme-spiro .section--alt {
  background:
    radial-gradient(circle at 8% 8%, rgba(223,22,39,.04), transparent 24%),
    linear-gradient(180deg, #f6f7f8, #f1f4f6);
}
.theme-spiro .badge {
  border-color: rgba(223,22,39,.14);
  color: #b3101d;
  background: #fff5f5;
}
.theme-spiro .section__title {
  color: var(--ink-strong);
  font-size: clamp(2rem,3.4vw,3rem);
  letter-spacing: -.035em;
  text-wrap: balance;
}
.theme-spiro .section__sub { max-width: 760px; color: #677482; line-height: 1.72; }

.theme-spiro .gallery { margin: 42px 0; }
.theme-spiro .gallery__track { gap: 22px; }
.theme-spiro .gallery__item {
  width: 230px;
  height: 324px;
  border: 1px solid rgba(8,26,43,.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8,26,43,.11);
}
.theme-spiro .gallery__item:hover {
  transform: translateY(-8px) rotate(-.35deg);
  box-shadow: 0 28px 55px rgba(8,26,43,.16);
}
.theme-spiro .gallery__item--square {
  width: 230px;
  height: 230px;
}

.theme-spiro .grid { gap: 20px; }
.theme-spiro .feature-card {
  min-height: 225px;
  padding: 28px 26px;
  border: 1px solid rgba(8,26,43,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 32px rgba(8,26,43,.075);
}
.theme-spiro .feature-card::before {
  left: 24px; right: 24px; top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg,var(--red-bright),var(--ember));
}
.theme-spiro .feature-card__icon {
  width: 50px; height: 50px;
  border: 1px solid rgba(223,22,39,.10);
  color: inherit;
  background: #fff6f5;
  box-shadow: none;
}
.theme-spiro .feature-card:nth-child(3n+2) .feature-card__icon {
  background: #f2f7fb;
  box-shadow: none;
}
.theme-spiro .feature-card h3 { font-size: 1.02rem; }
.theme-spiro .feature-card p { font-size: .9rem; line-height: 1.65; }

.theme-spiro .bonus-card {
  border: 1px solid rgba(8,26,43,.09);
  border-top: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(8,26,43,.08);
}
.theme-spiro .bonus-card:nth-child(even) { border-top-color: transparent; }
/* .theme-spiro .bonus-card::after {
  content: "BONO";
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg,var(--red-bright),var(--red-deep));
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .6px;
} */
.theme-spiro .bonus-card__thumb { margin-bottom: 20px; background: #f4f5f6; }
.theme-spiro .bonus-card h3 { padding: 0 22px; font-size: 1.04rem; }
.theme-spiro .bonus-card p { line-height: 1.65; }

.theme-spiro .step {
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(8,26,43,.07);
}
.theme-spiro .step__num {
  background: var(--navy-rich);
  box-shadow: 0 7px 16px rgba(8,26,43,.16);
}

/* ---------- Pricing: foco principal do redesign ---------- */
.theme-spiro #planos.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 94px;
  background:
    radial-gradient(700px 360px at 50% -5%, rgba(223,22,39,.25), transparent 62%),
    radial-gradient(500px 300px at 85% 95%, rgba(240,106,36,.12), transparent 65%),
    #081723;
}
.theme-spiro #planos.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 75%);
}
.theme-spiro #planos .pricing-heading,
.theme-spiro #planos .plans,
.theme-spiro #planos .pricing-after { position: relative; z-index: 1; }
.theme-spiro #planos .pricing-heading .badge {
  color: #ffd7da;
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.075);
}
.theme-spiro #planos .pricing-heading .section__title { color: #fff; }
.theme-spiro #planos .pricing-heading .section__sub { color: #aebac5; }
.pricing-heading__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 24px;
  color: #dce5ec;
  font-size: .82rem;
  font-weight: 700;
}

.theme-spiro #planos .plans {
  max-width: 1060px;
  gap: 28px;
  align-items: stretch;
  margin-top: 58px;
}
.theme-spiro #planos .plan {
  display: flex;
  flex-direction: column;
  overflow: visible;
  padding: 34px 34px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.15);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.theme-spiro #planos .plan--basic {
  margin-top: 20px;
  background: linear-gradient(180deg,#fff 0%,#fbfaf7 100%);
  box-shadow: 0 22px 58px rgba(0,0,0,.22);
}
.theme-spiro #planos .plan--featured {
  border: 2px solid #ef3443;
  background:
    radial-gradient(circle at 92% 0,rgba(240,106,36,.12),transparent 27%),
    #fff;
  box-shadow: 0 34px 88px rgba(0,0,0,.34), 0 0 0 5px rgba(223,22,39,.08);
  transform: translateY(-8px);
}
.theme-spiro #planos .plan__topline {
  height: 5px;
  margin: -34px -34px 27px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg,#cfd6dc,#eef1f3);
}
.theme-spiro #planos .plan--featured .plan__topline {
  background: linear-gradient(90deg,var(--red-bright),var(--ember));
}
.theme-spiro #planos .plan__tag {
  top: -20px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  background: linear-gradient(135deg,var(--red-bright),var(--red-deep));
  box-shadow: 0 10px 30px rgba(223,22,39,.36);
  font-size: .73rem;
  letter-spacing: .8px;
}
.theme-spiro #planos .plan__label {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #586572;
  background: #f2f4f6;
  font-size: .7rem;
  letter-spacing: .95px;
}
.theme-spiro #planos .plan--featured .plan__label {
  color: #b0101d;
  background: #fff0f1;
}
.theme-spiro #planos .plan__name {
  margin-bottom: 8px;
  color: #111d28;
  font-size: 1.55rem;
  letter-spacing: -.025em;
}
.theme-spiro #planos .plan__desc {
  min-height: 52px;
  margin-bottom: 17px;
  color: #6c7781;
  font-size: .9rem;
  line-height: 1.55;
}
.theme-spiro #planos .plan__hero {
  min-height: 170px;
  margin: 0 0 5px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%,rgba(223,22,39,.07),transparent 65%);
}
.theme-spiro #planos .plan__hero img {
  max-height: 190px;
  filter: drop-shadow(0 14px 18px rgba(8,26,43,.13));
}
.theme-spiro #planos .plan__price {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "old old" "price suffix";
  align-items: end;
  gap: 0 10px;
  margin: 10px 0 0;
}
.theme-spiro #planos .plan__price s {
  grid-area: old;
  margin-bottom: -3px;
  color: #9aa2a9;
  font-size: .88rem;
}
.theme-spiro #planos .plan__price strong {
  grid-area: price;
  color: #cc1120;
  font-size: 3.45rem;
  line-height: 1;
  letter-spacing: -.06em;
}
.theme-spiro #planos .plan__price strong span {
  font-size: 1.48rem;
  letter-spacing: -.03em;
}
.theme-spiro #planos .plan__price em {
  grid-area: suffix;
  align-self: end;
  padding-bottom: 7px;
  color: #77818b;
  font-size: .84rem;
}
.theme-spiro #planos .plan__note {
  margin: 8px 0 20px;
  color: #7c858e;
  font-size: .78rem;
}
.theme-spiro #planos .plan__difference {
  margin: 0 0 21px;
  padding: 11px 13px;
  border: 1px solid rgba(223,22,39,.13);
  border-radius: 12px;
  color: #a80f1b;
  background: #fff2f2;
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
}
.theme-spiro #planos .plan__included-title {
  margin: 1px 0 3px;
  color: #1d2a35;
  font-family: 'Cormorant Garamond',sans-serif;
  font-size: .86rem;
  font-weight: 800;
}
.theme-spiro #planos .check-list { margin-bottom: 22px; }
.theme-spiro #planos .check-list li {
  padding: 9px 0 9px 34px;
  border-bottom: 1px solid #edf0f2;
  color: #344451;
  font-size: .83rem;
  font-weight: 600;
  line-height: 1.4;
}
.theme-spiro #planos .check-list li::before {
  left: 1px;
  width: 21px; height: 21px;
  background: #ecf7f2;
  color: var(--green-ok);
  box-shadow: inset 0 0 0 1px rgba(18,134,90,.16);
  font-size: .72rem;
}
.theme-spiro #planos .plan--featured .check-list li::before {
  color: #fff;
  background: linear-gradient(135deg,#d91626,#006071);
  box-shadow: none;
}
.theme-spiro #planos .plan__not-included {
  display: grid;
  gap: 3px;
  margin-top: auto;
  margin-bottom: 18px;
  padding: 14px 15px;
  border: 1px solid #e6e8ea;
  border-radius: 14px;
  color: #6b747c;
  background: #f7f7f5;
  font-size: .78rem;
  line-height: 1.48;
}
.theme-spiro #planos .plan__not-included strong { color: #1f2b35; font-size: .82rem; }
.theme-spiro #planos .plan__not-included b { color: #c4101e; }
.theme-spiro #planos .btn {
  margin-top: auto;
  padding: 17px 20px;
  border-radius: 13px;
  font-size: .88rem;
  letter-spacing: .2px;
}
.theme-spiro #planos .plan__cta-basic {
  color: #132638;
  border-color: #cbd2d8;
  background: #fff;
}
.theme-spiro #planos .plan__cta-basic:hover {
  color: #fff;
  border-color: #122538;
  background: #122538;
}
.theme-spiro #planos .plan__cta-complete {
  padding: 19px 20px;
  background: linear-gradient(180deg,#e31a2b,#005d6d);
}
.theme-spiro #planos .plan__release {
  margin-top: 13px;
  color: #818990;
  font-size: .74rem;
}
.theme-spiro #planos .plan__release strong { color: #b30f1c; }
.pricing-after {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 34px;
  color: #aeb9c3;
  font-size: .78rem;
  font-weight: 600;
}

/* Garantia mais prÃ³xima de um selo/Ã¡rea de confianÃ§a, sem card genÃ©rico */
.theme-spiro .guarantee {
  max-width: 860px;
  border: 1px solid rgba(8,26,43,.08);
  border-radius: 28px;
  background: linear-gradient(180deg,#fff,#fbfaf7);
  box-shadow: var(--premium-shadow-sm);
}
.theme-spiro .guarantee::before { background: linear-gradient(90deg,var(--red-bright),var(--ember)); }
.theme-spiro .guarantee__seal {
  width: 78px; height: 78px;
  background: #fff1f2;
  box-shadow: inset 0 0 0 1px rgba(223,22,39,.12);
}

.theme-spiro .faq__item {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(8,26,43,.055);
}

@media (max-width: 980px) {
  .theme-spiro .hero__features { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .theme-spiro .hero__features li:nth-child(3n+2),
  .theme-spiro .hero__features li:nth-child(3n+3) { border-left: 0; }
  .theme-spiro .hero__features li:nth-child(even) { border-left: 1px solid rgba(8,26,43,.07); }
  .theme-spiro #planos .plans { max-width: 620px; }
  .theme-spiro #planos .plan--basic { margin-top: 0; }
  .theme-spiro #planos .plan--featured { margin-top: 20px; transform: none; }
}

@media (max-width: 680px) {
  .theme-spiro .hero { padding: 58px 0 65px; }
  .theme-spiro .hero__title { font-size: 2.08rem; line-height: 1.07; }
  .theme-spiro .hero__lead { font-size: .98rem; }
  .theme-spiro .hero__features { grid-template-columns: 1fr; padding: 10px 14px; }
  .theme-spiro .hero__features li,
  .theme-spiro .hero__features li:nth-child(even) { border-left: 0; border-bottom: 1px solid rgba(8,26,43,.065); }
  .theme-spiro .hero__features li:last-child { border-bottom: 0; }
  .theme-spiro .gallery__item { width: 188px; height: 265px; }
  .theme-spiro .gallery__item--square { width: 188px; height: 188px; }
  .theme-spiro #planos.pricing-section { padding: 76px 0 72px; }
  .pricing-heading__proof, .pricing-after { gap: 9px 15px; }
  .theme-spiro #planos .plans { margin-top: 46px; }
  .theme-spiro #planos .plan { padding: 30px 22px 26px; border-radius: 23px; }
  .theme-spiro #planos .plan__topline { margin: -30px -22px 24px; border-radius: 23px 23px 0 0; }
  .theme-spiro #planos .plan__name { font-size: 1.35rem; }
  .theme-spiro #planos .plan__desc { min-height: 0; }
  .theme-spiro #planos .plan__price strong { font-size: 3rem; }
  .theme-spiro #planos .plan__hero { min-height: 135px; }
  .theme-spiro #planos .plan__hero img { max-height: 155px; }
}



/* ============================================================
   PRICING CLEAN â€” seÃ§Ã£o de oferta simplificada
   Escopo: somente #planos.pricing-section--clean
   ============================================================ */
.theme-spiro #planos.pricing-section--clean {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  background:
    radial-gradient(650px 300px at 50% -8%, rgba(0,116,134,.09), transparent 68%),
    linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
}

.theme-spiro #planos.pricing-section--clean::before {
  content: none;
}

.theme-spiro #planos .pricing-intro {
  max-width: 840px;
}

.theme-spiro #planos .pricing-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(0,116,134,.14);
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 6px 18px rgba(8,26,43,.05);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.theme-spiro #planos .pricing-intro .section__title {
  max-width: 760px;
  margin: 0 auto 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: -.035em;
}

.theme-spiro #planos .pricing-intro__sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.theme-spiro #planos .pricing-intro__sub strong {
  color: var(--primary);
  font-weight: 900;
}

.theme-spiro #planos .plans--clean {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  align-items: stretch;
  gap: 24px;
  margin-top: 42px;
}

.theme-spiro #planos .plan--clean {
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  padding: 30px;
  overflow: visible;
  border: 1px solid #e2e6ea;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(8,26,43,.08);
  transform: none;
}

.theme-spiro #planos .plan--clean.plan--featured {
  border: 2px solid var(--primary);
  background:
    radial-gradient(circle at 100% 0, rgba(216,154,50,.08), transparent 27%),
    #fff;
  box-shadow: 0 24px 60px rgba(8,26,43,.12), 0 0 0 4px rgba(0,116,134,.035);
}

.theme-spiro #planos .plan--clean .plan__topline,
.theme-spiro #planos .plan--clean .plan__tag,
.theme-spiro #planos .plan--clean .plan__hero,
.theme-spiro #planos .plan--clean .plan__desc,
.theme-spiro #planos .plan--clean .plan__difference,
.theme-spiro #planos .plan--clean .plan__included-title,
.theme-spiro #planos .plan--clean .plan__not-included,
.theme-spiro #planos .plan--clean > .check-list,
.theme-spiro #planos .pricing-heading__proof,
.theme-spiro #planos .pricing-after {
  display: none !important;
}

.theme-spiro #planos .plan__ribbon {
  align-self: center;
  margin: -48px auto 22px;
  padding: 9px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #008397, #9d0b16);
  box-shadow: 0 10px 24px rgba(0,116,134,.25);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .65px;
  white-space: nowrap;
}

.theme-spiro #planos .plan__eyebrow {
  margin-bottom: 8px;
  color: #7b858e;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.15px;
}

.theme-spiro #planos .plan--featured .plan__eyebrow {
  color: var(--primary);
}

.theme-spiro #planos .plan--clean .plan__name {
  margin: 0 0 9px;
  color: #101923;
  font-size: 1.45rem;
  letter-spacing: -.025em;
}

.theme-spiro #planos .plan__summary {
  min-height: 48px;
  margin: 0 0 20px;
  color: #66727d;
  font-size: .9rem;
  line-height: 1.55;
}

.theme-spiro #planos .plan__media {
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff4ec, #ffe6d8);
  box-shadow: 0 14px 34px rgba(216,154,50,.18);
}

.theme-spiro #planos .plan__media img {
  display: block;
  width: 100%;
  height: auto;
}

.theme-spiro #planos .plan__upgrade {
  margin: -4px 0 18px;
  padding: 9px 11px;
  border: 1px solid rgba(0,116,134,.12);
  border-radius: 10px;
  color: #006071;
  background: #fff4f5;
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: .2px;
}

.theme-spiro #planos .plan__upgrade strong {
  font-size: .84rem;
}

.theme-spiro #planos .plan__price-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px 0;
  border-top: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
}

.theme-spiro #planos .plan__old-price {
  align-self: flex-start;
  margin-top: 7px;
  color: #9aa2aa;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: line-through;
}

.theme-spiro #planos .plan__price-main {
  display: grid;
  justify-items: end;
}

.theme-spiro #planos .plan__price-main strong {
  color: var(--primary);
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.065em;
}

.theme-spiro #planos .plan__price-main strong span {
  font-size: 1.25rem;
  letter-spacing: -.025em;
}

.theme-spiro #planos .plan__price-main small {
  margin-top: 5px;
  color: #7f8992;
  font-size: .72rem;
  font-weight: 600;
}

.theme-spiro #planos .plan__compact-title {
  margin-bottom: 10px;
  color: #26333e;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 800;
}

.theme-spiro #planos .plan__compact-list {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.theme-spiro #planos .plan__compact-list li {
  position: relative;
  padding: 9px 12px 9px 38px;
  border: 1px solid #edf0f2;
  border-radius: 11px;
  color: #34434f;
  background: #fbfcfd;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
}

.theme-spiro #planos .plan__compact-list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 12px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #0d7b50;
  background: #e9f7f1;
  font-size: .68rem;
  font-weight: 900;
}

.theme-spiro #planos .plan__compact-list--featured li {
  border-color: #f2d9dc;
  background: #fffafb;
}

.theme-spiro #planos .plan__compact-list--featured li::before {
  color: #fff;
  background: var(--primary);
}

.theme-spiro #planos .plan--clean .btn {
  margin-top: auto;
  padding: 17px 18px;
  border-radius: 12px;
  font-size: .87rem;
}

.theme-spiro #planos .plan--clean .plan__cta-basic {
  color: #102436;
  border-color: #ccd3d9;
  background: #fff;
}

.theme-spiro #planos .plan--clean .plan__cta-basic:hover {
  color: #fff;
  border-color: #102436;
  background: #102436;
}

.theme-spiro #planos .plan--clean .plan__cta-complete {
  background: linear-gradient(180deg, #008397, #005d6d);
  box-shadow: 0 5px 0 #004652, 0 12px 24px rgba(0,116,134,.22);
}

.theme-spiro #planos .plan__microcopy {
  margin: 12px 0 0;
  color: #8a939b;
  text-align: center;
  font-size: .7rem;
}

.theme-spiro #planos .plan__microcopy--featured {
  color: #557f83;
  font-weight: 700;
}

.theme-spiro #planos .pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 28px;
  color: #6f7a84;
  font-size: .75rem;
  font-weight: 700;
}

@media (max-width: 860px) {
  .theme-spiro #planos .plans--clean {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 34px;
  }

  .theme-spiro #planos .plan__ribbon {
    margin-top: -46px;
  }
}

@media (max-width: 560px) {
  .theme-spiro #planos.pricing-section--clean {
    padding: 68px 0 62px;
  }

  .theme-spiro #planos .pricing-intro .section__title {
    font-size: 2rem;
  }

  .theme-spiro #planos .plan--clean {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .theme-spiro #planos .plan__price-main strong {
    font-size: 2.65rem;
  }

  .theme-spiro #planos .pricing-trust {
    display: grid;
    gap: 6px;
    text-align: center;
  }
}


/* ============================================================
   TEMA ESPIROMETRIA — ATLAS VISUAL
   Mantiene la estructura validada y sustituye solo la identidad visual.
   ============================================================ */
.theme-spiro {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,248,245,.99)), var(--cream);
}

.theme-spiro .topbar {
  color: #f6fbfc;
  background: linear-gradient(90deg, #061b36 0%, #0a3655 58%, #006f80 100%);
  box-shadow: 0 4px 18px rgba(6,27,54,.22);
}
.theme-spiro .topbar::after {
  background: linear-gradient(90deg, #d89a32, #f3c76e, #ffffff, #007486);
}

.theme-spiro .hero {
  background:
    radial-gradient(850px 420px at 50% -4%, rgba(0,116,134,.13), transparent 62%),
    radial-gradient(520px 340px at 95% 26%, rgba(216,154,50,.12), transparent 68%),
    radial-gradient(420px 280px at 5% 50%, rgba(10,54,85,.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f1f7f7 100%);
}
.theme-spiro .hero::before {
  height: 5px;
  background: linear-gradient(90deg, #061b36, #007486 38%, #d89a32 72%, #061b36);
}
.theme-spiro .hero::after {
  content: "ESPIROMETRIA  •  CURVAS  •  PADRÕES  •  RACIOCÍNIO";
  color: rgba(6,27,54,.052);
  font-family: 'Inter', sans-serif;
}

.theme-spiro .badge {
  border-color: rgba(0,116,134,.18);
  color: #006071;
  background: linear-gradient(180deg, #fff, #eaf6f7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 6px 16px rgba(6,27,54,.05);
}
.theme-spiro .hero .badge {
  color: #f9fcfd;
  background: linear-gradient(90deg, #061b36, #0a3655);
  box-shadow: 0 10px 24px rgba(6,27,54,.18);
}
.theme-spiro .hero__title { color: var(--ink); }
.theme-spiro .hero__title .accent { color: #007486; }
.theme-spiro .hero__lead { color: #526674; }

.theme-spiro .hero__mockup {
  background: linear-gradient(135deg, rgba(0,116,134,.18), rgba(255,255,255,.96) 42%, rgba(216,154,50,.22));
  box-shadow: 0 30px 70px rgba(6,27,54,.14);
}
.theme-spiro .hero__mockup::before {
  content: "150 PÁGINAS • 15 PDFs • MATERIAL VISUAL";
  background: rgba(6,27,54,.94);
}

.theme-spiro .btn--primary,
.theme-spiro #planos .plan--clean .plan__cta-complete {
  color: #fff;
  background: linear-gradient(180deg, #008397, #005d6d);
  box-shadow: 0 6px 0 #004652, 0 15px 28px rgba(0,116,134,.24);
}
.theme-spiro .btn--primary:hover,
.theme-spiro #planos .plan--clean .plan__cta-complete:hover {
  box-shadow: 0 4px 0 #004652, 0 12px 24px rgba(0,116,134,.30);
}
.theme-spiro .btn--3d { box-shadow: 0 6px 0 #004652, 0 15px 28px rgba(0,116,134,.24); }
.theme-spiro .btn--3d:hover { box-shadow: 0 4px 0 #004652, 0 12px 22px rgba(0,116,134,.28); }
.theme-spiro .btn--outline { color: #0a3655; border-color: #0a3655; }
.theme-spiro .btn--outline:hover { color: #fff; background: #0a3655; }

.theme-spiro .section--alt {
  background:
    linear-gradient(180deg, rgba(0,111,128,.045), transparent 30%),
    radial-gradient(circle at 9% 12%, rgba(216,154,50,.07), transparent 24%),
    #eef4f4;
}
.theme-spiro .section__title { color: var(--ink); }

.theme-spiro .gallery__item {
  border-color: rgba(0,111,128,.12);
  box-shadow: 0 14px 32px rgba(6,27,54,.12);
}
.theme-spiro .gallery__item:hover {
  border-color: rgba(216,154,50,.48);
  box-shadow: 0 20px 42px rgba(6,27,54,.17);
}

.theme-spiro .feature-card,
.theme-spiro .bonus-card,
.theme-spiro .step,
.theme-spiro .review,
.theme-spiro .faq__item,
.theme-spiro .plan,
.theme-spiro .pain-box,
.theme-spiro .guarantee { border-color: rgba(0,111,128,.14); }

.theme-spiro .feature-card::before {
  background: linear-gradient(90deg, #061b36 0 38%, #007486 38% 72%, #d89a32 72% 100%);
}
.theme-spiro .feature-card__icon {
  color: #fff;
  background: linear-gradient(145deg, #007486, #0a3655);
  box-shadow: 0 8px 18px rgba(0,116,134,.18);
}
.theme-spiro .feature-card:nth-child(3n+2) .feature-card__icon {
  background: linear-gradient(145deg, #0a3655, #061b36);
  box-shadow: 0 8px 18px rgba(6,27,54,.18);
}
.theme-spiro .feature-card:nth-child(3n) .feature-card__icon {
  color: #fff;
  background: linear-gradient(145deg, #d89a32, #a56d16);
  box-shadow: 0 8px 18px rgba(216,154,50,.18);
}
.theme-spiro .feature-card--highlight {
  border-color: rgba(216,154,50,.48);
  background: linear-gradient(180deg, #fff, #fff9ed);
}

.theme-spiro .audience__item { color: #16364d; border-color: rgba(0,111,128,.13); }
.theme-spiro .audience__item::after { background: linear-gradient(#007486, #d89a32); }

.theme-spiro .pain-box {
  background: radial-gradient(circle at 100% 0, rgba(216,154,50,.08), transparent 25%), #fff;
}
.theme-spiro .pain-box__icon {
  color: #a56d16;
  background: #fff7e8;
  box-shadow: inset 0 0 0 1px rgba(216,154,50,.16);
}
.theme-spiro .pain-item {
  color: #153550;
  border-color: #e1ddd0;
  background: #fffaf2;
}
.theme-spiro .pain-item::before { background: linear-gradient(180deg, #d89a32, #a56d16); }

.theme-spiro .two-col__media::before {
  content: "ATLAS VISUAL • INTERPRETAÇÃO DA ESPIROMETRIA";
  background: rgba(6,27,54,.92);
}
.theme-spiro .check-list li { color: #16364d; }
.theme-spiro .check-list li::before {
  background: linear-gradient(145deg, #007486, #0a3655);
  box-shadow: 0 4px 10px rgba(0,116,134,.18);
}

.theme-spiro .bonus-card {
  border-top-color: #007486;
  background: linear-gradient(180deg, #fff, #fbfdfd);
}
.theme-spiro .bonus-card:nth-child(even) { border-top-color: #d89a32; }
.theme-spiro .bonus-card__thumb {
  background: linear-gradient(135deg, rgba(0,116,134,.08), rgba(216,154,50,.10)), #f6faf9;
}
.theme-spiro .step__num { background: linear-gradient(145deg, #007486, #004d5b); box-shadow: 0 7px 16px rgba(0,116,134,.20); }
.theme-spiro .review__stars { color: #d89a32; }
.theme-spiro .review__avatar { background: linear-gradient(145deg, #0a3655, #007486); }

.theme-spiro #planos {
  background: radial-gradient(550px 260px at 50% 0, rgba(0,116,134,.09), transparent 70%), #fff;
}
.theme-spiro .plan--featured,
.theme-spiro #planos .plan--clean.plan--featured {
  border-color: #007486;
  background: radial-gradient(circle at 100% 0, rgba(216,154,50,.09), transparent 28%), #fff;
  box-shadow: 0 28px 64px rgba(6,27,54,.18);
}
.theme-spiro .plan__tag,
.theme-spiro #planos .plan__ribbon {
  color: #fff;
  background: linear-gradient(90deg, #061b36, #0a3655);
}
.theme-spiro .plan__name { color: #0a3655; }
.theme-spiro .plan__price strong,
.theme-spiro #planos .plan__price-main strong { color: #007486; }
.theme-spiro #planos .plan__compact-list--featured li { border-color: #d6e8e8; background: #f8fdfd; }
.theme-spiro #planos .plan__compact-list--featured li::before { background: #007486; }
.theme-spiro #planos .plan__microcopy--featured { color: #557f83; }
.theme-spiro #planos .pricing-kicker { color: #007486; }

.theme-spiro .guarantee {
  background: radial-gradient(circle at 50% 0, rgba(0,111,128,.08), transparent 46%), #fff;
}
.theme-spiro .guarantee::before { background: linear-gradient(90deg, #061b36, #007486 45%, #d89a32); }
.theme-spiro .guarantee__seal {
  background: linear-gradient(145deg, #eaf6f7, #fff7e8);
  box-shadow: inset 0 0 0 1px rgba(0,111,128,.12);
}
.theme-spiro .faq__q { color: #0a3655; }
.theme-spiro .faq__item.open { border-color: rgba(0,116,134,.28); }

.theme-spiro .modal__overlay { background: rgba(4,17,34,.78); }
.theme-spiro .modal__card {
  border-color: rgba(0,116,134,.18);
  background:
    radial-gradient(130% 60% at 50% 0%, rgba(0,116,134,.12), transparent 58%),
    radial-gradient(80% 50% at 100% 100%, rgba(216,154,50,.10), transparent 60%),
    #fff;
}
.theme-spiro .modal__price { background: linear-gradient(180deg, #f8fbfb, #fffaf1); }
.theme-spiro .modal__price-tag { background: linear-gradient(180deg, #d89a32, #a56d16); box-shadow: 0 4px 12px rgba(216,154,50,.34); }

.theme-spiro .footer {
  color: #cbd8df;
  background: linear-gradient(180deg, #0a2c48 0%, #051626 100%);
}
.theme-spiro .footer::before { background: linear-gradient(90deg, #d89a32, #007486 38%, #fff 50%, #007486 68%, #d89a32); }
.theme-spiro .footer__disclaimer { color: #a8b8c3; }
.theme-spiro .footer__copy { color: #8298a7; }

/* Tipografia editorial inspirada no prÃ³prio Atlas */
h1, h2, h3,
.section__title,
.hero__title,
.plan__name,
.modal__title,
.footer__brand {
  font-family: 'Sora', system-ui, sans-serif;
  letter-spacing: -.01em;
}
.hero__title { font-size: clamp(2.65rem, 5vw, 4.15rem); line-height: 1.04; }
.section__title { font-size: clamp(2.15rem, 4vw, 3rem); }
.feature-card h3, .bonus-card h3, .step h3 { font-family: 'Inter', sans-serif; letter-spacing: 0; }


/* ============================================================
   REDESIGN VISUAL â€” REFERÃŠNCIA ENAMED
   IMPORTANTE:
   - nÃ£o altera a estrutura / ordem dos blocos do HTML;
   - preserva os bÃ´nus, mÃ³dulos, FAQ, planos e demais seÃ§Ãµes;
   - muda apenas estÃ©tica, espaÃ§amento, tipografia e comportamento visual;
   - carrossÃ©is passam a ser controlados via script.js.
   ============================================================ */

:root {
  --en-ink: #10242c;
  --en-ink-2: #17333d;
  --en-petrol: #0b2f39;
  --en-petrol-2: #123f4a;
  --en-teal: #109b97;
  --en-teal-d: #087773;
  --en-teal-l: #e2f6f3;
  --en-mint: #eefaf8;
  --en-aqua: #d8f2ee;
  --en-off: #f7fbfa;
  --en-white: #ffffff;
  --en-text: #4f636b;
  --en-muted: #71838a;
  --en-line: #dceae7;
  --en-coral: #f27063;
  --en-coral-l: #fff0ee;
  --en-shadow: 0 12px 34px rgba(12, 52, 60, .09);
  --en-shadow-lg: 0 28px 70px rgba(8, 43, 51, .15);
  --en-radius: 18px;
  --en-radius-lg: 28px;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.theme-spiro {
  color: var(--en-text);
  background: var(--en-white);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.theme-spiro::before {
  opacity: 0;
}

.theme-spiro h1,
.theme-spiro h2,
.theme-spiro h3,
.theme-spiro .hero__title,
.theme-spiro .section__title,
.theme-spiro .plan__name,
.theme-spiro .modal__title,
.theme-spiro .footer__brand {
  font-family: 'Sora', sans-serif;
  color: var(--en-ink);
  letter-spacing: -.035em;
}

/* ---------- Topbar ---------- */
.theme-spiro .topbar {
  min-height: 42px;
  padding: 9px 20px;
  border: 0;
  color: #cfe2e1;
  background: #071f26;
  box-shadow: none;
  font-size: .82rem;
  text-align: center;
}

.theme-spiro .topbar::after {
  display: none;
}

.theme-spiro .topbar strong {
  color: #ffffff;
}

/* ---------- Global sections ---------- */
.theme-spiro .section {
  padding: 88px 0;
}

.theme-spiro .section--alt {
  border: 0;
  background:
    radial-gradient(circle at 9% 6%, rgba(16,155,151,.08), transparent 24%),
    radial-gradient(circle at 92% 84%, rgba(16,155,151,.05), transparent 22%),
    var(--en-off);
}

.theme-spiro .section__title {
  max-width: 900px;
  margin-bottom: 17px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.16;
}

.theme-spiro .section__sub {
  max-width: 760px;
  color: var(--en-muted);
  font-size: 1.03rem;
}

.theme-spiro .badge,
.theme-spiro .pricing-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(16,155,151,.2);
  border-radius: 999px;
  color: var(--en-teal-d);
  background: var(--en-teal-l);
  box-shadow: none;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.theme-spiro .btn {
  min-height: 52px;
  padding: 15px 26px;
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.theme-spiro .btn:hover {
  transform: translateY(-2px);
}

.theme-spiro .btn--primary,
.theme-spiro #planos .plan--clean .plan__cta-complete {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(180deg, #13aaa5 0%, var(--en-teal-d) 100%);
  box-shadow: 0 5px 0 #066762, 0 14px 28px rgba(8,119,115,.28);
}

.theme-spiro .btn--primary:hover,
.theme-spiro #planos .plan--clean .plan__cta-complete:hover {
  box-shadow: 0 3px 0 #066762, 0 10px 20px rgba(8,119,115,.26);
}

.theme-spiro .btn--outline {
  border: 1.5px solid #b9d2cf;
  color: var(--en-petrol);
  background: #fff;
}

.theme-spiro .btn--outline:hover {
  border-color: var(--en-teal);
  color: var(--en-petrol);
  background: var(--en-mint);
}

/* ---------- HERO â€” mesma estrutura, nova estÃ©tica ---------- */
.theme-spiro .hero {
  isolation: isolate;
  padding: 76px 0 82px;
  border: 0;
  background:
    linear-gradient(rgba(11,47,57,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,47,57,.025) 1px, transparent 1px),
    radial-gradient(900px 440px at 50% -4%, rgba(16,155,151,.16), transparent 65%),
    #fbfefd;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.theme-spiro .hero::before {
  display: none;
}

.theme-spiro .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 270px;
  height: 270px;
  right: -80px;
  bottom: 2%;
  border-radius: 50%;
  background: rgba(91,197,190,.10);
  color: transparent;
}

.theme-spiro .hero__inner {
  max-width: 1060px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.theme-spiro .hero .badge {
  color: var(--en-teal-d);
  background: var(--en-teal-l);
  border-color: rgba(16,155,151,.22);
  box-shadow: none;
}

.theme-spiro .hero__title {
  max-width: 1040px;
  margin: 0 auto 22px;
  font-size: clamp(2.45rem, 6vw, 4.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.055em;
}

.theme-spiro .hero__title .accent {
  position: relative;
  color: var(--en-teal-d);
}

.theme-spiro .hero__title .accent::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: .03em;
  z-index: -1;
  height: .14em;
  border-radius: 99px;
  background: rgba(16,155,151,.15);
}

.theme-spiro .hero__lead {
  max-width: 820px;
  margin: 0 auto 24px;
  color: #5d7279;
  font-size: 1.1rem;
}

.theme-spiro .hero__mockup {
  width: min(900px, 100%);
  margin: 28px auto 28px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.theme-spiro .hero__mockup::before,
.theme-spiro .hero__mockup::after {
  display: none;
}

.theme-spiro .hero__mockup img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 28px 38px rgba(8,43,51,.16));
}

.theme-spiro .hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.theme-spiro .hero__features {
  width: min(970px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 8px auto 18px;
  padding: 0;
  list-style: none;
}

.theme-spiro .hero__features li {
  min-height: 78px;
  padding: 15px 15px;
  border: 1px solid var(--en-line);
  border-radius: 15px;
  color: #3e5d64;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 22px rgba(11,47,57,.05);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}

.theme-spiro .hero__stars {
  color: #3e5d64;
  font-size: .82rem;
  font-weight: 700;
}

/* ---------- Interactive galleries / ENAMED logic ---------- */
.theme-spiro .gallery {
  position: relative;
  width: 100%;
  margin: 40px 0;
  padding: 18px 0 28px;
  overflow: hidden;
  scrollbar-width: none;
  user-select: none;
  -webkit-user-select: none;
}

.theme-spiro .gallery::-webkit-scrollbar {
  display: none;
}

.theme-spiro .gallery.is-dragging {
  cursor: grabbing;
}

/* Carrossel automÃ¡tico: o script.js duplica os itens uma vez, entÃ£o
   deslizar atÃ© -50% completa exatamente um conjunto e reinicia sem salto. */
.theme-spiro .gallery__track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 4px 24px;
  animation: slideLeft 34s linear infinite;
  will-change: transform;
}

.theme-spiro .gallery__track--rev {
  animation-direction: reverse;
}

/* depoimentos deslizam mais devagar, para dar tempo de ler */
.theme-spiro .gallery__track--reviews {
  animation-duration: 62s;
}

/* pausa ao passar o mouse / focar por teclado */
.theme-spiro .gallery:hover .gallery__track,
.theme-spiro .gallery:focus-within .gallery__track {
  animation-play-state: paused;
}

.theme-spiro .gallery__item {
  position: relative;
  width: 230px;
  height: 300px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(11,47,57,.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(11,47,57,.09);
  outline: none;
  transition:
    transform .26s cubic-bezier(.2,.8,.2,1),
    box-shadow .26s ease,
    border-color .26s ease,
    filter .26s ease;
}

.theme-spiro .gallery__item--square {
  width: 230px;
  height: 230px;
}

.theme-spiro .gallery__item:hover {
  transform: translateY(-4px);
  border-color: rgba(16,155,151,.4);
}

.theme-spiro .gallery__item:focus-visible {
  box-shadow: 0 0 0 4px rgba(97,199,207,.28), 0 20px 44px rgba(1,23,51,.18);
}

.theme-spiro .gallery__item.is-selected {
  z-index: 6;
  border-color: var(--en-coral);
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 28px 60px rgba(1,23,51,.24), 0 0 0 4px rgba(242,112,99,.10);
  filter: saturate(1.03) contrast(1.01);
}

.theme-spiro .gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.theme-spiro .gallery__track--reviews .review {
  width: 330px;
  min-height: 240px;
}

/* ---------- Content cards ---------- */
.theme-spiro .grid {
  gap: 20px;
  margin-top: 44px;
}

.theme-spiro .feature-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--en-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--en-shadow);
}

.theme-spiro .feature-card::before {
  display: none;
}

.theme-spiro .feature-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(16,155,151,.045);
}

.theme-spiro .feature-card--highlight {
  border-color: rgba(16,155,151,.28);
  background: linear-gradient(180deg, #fff, #f1fbf9);
}

.theme-spiro .feature-card__icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 0 10px;
  border: 0;
  border-radius: 12px;
  color: var(--en-teal-d);
  background: var(--en-teal-l) !important;
  box-shadow: none !important;
  font-family: 'Inter', sans-serif;
  font-size: .94rem;
}

.theme-spiro .feature-card h3,
.theme-spiro .bonus-card h3,
.theme-spiro .step h3 {
  position: relative;
  z-index: 2;
  font-family: 'Sora', sans-serif;
  letter-spacing: -.02em;
}

.theme-spiro .feature-card h3 {
  margin-bottom: 11px;
  font-size: 1.03rem;
}

.theme-spiro .feature-card p {
  position: relative;
  z-index: 2;
  color: var(--en-muted);
  font-size: .88rem;
}

/* ---------- Audience ---------- */
.theme-spiro .audience {
  gap: 14px;
  margin-top: 42px;
}

.theme-spiro .audience__item {
  min-height: 74px;
  padding: 19px 20px 19px 58px;
  border: 1px solid var(--en-line);
  border-radius: 16px;
  color: var(--en-ink-2);
  background: #fff;
  box-shadow: 0 8px 22px rgba(11,47,57,.05);
}

.theme-spiro .audience__item::before {
  top: 18px;
  left: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--en-teal);
}

/* ---------- Pain block ---------- */
.theme-spiro .pain-box {
  padding: 48px 42px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  color: #d9e8e7;
  background:
    radial-gradient(700px 380px at 5% 0%, rgba(16,155,151,.17), transparent 64%),
    radial-gradient(600px 300px at 100% 100%, rgba(65,194,183,.09), transparent 60%),
    var(--en-petrol);
  box-shadow: var(--en-shadow-lg);
}

.theme-spiro .pain-box .section__title,
.theme-spiro .pain-box h2 {
  color: #fff;
}

.theme-spiro .pain-box .section__sub {
  color: #b8cdcc;
}

.theme-spiro .pain-box__icon {
  color: #9fe2dc;
  background: rgba(16,155,151,.12);
}

.theme-spiro .pain-item {
  min-height: 62px;
  padding: 17px 18px 17px 52px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  color: #e1eeee;
  background: rgba(255,255,255,.045);
}

.theme-spiro .pain-item::before {
  color: #8dd8d1;
  background: transparent;
}

/* ---------- Bundle / image + text ---------- */
.theme-spiro .two-col {
  gap: 58px;
}

.theme-spiro .two-col__media::before,
.theme-spiro .two-col__media::after {
  display: none;
}

.theme-spiro .two-col__media img {
  border: 1px solid var(--en-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--en-shadow-lg);
}

.theme-spiro .check-list li {
  padding: 11px 0 11px 34px;
  border-bottom: 1px solid var(--en-line);
  color: var(--en-ink-2);
  font-size: .9rem;
  font-weight: 650;
}

.theme-spiro .check-list li::before {
  top: 12px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #fff;
  background: var(--en-teal);
  box-shadow: none;
}

/* ---------- Product cards / bonuses ---------- */
.theme-spiro .product-showcase-grid {
  gap: 20px;
  margin-top: 46px;
}

.theme-spiro .bonus-card {
  overflow: hidden;
  padding: 0 0 24px;
  border: 1px solid var(--en-line);
  border-top: 1px solid var(--en-line) !important;
  border-radius: 20px;
  background: #fff !important;
  box-shadow: var(--en-shadow);
}

.theme-spiro .bonus-card__thumb {
  margin: 0 0 22px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--en-line);
  background: var(--en-mint);
}

/* As artes dos bÃ´nus sÃ£o infogrÃ¡ficos 4:3 com texto atÃ© as bordas:
   ocupam a largura toda do topo do card, no formato natural e sem corte. */
.theme-spiro .bonus-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.theme-spiro .bonus-card h3,
.theme-spiro .bonus-card p,
.theme-spiro .bonus-card .bonus-card__metric {
  margin-left: 22px;
  margin-right: 22px;
}

.theme-spiro .bonus-card h3 {
  min-height: 2.3em;
  margin-bottom: 10px;
  color: var(--en-ink);
  font-size: 1rem;
}

.theme-spiro .bonus-card p {
  color: var(--en-muted);
  font-size: .84rem;
}

/* ---------- Steps ---------- */
.theme-spiro .steps {
  gap: 14px;
  margin-top: 42px;
}

.theme-spiro .steps::before {
  display: none;
}

.theme-spiro .step {
  min-height: 185px;
  padding: 22px 19px;
  border: 1px solid var(--en-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(11,47,57,.055);
  text-align: left;
}

.theme-spiro .step__num {
  display: flex;
  width: 36px;
  height: 36px;
  margin: 0 0 30px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  color: var(--en-teal-d);
  background: var(--en-teal-l);
  box-shadow: none;
  font-size: .75rem;
}

.theme-spiro .step h3 {
  margin-bottom: 7px;
  font-size: .91rem;
}

.theme-spiro .step p {
  color: var(--en-muted);
  font-size: .79rem;
}

/* ---------- Benefit reviews ---------- */
.theme-spiro .review {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--en-line);
  border-radius: 20px;
  color: var(--en-text);
  background: #fff;
  box-shadow: var(--en-shadow);
  text-align: left;
}

.theme-spiro .review::after {
  content: "“";
  position: absolute;
  right: 18px;
  bottom: -30px;
  color: rgba(16,155,151,.07);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  pointer-events: none;
}

.theme-spiro .review__stars {
  margin-bottom: 17px;
  color: #e9a33a;
  font-size: .84rem;
}

.theme-spiro .review__text {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  color: var(--en-ink);
  font-size: .93rem;
  font-weight: 600;
}

.theme-spiro .review__name,
.theme-spiro .review__role {
  color: var(--en-muted);
}

/* ---------- Pricing ---------- */
.theme-spiro #planos.pricing-section--clean {
  padding: 88px 0;
  border: 0;
  background:
    radial-gradient(circle at 9% 6%, rgba(16,155,151,.07), transparent 24%),
    linear-gradient(180deg, #fff, #f8fcfb);
}

.theme-spiro #planos::before,
.theme-spiro #planos::after {
  display: none;
}

.theme-spiro #planos .pricing-intro .section__title {
  color: var(--en-ink);
}

.theme-spiro #planos .pricing-intro__sub {
  color: var(--en-muted);
}

.theme-spiro #planos .plans {
  max-width: 970px;
  gap: 24px;
  margin-top: 46px;
}

.theme-spiro #planos .plan--clean {
  padding: 34px;
  border: 1px solid var(--en-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--en-shadow);
}

.theme-spiro #planos .plan--clean.plan--featured {
  padding-top: 44px;
  border: 2px solid var(--en-teal);
  background: #fff;
  box-shadow: 0 27px 65px rgba(8,119,115,.16);
}

.theme-spiro #planos .plan__ribbon {
  top: -15px;
  width: max-content;
  max-width: 88%;
  padding: 8px 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--en-petrol);
  font-size: .68rem;
  letter-spacing: .08em;
}

.theme-spiro #planos .plan__eyebrow {
  color: var(--en-teal-d);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.theme-spiro #planos .plan__name {
  margin-bottom: 8px;
  font-size: 1.42rem;
  font-weight: 800;
}

.theme-spiro #planos .plan__summary {
  color: var(--en-muted);
  font-size: .86rem;
}

.theme-spiro #planos .plan__media {
  margin: 18px 0 22px;
  overflow: hidden;
  border: 1px solid var(--en-line);
  border-radius: 18px;
  background: var(--en-off);
}

.theme-spiro #planos .plan__media img {
  max-height: 220px;
  object-fit: contain;
}

.theme-spiro #planos .plan__price-box {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.theme-spiro #planos .plan__old-price {
  color: var(--en-muted);
}

.theme-spiro #planos .plan__price-main strong {
  color: var(--en-petrol);
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.75rem, 5vw, 3.65rem);
  letter-spacing: -.055em;
}

.theme-spiro #planos .plan__price-main small {
  color: var(--en-muted);
}

.theme-spiro #planos .plan__compact-title {
  color: var(--en-ink);
}

.theme-spiro #planos .plan__compact-list li,
.theme-spiro #planos .plan__compact-list--featured li {
  border-color: var(--en-line);
  color: var(--en-ink-2);
  background: transparent;
}

.theme-spiro #planos .plan__compact-list li::before,
.theme-spiro #planos .plan__compact-list--featured li::before {
  background: var(--en-teal);
}

.theme-spiro #planos .pricing-trust {
  color: var(--en-muted);
}

/* ---------- Guarantee ---------- */
.theme-spiro .guarantee {
  padding: 42px;
  border: 1px solid var(--en-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--en-shadow);
}

.theme-spiro .guarantee::before {
  display: none;
}

.theme-spiro .guarantee__seal {
  color: var(--en-teal-d);
  background: var(--en-teal-l);
  box-shadow: none;
}

/* ---------- FAQ ---------- */
.theme-spiro .faq {
  max-width: 880px;
}

.theme-spiro .faq__item {
  margin-bottom: 10px;
  border: 1px solid var(--en-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
}

.theme-spiro .faq__item.open,
.theme-spiro .faq__item.is-open {
  border-color: rgba(16,155,151,.38);
  box-shadow: 0 10px 25px rgba(11,47,57,.06);
}

.theme-spiro .faq__q {
  color: var(--en-ink);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
}

.theme-spiro .faq__ic {
  color: var(--en-teal-d);
}

/* ---------- Modal ---------- */
.theme-spiro .modal__overlay {
  background: rgba(7,31,38,.78);
}

.theme-spiro .modal__card {
  border: 1px solid var(--en-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(3,26,32,.28);
}

.theme-spiro .modal__eyebrow {
  color: var(--en-teal-d);
}

.theme-spiro .modal__title span {
  color: var(--en-teal-d);
}

.theme-spiro .modal__price {
  border-color: var(--en-line);
  background: var(--en-mint);
}

.theme-spiro .modal__price-tag {
  background: var(--en-petrol);
  box-shadow: none;
}

/* ---------- Footer ---------- */
.theme-spiro .footer {
  border: 0;
  color: #cfe2e1;
  background: #071f26;
}

.theme-spiro .footer::before {
  display: none;
}

.theme-spiro .footer__brand {
  color: #fff;
  font-size: 1rem;
}

.theme-spiro .footer__disclaimer,
.theme-spiro .footer__copy {
  color: #91aaa9;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .theme-spiro .hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-spiro #planos .plans,
  .theme-spiro .plans {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .theme-spiro .section {
    padding: 66px 0;
  }

  .theme-spiro .hero {
    padding: 58px 0 64px;
  }

  .theme-spiro .hero__title {
    font-size: clamp(1.5rem, 6.5vw, 2.1rem);
    line-height: 1.15;
  }

  .theme-spiro .hero__lead {
    font-size: .98rem;
  }

  .theme-spiro .hero__features {
    grid-template-columns: 1fr;
  }

  .theme-spiro .gallery__item {
    width: 205px;
    height: 268px;
  }

  .theme-spiro .gallery__item--square {
    width: 205px;
    height: 205px;
  }

  .theme-spiro .grid--3,
  .theme-spiro .grid--4,
  .theme-spiro .audience,
  .theme-spiro .pain-grid,
  .theme-spiro .steps,
  .theme-spiro .product-showcase-grid,
  .theme-spiro .two-col {
    grid-template-columns: 1fr;
  }


  .theme-spiro .pain-box {
    padding: 34px 22px;
  }

  .theme-spiro #planos .plan--clean {
    padding: 26px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-spiro .gallery {
    scroll-behavior: auto;
  }

  .theme-spiro .gallery__item,
  .theme-spiro .btn {
    transition: none;
  }
}


/* ===== Compatibilidad con el widget de checkout de Hotmart ===== */
.theme-spiro a.btn.hotmart-fb.hotmart__button-checkout {
  display: inline-block !important;
  text-decoration: none !important;
  font-family: 'Inter', sans-serif !important;
}
.theme-spiro a.btn--block.hotmart-fb.hotmart__button-checkout {
  display: block !important;
  width: 100% !important;
}
.theme-spiro a.modal__decline.hotmart-fb.hotmart__button-checkout {
  display: inline-block !important;
}

/* ===== SÃ­mbolo de moneda en las tarjetas de precio ===== */
.theme-spiro #planos .plan__price-main strong .plan__cur {
  margin-right: .12em;
  font-size: .5em;
  font-weight: 700;
  letter-spacing: -.01em;
  vertical-align: .42em;
}



/* ============================================================
   OVERRIDES — ATLAS VISUAL DE INTERPRETAÇÃO DA ESPIROMETRIA
   ============================================================ */
.theme-spiro .hero__title,
.theme-spiro .section__title,
.theme-spiro h1,
.theme-spiro h2,
.theme-spiro h3 { font-family: 'Sora', system-ui, sans-serif; }

.theme-spiro .hero__title { letter-spacing: -0.035em; }
.theme-spiro .hero__lead strong { color: var(--navy); }
.theme-spiro .hero__stars { max-width: 760px; line-height: 1.55; }

.hero-material {
  position: relative;
  width: min(760px, 100%);
  height: 500px;
  margin: 12px auto 34px;
}
.hero-material__card {
  position: absolute;
  top: 50%; left: 50%;
  width: 260px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 55px rgba(6,27,54,.22);
  transform-origin: center bottom;
}
.hero-material__card img { width: 100%; height: 100%; object-fit: cover; }
.hero-material__card--left { transform: translate(-130%, -48%) rotate(-10deg); }
.hero-material__card--center { z-index: 2; transform: translate(-50%, -52%) rotate(0deg); }
.hero-material__card--right { transform: translate(30%, -48%) rotate(10deg); }
.hero-material__tag {
  position:absolute; z-index:3; left:50%; bottom:18px; transform:translateX(-50%);
  padding:10px 18px; border-radius:999px; color:#fff;
  background:linear-gradient(90deg,#061b36,#007486); box-shadow:0 10px 24px rgba(6,27,54,.22);
  font-size:.72rem; font-weight:900; letter-spacing:.7px; white-space:nowrap;
}

.metric-strip {
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:14px;
  max-width:900px; width:100%; margin:0 auto 34px;
}
.metric-strip__item {
  padding:16px 14px; border:1px solid rgba(0,116,134,.14); border-radius:14px;
  background:#fff; box-shadow:0 10px 24px rgba(6,27,54,.07); text-align:center;
}
.metric-strip__item strong { display:block; color:#061b36; font-family:'Sora',sans-serif; font-size:1.25rem; }
.metric-strip__item span { color:#6a7884; font-size:.78rem; font-weight:700; }

.mechanism {
  display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; margin-top:44px;
}
.mechanism__item { padding:26px 22px; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:var(--shadow); text-align:left; }
.mechanism__num { display:flex; align-items:center; justify-content:center; width:40px; height:40px; margin-bottom:14px; border-radius:12px; color:#fff; background:linear-gradient(145deg,#007486,#004d5b); font-weight:900; }
.mechanism__item h3 { margin-bottom:8px; font-size:1rem; }
.mechanism__item p { color:var(--muted); font-size:.88rem; }

.module-list { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin-top:38px; }
.module-item { display:flex; align-items:flex-start; gap:12px; padding:16px 18px; border:1px solid var(--line); border-radius:14px; background:#fff; box-shadow:0 8px 20px rgba(6,27,54,.06); text-align:left; }
.module-item__num { flex:0 0 auto; display:flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:10px; color:#fff; background:#0a3655; font-size:.75rem; font-weight:900; }
.module-item strong { display:block; color:#102c45; font-size:.88rem; line-height:1.35; }
.module-item span { color:#6a7884; font-size:.76rem; }

.offer-card { max-width:650px; margin:52px auto 0; padding:40px 34px; border:2px solid #007486; border-radius:24px; background:radial-gradient(circle at 100% 0, rgba(216,154,50,.09), transparent 28%),#fff; box-shadow:0 28px 64px rgba(6,27,54,.16); text-align:left; }
.offer-card__eyebrow { display:inline-block; margin-bottom:12px; padding:7px 12px; border-radius:999px; color:#fff; background:#061b36; font-size:.7rem; font-weight:900; letter-spacing:.6px; }
.offer-card h3 { font-size:1.45rem; margin-bottom:8px; }
.offer-card__sub { color:var(--muted); margin-bottom:22px; }
.offer-card__price { display:flex; flex-wrap:wrap; align-items:baseline; gap:10px; margin:18px 0 20px; }
.offer-card__price s { color:#a7adb1; font-weight:700; }
.offer-card__price strong { color:#007486; font-family:'Sora',sans-serif; font-size:3rem; letter-spacing:-.04em; }
.offer-card__price small { color:#6a7884; font-weight:700; }
.offer-card .check-list { margin-bottom:26px; }
.offer-card__micro { margin-top:12px; color:#7c8892; text-align:center; font-size:.78rem; }

.disclaimer-box { max-width:860px; margin:30px auto 0; padding:18px 22px; border:1px solid rgba(0,116,134,.15); border-radius:14px; background:#f8fbfc; color:#61717e; font-size:.82rem; text-align:left; }

@media (max-width: 900px) {
  .metric-strip { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .mechanism { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .module-list { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .hero-material { height:390px; }
  .hero-material__card { width:190px; border-width:6px; }
  .hero-material__card--left { transform:translate(-126%,-48%) rotate(-9deg); }
  .hero-material__card--right { transform:translate(26%,-48%) rotate(9deg); }
  .hero-material__tag { bottom:4px; font-size:.62rem; }
  .metric-strip,.mechanism,.module-list { grid-template-columns:1fr; }
  .offer-card { padding:32px 22px; }
  .offer-card__price strong { font-size:2.55rem; }
}

/* ===== Checkout: cards e listas no estilo da oferta ===== */
.theme-spiro #planos .plans--clean {
  max-width: 1040px;
  gap: 26px;
}

.theme-spiro #planos .plan--clean {
  padding: 34px 32px 28px;
  border-color: #d8e8e8;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(6, 45, 61, .09);
}

.theme-spiro #planos .plan--clean.plan--featured {
  border: 2px solid #0aa6a1;
  box-shadow: 0 22px 50px rgba(0, 116, 134, .13);
}

.theme-spiro #planos .plan__warning {
  margin: 10px 0 18px;
  padding: 12px 14px;
  border: 1px solid #ead5aa;
  border-radius: 9px;
  color: #78633d;
  background: #fffaf0;
  font-size: .75rem;
  line-height: 1.45;
}

.theme-spiro #planos .plan__price-box {
  margin-bottom: 16px;
  padding: 4px 0 12px;
  border: 0;
}

.theme-spiro #planos .plan__compact-list {
  gap: 8px;
  margin-bottom: 24px;
}

.theme-spiro #planos .plan__compact-list li,
.theme-spiro #planos .plan__compact-list--featured li {
  min-height: 42px;
  padding: 10px 13px 10px 42px;
  border: 1px solid #cfe2e2;
  border-radius: 10px;
  color: #113342;
  background: #fff;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.32;
}

.theme-spiro #planos .plan__compact-list li::before,
.theme-spiro #planos .plan__compact-list--featured li::before {
  content: "\2713";
  left: 13px;
  width: 18px;
  height: 18px;
  color: #fff;
  background: #13aaa5;
  font-size: .7rem;
}

.theme-spiro #planos .plan__compact-list--not-included li {
  border-color: #dfe5e7;
  color: #9ca7ad;
  background: #f8f9f9;
}

.theme-spiro #planos .plan__compact-list--not-included li::before {
  content: "\00d7";
  color: #cb7a80;
  background: #f7e4e6;
}

.theme-spiro #planos .plan__compact-title {
  margin: 2px 0 10px;
  font-size: .8rem;
}

.theme-spiro #planos .plan__ribbon {
  background: #063747;
  box-shadow: 0 10px 22px rgba(6, 55, 71, .22);
}

.theme-spiro #planos .plan--clean .btn {
  min-height: 48px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 900;
}

.theme-spiro #planos .plan--clean .plan__cta-complete {
  border-color: #0aa6a1;
  background: linear-gradient(180deg, #14b8b1, #078e8a);
  box-shadow: 0 5px 0 #05716f, 0 13px 24px rgba(10, 166, 161, .22);
}

@media (max-width: 860px) {
  .theme-spiro #planos .plans--clean {
    max-width: 580px;
    gap: 42px;
  }
}

@media (max-width: 560px) {
  .theme-spiro #planos .plan--clean,
  .theme-spiro #planos .plan--clean.plan--featured {
    padding: 28px 18px 22px;
    border-radius: 18px;
  }

  .theme-spiro #planos .plan__compact-list li,
  .theme-spiro #planos .plan__compact-list--featured li {
    padding: 10px 10px 10px 39px;
    font-size: .75rem;
  }

  .theme-spiro #planos .plan__price-main strong {
    font-size: 2.75rem;
  }
}

/* Tema ativo: acabamento visual das descrições do checkout */
html body.theme-cbmma #planos .plans--clean {
  align-items: stretch;
  max-width: 1060px;
  gap: 28px;
}

html body.theme-cbmma #planos .plan--clean {
  display: flex;
  flex-direction: column;
  padding: 34px 32px 28px;
  overflow: visible;
  border: 1px solid #d7e5e8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(14, 48, 60, .1);
}

html body.theme-cbmma #planos .plan--featured {
  border: 2px solid #079b9c;
  box-shadow: 0 24px 58px rgba(7, 128, 132, .16);
}

html body.theme-cbmma #planos .plan__eyebrow {
  margin-bottom: 7px;
  color: #087b7d;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .09em;
}

html body.theme-cbmma #planos .plan__name {
  margin-bottom: 14px;
  color: #09283a;
  font-size: 1.35rem;
  line-height: 1.2;
}

html body.theme-cbmma #planos .plan__price-box {
  margin-bottom: 18px;
  padding: 0 0 15px;
  border: 0;
  border-bottom: 1px solid #e7eff0;
  background: transparent;
}

html body.theme-cbmma #planos .plan__price-main strong {
  color: #073247;
  font-size: clamp(2.65rem, 5vw, 3.5rem);
  line-height: 1;
}

html body.theme-cbmma #planos .plan__warning {
  margin: -2px 0 20px;
  padding: 12px 14px;
  border: 1px solid #ead3a7;
  border-radius: 10px;
  color: #735e38;
  background: linear-gradient(135deg, #fffaf0, #fff7e8);
  font-size: .76rem;
  line-height: 1.5;
}

html body.theme-cbmma #planos .plan__compact-list {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

html body.theme-cbmma #planos .plan__compact-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 13px 10px 43px;
  border: 1px solid #d2e3e5;
  border-radius: 11px;
  color: #244251;
  background: linear-gradient(180deg, #fff, #fbfdfd);
  font-size: .79rem;
  font-weight: 600;
  line-height: 1.38;
  box-shadow: 0 2px 7px rgba(8, 54, 67, .025);
}

html body.theme-cbmma #planos .plan__compact-list li strong {
  color: #092f42;
  font-weight: 800;
}

html body.theme-cbmma #planos .plan__compact-list li::before {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 13px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: #10a6a3;
  font-size: .68rem;
  font-weight: 900;
}

html body.theme-cbmma #planos .plan__compact-title {
  margin: 2px 0 11px;
  color: #173849;
  font-size: .8rem;
  font-weight: 800;
}

html body.theme-cbmma #planos .plan__compact-list--not-included {
  margin: 0 0 24px;
}

html body.theme-cbmma #planos .plan__compact-list--not-included li {
  border-color: #e1e7e9;
  color: #9aa5ab;
  background: #f7f9f9;
  opacity: 1;
}

html body.theme-cbmma #planos .plan__compact-list--not-included li::before {
  content: "\00d7";
  color: #c8777c;
  background: #f5e3e5;
}

html body.theme-cbmma #planos .plan--clean .btn {
  min-height: 49px;
  margin-top: auto;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 900;
}

html body.theme-cbmma #planos .plan__microcopy {
  margin-top: 13px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  html body.theme-cbmma #planos .plans--clean {
    grid-template-columns: 1fr;
    max-width: 590px;
    gap: 42px;
  }
}

@media (max-width: 560px) {
  html body.theme-cbmma #planos .plan--clean {
    padding: 27px 18px 22px;
    border-radius: 18px;
  }

  html body.theme-cbmma #planos .plan__compact-list li {
    min-height: 42px;
    padding: 10px 10px 10px 40px;
    font-size: .75rem;
  }

  html body.theme-cbmma #planos .plan__compact-list li::before {
    left: 12px;
  }
}

/* Checkout alinhado à referência visual enviada */
html body.theme-cbmma #planos .plans--clean {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  gap: 30px;
  margin-top: 52px;
}

html body.theme-cbmma #planos .plan--clean {
  position: relative;
  padding: 40px 38px 30px;
  border-radius: 26px;
}

html body.theme-cbmma #planos .plan--featured {
  padding-top: 42px;
}

html body.theme-cbmma #planos .plan__ribbon {
  position: absolute;
  z-index: 3;
  top: -17px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 40px);
  margin: 0;
  padding: 9px 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: #fff;
  background: #073747;
  box-shadow: 0 10px 24px rgba(7, 55, 71, .24);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .07em;
  white-space: nowrap;
}

html body.theme-cbmma #planos .plan__media {
  display: grid;
  height: 238px;
  margin: 8px 0 24px;
  overflow: hidden;
  place-items: center;
  border: 1px solid #d5e6e6;
  border-radius: 18px;
  background: linear-gradient(145deg, #f9fdfc, #f2f8f7);
}

html body.theme-cbmma #planos .plan__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

html body.theme-cbmma #planos .plan__eyebrow {
  margin-bottom: 8px;
  font-size: .68rem;
  letter-spacing: .11em;
}

html body.theme-cbmma #planos .plan__name {
  max-width: 430px;
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  letter-spacing: -.035em;
}

html body.theme-cbmma #planos .plan__price-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
  margin-bottom: 20px;
  padding: 2px 0 18px;
}

html body.theme-cbmma #planos .plan__old-price {
  margin-top: 9px;
  color: #8c989e;
  font-size: .78rem;
  font-weight: 700;
}

html body.theme-cbmma #planos .plan__price-main {
  display: grid;
  justify-items: end;
  margin-left: auto;
}

html body.theme-cbmma #planos .plan__price-main strong {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.07em;
}

html body.theme-cbmma #planos .plan__price-main strong span:not(.plan__cur) {
  font-size: .42em;
  letter-spacing: -.02em;
}

html body.theme-cbmma #planos .plan__price-main small {
  margin-top: 7px;
  color: #718087;
  font-size: .7rem;
}

html body.theme-cbmma #planos .plan__compact-list {
  gap: 9px;
}

html body.theme-cbmma #planos .plan__compact-list li {
  min-height: 46px;
  padding: 11px 14px 11px 45px;
  border-color: #cfe1e2;
  border-radius: 10px;
  font-size: .8rem;
}

html body.theme-cbmma #planos .plan__compact-list li::before {
  left: 14px;
  width: 20px;
  height: 20px;
}

html body.theme-cbmma #planos .plan__compact-title {
  margin-top: 2px;
  font-family: 'Sora', sans-serif;
  font-size: .8rem;
}

html body.theme-cbmma #planos .plan--clean .btn {
  min-height: 52px;
  padding: 15px 18px;
  border-radius: 10px;
  letter-spacing: -.01em;
}

html body.theme-cbmma #planos .plan__microcopy {
  min-height: 34px;
  margin: 14px 0 0;
  color: #73858c;
  font-size: .68rem;
  text-align: center;
}

@media (max-width: 860px) {
  html body.theme-cbmma #planos .plans--clean {
    grid-template-columns: 1fr;
    max-width: 590px;
    gap: 48px;
  }
}

@media (max-width: 560px) {
  html body.theme-cbmma #planos .plans--clean {
    margin-top: 42px;
  }

  html body.theme-cbmma #planos .plan--clean,
  html body.theme-cbmma #planos .plan--featured {
    padding: 28px 16px 20px;
    border-radius: 17px;
  }

  html body.theme-cbmma #planos .plan--featured {
    padding-top: 31px;
  }

  html body.theme-cbmma #planos .plan__ribbon {
    top: -14px;
    left: 50%;
    max-width: calc(100% - 30px);
    padding: 7px 12px;
    transform: translateX(-50%);
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #073747;
    box-shadow: 0 8px 18px rgba(7, 55, 71, .22);
    font-size: .57rem;
  }

  html body.theme-cbmma #planos .plan__media {
    height: auto;
    min-height: 185px;
    margin: 0 0 11px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  html body.theme-cbmma #planos .plan__price-box {
    min-height: 0;
    margin-bottom: 9px;
    padding-bottom: 12px;
  }

  html body.theme-cbmma #planos .plan__price-main strong {
    font-size: 2.65rem;
  }

  html body.theme-cbmma #planos .plan__compact-list {
    gap: 6px;
    margin-bottom: 18px;
  }

  html body.theme-cbmma #planos .plan__compact-list li {
    min-height: 34px;
    padding: 7px 8px 7px 36px;
    font-size: .64rem;
  }

  html body.theme-cbmma #planos .plan__compact-list li::before {
    left: 9px;
    width: 16px;
    height: 16px;
    font-size: .58rem;
  }
}
