:root {
  --paper: #f4efe4;
  --paper-light: #fffdf7;
  --paper-deep: #e9dfcc;
  --navy: #071b34;
  --navy-2: #0d2947;
  --petrol: #0f5a57;
  --petrol-dark: #093f3e;
  --gold: #c99224;
  --gold-light: #edcf8b;
  --rust: #a3412e;
  --ink: #0b1c2c;
  --muted: #5e625f;
  --line: rgba(7, 27, 52, .16);
  --white: #ffffff;
  --shadow-sm: 0 8px 20px rgba(7, 27, 52, .08);
  --shadow: 0 18px 46px rgba(7, 27, 52, .13);
  --shadow-deep: 0 28px 70px rgba(4, 17, 32, .24);
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(78, 58, 27, .06) 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(78, 58, 27, .035) 32px);
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: Oswald, Inter, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  text-wrap: pretty;
}

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

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

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

.center {
  text-align: center;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 44px;
  padding: 9px 20px;
  border-bottom: 3px solid var(--gold);
  color: rgba(255, 255, 255, .76);
  background: var(--navy);
  font-size: .78rem;
}

.topbar strong {
  color: var(--gold-light);
  font-family: Oswald, Inter, sans-serif;
  font-size: .92rem;
  text-transform: uppercase;
}

.topbar span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.section {
  position: relative;
  padding: 96px 0;
}

.section--soft {
  border-top: 1px solid rgba(7, 27, 52, .08);
  border-bottom: 1px solid rgba(7, 27, 52, .08);
  background-color: var(--paper-light);
  background-image: repeating-linear-gradient(0deg, transparent 0 27px, rgba(91, 67, 29, .035) 28px);
}

.section--dark {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.section--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1120px);
  height: 5px;
  background: var(--gold);
  transform: translateX(-50%);
}

.section--dark .section__title,
.section--dark h3 {
  color: var(--paper-light);
}

.section--dark .section__sub {
  color: rgba(255, 255, 255, .68);
}

.section__title {
  max-width: 880px;
  margin: 0 auto 18px;
  font-size: 3rem;
  text-wrap: balance;
}

.section__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 20px auto 0;
  background: var(--gold);
}

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

.section__title--left::after {
  margin-left: 0;
}

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

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

.badge,
.pricing-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-left: 5px solid var(--gold);
  color: var(--paper-light);
  background: var(--petrol);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section--dark .badge {
  color: var(--navy);
  background: var(--gold);
  border-left-color: var(--paper-light);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  color: var(--navy);
  background: var(--paper-light);
  font-size: .96rem;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

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

.btn--primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 6px 0 #765417, 0 16px 28px rgba(5, 18, 34, .16);
}

.btn--primary:hover {
  background: #d8a535;
  box-shadow: 0 4px 0 #765417, 0 12px 24px rgba(5, 18, 34, .14);
}

.btn--outline {
  border-color: var(--petrol);
  color: var(--petrol);
  background: transparent;
}

.btn--outline:hover {
  color: var(--white);
  background: var(--petrol);
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--3d {
  position: relative;
  overflow: hidden;
}

.btn--3d::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 44%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-18deg);
  animation: ctaShine 3.2s ease-in-out infinite;
}

@keyframes ctaShine {
  0%, 52% { left: -120%; }
  82%, 100% { left: 150%; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 54px;
  background-color: var(--paper);
  background-image: repeating-linear-gradient(0deg, transparent 0 31px, rgba(96, 70, 29, .045) 32px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 44px;
  right: -100px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(15, 90, 87, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(201, 146, 36, .045), 0 0 0 84px rgba(7, 27, 52, .035);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.hero .badge {
  color: var(--navy);
  background: var(--gold-light);
  border-left-color: var(--petrol);
}

.hero__title {
  max-width: 610px;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 3.42rem;
  text-wrap: balance;
}

.hero .accent {
  position: relative;
  display: inline;
  color: var(--petrol);
}

.hero .accent::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .02em;
  left: 0;
  z-index: -1;
  height: .16em;
  background: var(--gold-light);
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 24px;
  color: #505b5d;
  font-size: 1.02rem;
}

.hero__cta {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 26px;
}

.hero__cta .btn {
  min-width: 320px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 610px;
  margin-bottom: 17px;
  border-top: 1px solid rgba(7, 27, 52, .22);
  border-bottom: 1px solid rgba(7, 27, 52, .22);
}

.hero__proof-item {
  display: flex;
  min-width: 0;
  min-height: 82px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 11px 10px;
  text-align: center;
}

.hero__proof-item + .hero__proof-item {
  border-left: 1px solid rgba(7, 27, 52, .18);
}

.hero__proof-item strong {
  color: var(--navy);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
}

.hero__proof-item:nth-child(2) strong {
  color: var(--gold);
}

.hero__proof-item:nth-child(3) strong {
  color: var(--petrol);
}

.hero__proof-item span {
  margin-top: 7px;
  color: #5d615f;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero__stars {
  color: var(--petrol);
  font-size: .7rem;
  font-weight: 900;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__visual::before {
  content: "ATLAS SAÚDE VISUAL • FARMACOLOGIA";
  position: absolute;
  top: -22px;
  left: 22px;
  z-index: 2;
  padding: 8px 14px;
  color: var(--paper-light);
  background: var(--navy);
  font-family: Oswald, Inter, sans-serif;
  font-size: .78rem;
  font-weight: 700;
}

.hero__mockup {
  padding: 9px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: 13px 13px 0 var(--petrol), var(--shadow-deep);
}

.hero__mockup img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

/* Infinite galleries */
.gallery {
  margin: 46px 0;
  overflow: hidden;
}

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

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

.gallery--stack {
  margin-top: -10px;
}

.gallery__item {
  width: 224px;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-bottom-width: 6px;
  border-radius: 3px;
  background: var(--paper-light);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .24);
}

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

.gallery__item--square {
  width: 224px;
  height: 224px;
}

.gallery__track--reviews {
  align-items: stretch;
}

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

.gallery:hover .gallery__track {
  animation-play-state: paused;
}

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

/* Content cards */
.grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

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

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

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

.feature-card {
  position: relative;
  min-height: 218px;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--petrol);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.feature-card:nth-child(3n+2) {
  border-top-color: var(--gold);
}

.feature-card:nth-child(3n) {
  border-top-color: var(--navy);
}

.feature-card--highlight {
  background: #f2e4c1;
}

.feature-card__icon {
  display: inline-flex;
  min-width: 54px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0 10px;
  border-left: 5px solid var(--gold);
  color: var(--paper-light);
  background: var(--navy);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.02rem;
}

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

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

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

.audience__item {
  position: relative;
  min-height: 64px;
  padding: 18px 20px 18px 58px;
  border-bottom: 1px solid rgba(7, 27, 52, .14);
  color: var(--navy);
  font-size: .92rem;
  font-weight: 750;
}

.audience__item::before {
  content: "✓";
  position: absolute;
  top: 16px;
  left: 12px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--paper-light);
  background: var(--petrol);
  font-size: .86rem;
  font-weight: 900;
}

/* Pain block */
.section--pain {
  padding: 80px 0;
}

.pain-box {
  padding: 58px 42px;
  border: 1px solid rgba(201, 146, 36, .7);
  border-radius: 4px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 14px 14px 0 rgba(15, 90, 87, .18), var(--shadow-deep);
}

.pain-box .section__title {
  color: var(--paper-light);
}

.pain-box .section__sub {
  color: rgba(255, 255, 255, .68);
}

.pain-box__icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

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

.pain-item {
  position: relative;
  min-height: 58px;
  padding: 17px 18px 17px 52px;
  border-left: 4px solid var(--gold);
  color: #e8eeee;
  background: rgba(255, 255, 255, .07);
  font-size: .83rem;
  font-weight: 750;
}

.pain-item::before {
  content: "×";
  position: absolute;
  top: 15px;
  left: 18px;
  color: var(--gold);
  font-size: 1.14rem;
  font-weight: 900;
}

/* Bundle */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: 58px;
  align-items: center;
}

.two-col__media {
  position: relative;
}

.two-col__media::after {
  content: "CONTEÚDO VISUAL COMPLETO";
  position: absolute;
  right: -14px;
  bottom: -17px;
  padding: 9px 14px;
  color: var(--paper-light);
  background: var(--petrol);
  font-family: Oswald, Inter, sans-serif;
  font-size: .72rem;
}

.two-col__media img {
  width: 100%;
  border: 2px solid var(--navy);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: 12px 12px 0 var(--gold-light), var(--shadow);
}

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

.check-list li {
  position: relative;
  padding: 12px 0 12px 38px;
  border-bottom: 1px solid var(--line);
  color: #384449;
  font-size: .91rem;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 12px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--paper-light);
  background: var(--petrol);
  font-size: .7rem;
  font-weight: 900;
}

/* Product showcase */
.product-showcase-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.product-showcase-grid .bonus-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.bonus-card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 0 22px 24px;
  border: 1px solid rgba(237, 207, 139, .48);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: 8px 8px 0 rgba(201, 146, 36, .16), 0 18px 34px rgba(0, 0, 0, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 12px 0 rgba(15, 90, 87, .24), 0 22px 42px rgba(0, 0, 0, .22);
}

.bonus-card__thumb {
  margin: 0 -22px 22px;
  overflow: hidden;
  border-bottom: 2px solid var(--navy);
  background: var(--paper-deep);
}

.bonus-card__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .24s ease;
}

.bonus-card:hover .bonus-card__thumb img {
  transform: scale(1.018);
}

.bonus-card h3 {
  min-height: 2.3em;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.25rem;
}

.bonus-card__metric {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-left: 4px solid var(--gold);
  color: var(--petrol-dark);
  background: #efe5cf;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-card p {
  color: #5b605d;
  font-size: .86rem;
}

/* Delivery steps */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: var(--gold);
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 15px 20px;
  text-align: center;
}

.step__num {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  place-items: center;
  border: 4px solid var(--paper);
  color: var(--paper-light);
  background: var(--petrol);
  box-shadow: 0 0 0 2px var(--petrol);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.25rem;
}

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

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

/* Differentials carousel */
.section--differentials .gallery {
  margin-bottom: 0;
}

.review {
  min-height: 230px;
  padding: 28px;
  border-top: 5px solid var(--gold);
  color: var(--paper-light);
  background: var(--petrol-dark);
  box-shadow: var(--shadow);
}

.review__stars {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
}

.review__text {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .84);
  font-size: .93rem;
}

.review__name {
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* Pricing */
.pricing-section--clean {
  overflow: hidden;
  border-top: 7px solid var(--gold);
  border-bottom: 7px solid var(--gold);
  background: var(--petrol-dark);
}

.pricing-section--clean::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: repeating-linear-gradient(135deg, transparent 0 28px, rgba(255, 255, 255, .05) 29px 30px);
}

.pricing-intro,
.plans,
.pricing-trust {
  position: relative;
  z-index: 1;
}

.pricing-intro .section__title {
  color: var(--paper-light);
}

.pricing-intro__sub {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .72);
}

.pricing-kicker {
  border-left-color: var(--paper-light);
  color: var(--navy);
  background: var(--gold);
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin-top: 52px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(7, 27, 52, .22);
  border-top: 7px solid var(--petrol);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.plan--featured {
  border-color: var(--gold);
  border-top-color: var(--gold);
  box-shadow: 12px 12px 0 rgba(201, 146, 36, .22), 0 24px 58px rgba(0, 0, 0, .3);
}

.plan__ribbon {
  position: absolute;
  top: -20px;
  right: 24px;
  padding: 9px 14px;
  color: var(--navy);
  background: var(--gold);
  font-size: .68rem;
  font-weight: 900;
}

.plan__eyebrow {
  margin-bottom: 9px;
  color: var(--petrol);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan--featured .plan__eyebrow {
  color: var(--rust);
}

.plan__name {
  margin-bottom: 12px;
  font-size: 1.9rem;
}

.plan__summary {
  min-height: 76px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .88rem;
}

.plan__media {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  background: var(--paper-deep);
}

.plan__media--single {
  place-items: center;
}

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

.plan__media--bundle {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.plan__media--bundle img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.plan__media--stage {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(7, 27, 52, .13);
  background: #eee2cc;
  box-shadow: inset 0 -34px 0 rgba(7, 27, 52, .055);
}

.plan__media--stage::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -15%;
  left: -8%;
  z-index: 0;
  height: 45%;
  background: rgba(15, 90, 87, .1);
  clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 100%);
}

.plan__media--stage::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 8;
  padding: 7px 11px;
  color: var(--paper-light);
  background: var(--navy);
  border-left: 4px solid var(--gold);
  box-shadow: 0 7px 16px rgba(7, 27, 52, .2);
  font-family: Oswald, Inter, sans-serif;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.plan__media--basic-stage::after {
  content: "MAPAS + RESUMOS";
}

.plan__media--complete-stage::after {
  content: "MATERIAL COMPLETO + EXTRAS";
}

.plan__asset {
  position: absolute;
  object-fit: cover;
  filter: saturate(.97) contrast(1.02);
  box-shadow: 0 18px 32px rgba(7, 27, 52, .27), 0 3px 7px rgba(7, 27, 52, .16);
}

.plan__asset--maps,
.plan__asset--apostila {
  top: 10%;
  width: 61%;
  aspect-ratio: 1;
  border: 3px solid rgba(255, 251, 242, .9);
}

.plan__asset--maps {
  left: -1%;
  z-index: 2;
  transform: rotate(-4deg) translateY(4%);
}

.plan__asset--apostila {
  right: -1%;
  z-index: 3;
  transform: rotate(4deg);
}

.plan__asset--main-kit {
  top: 4%;
  left: 4%;
  z-index: 2;
  width: 92%;
  aspect-ratio: 16 / 9;
  border: 3px solid rgba(255, 251, 242, .92);
  object-fit: cover;
  transform: rotate(-.7deg);
}

.plan__asset--bonus {
  top: 52%;
  z-index: 4;
  width: 26.5%;
  aspect-ratio: 1;
  border: 3px solid rgba(255, 251, 242, .95);
}

.plan__asset--bonus-1 {
  left: 1%;
  transform: rotate(-5deg) translateY(5%);
}

.plan__asset--bonus-2 {
  left: 25%;
  transform: rotate(-2deg);
}

.plan__asset--bonus-3 {
  left: 49%;
  transform: rotate(2deg);
}

.plan__asset--bonus-4 {
  right: 1%;
  transform: rotate(5deg) translateY(5%);
}

.plan__price-box {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 15px 18px;
  border-left: 5px solid var(--gold);
  background: #efe5cf;
}

.plan__old-price {
  color: #777873;
  font-size: .77rem;
  text-decoration: line-through;
}

.plan__price-main {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.plan__price-main strong {
  color: var(--petrol);
  font-family: Oswald, Inter, sans-serif;
  font-size: 3.1rem;
  line-height: 1;
}

.plan--featured .plan__price-main strong {
  color: var(--rust);
}

.plan__price-main strong span {
  font-size: .55em;
}

.plan__price-main small {
  margin-top: 5px;
  color: #676963;
  font-size: .66rem;
  font-weight: 800;
}

.plan__compact-title {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan__compact-list {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
  list-style: none;
}

.plan__compact-list li {
  position: relative;
  min-height: 44px;
  padding: 12px 12px 12px 40px;
  color: #394649;
  background: #eef0e9;
  font-size: .82rem;
  font-weight: 700;
}

.plan__compact-list li::before {
  content: "✓";
  position: absolute;
  top: 11px;
  left: 12px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--paper-light);
  background: var(--petrol);
  font-size: .63rem;
}

.plan .btn {
  margin-top: auto;
}

.plan__microcopy {
  margin-top: 14px;
  color: #70736f;
  font-size: .66rem;
  font-weight: 700;
  text-align: center;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 16px 34px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .76);
  font-size: .79rem;
  font-weight: 800;
  text-align: center;
}

.pricing-trust span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold-light);
}

/* Guarantee */
.guarantee {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 56px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--gold);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.guarantee__seal {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--paper-light);
  background: var(--petrol);
  box-shadow: 5px 5px 0 var(--gold-light);
  font-size: 1.6rem;
  font-weight: 900;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin-top: 44px;
}

.faq__item {
  border-bottom: 1px solid rgba(7, 27, 52, .22);
}

.faq__q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 23px 2px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-family: Inter, sans-serif;
  font-size: .98rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq__ic {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: var(--paper-light);
  background: var(--petrol);
  font-size: 1.15rem;
  transition: transform .2s ease, background .2s ease;
}

.faq__item.open .faq__ic {
  background: var(--gold);
  transform: rotate(45deg);
}

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

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

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 6px solid var(--gold);
  color: rgba(255, 255, 255, .68);
  background: var(--navy);
}

.footer__brand {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.footer__disclaimer {
  max-width: 850px;
  margin: 0 auto 18px;
  font-size: .73rem;
}

.footer__copy {
  font-size: .7rem;
}

/* Upsell modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  padding: 24px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

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

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 24, .82);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px;
  border: 2px solid var(--gold);
  border-top: 8px solid var(--gold);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: var(--shadow-deep);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  color: var(--navy);
  background: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

.modal__title {
  padding-right: 30px;
  font-size: 2rem;
}

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

.modal__text {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: .9rem;
}

.modal__price {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  padding: 16px;
  border-left: 5px solid var(--gold);
  background: #efe5cf;
  font-size: .79rem;
}

.modal__price-to strong {
  color: var(--petrol);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.4rem;
}

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

.modal__price-tag {
  padding: 6px 9px;
  color: var(--paper-light);
  background: var(--petrol);
  font-weight: 900;
}

.modal__list-title {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 900;
}

.modal__list {
  display: grid;
  gap: 7px;
  margin: 0 0 24px 20px;
  color: var(--muted);
  font-size: .82rem;
}

.modal__decline {
  display: block;
  margin-top: 17px;
  color: #6b6d69;
  font-size: .74rem;
  font-weight: 750;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gallery__track,
  .btn--3d::after {
    animation: none;
  }

  .btn,
  .bonus-card,
  .faq__a,
  .faq__ic {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
    gap: 36px;
  }

  .hero__title {
    font-size: 3.05rem;
  }

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

  .product-showcase-grid .bonus-card:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .hero__inner,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 760px);
  }

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

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .steps::before {
    display: none;
  }

  .step:last-child {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
  }

  .two-col {
    gap: 48px;
  }

  .two-col__media {
    width: min(100%, 760px);
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }

  .topbar {
    display: block;
    min-height: 0;
    padding: 9px 14px;
    text-align: center;
  }

  .topbar span {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .section__title {
    font-size: 2.05rem;
  }

  .section__sub {
    font-size: .93rem;
  }

  .hero {
    padding: 48px 0 62px;
  }

  .hero::before {
    display: none;
  }

  .hero__inner {
    gap: 0;
  }

  .hero__content {
    display: contents;
  }

  .hero .badge {
    order: 1;
    justify-self: start;
    margin-bottom: 16px;
  }

  .hero__title {
    order: 2;
    max-width: none;
    margin-bottom: 16px;
    font-size: 2.42rem;
  }

  .hero__lead {
    order: 3;
    max-width: none;
    margin-bottom: 24px;
    font-size: .94rem;
  }

  .hero__visual {
    order: 4;
    width: 100%;
    margin: 0 0 30px;
  }

  .hero__cta {
    order: 5;
    width: 100%;
    margin-bottom: 20px;
  }

  .hero__cta .btn {
    width: 100%;
    min-width: 0;
  }

  .hero__proof {
    order: 6;
    width: 100%;
    max-width: none;
    margin-bottom: 15px;
  }

  .hero__stars {
    order: 7;
  }

  .hero__proof-item {
    min-height: 76px;
    padding: 10px 5px;
  }

  .hero__proof-item strong {
    font-size: 1.35rem;
  }

  .hero__proof-item span {
    font-size: .61rem;
  }

  .hero__visual::before {
    top: -16px;
    left: 12px;
    padding: 6px 9px;
    font-size: .62rem;
  }

  .hero__mockup {
    padding: 5px;
    box-shadow: 8px 8px 0 var(--petrol), var(--shadow);
  }

  .gallery {
    margin: 36px 0;
  }

  .gallery__track {
    gap: 14px;
    padding: 0 18px;
  }

  .gallery__item {
    width: 184px;
    height: 246px;
  }

  .gallery__item--square {
    width: 184px;
    height: 184px;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .audience,
  .pain-grid,
  .product-showcase-grid,
  .plans,
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-card {
    min-height: 0;
  }

  .audience {
    gap: 4px;
  }

  .pain-box {
    padding: 38px 20px;
    box-shadow: 8px 8px 0 rgba(15, 90, 87, .18), var(--shadow);
  }

  .two-col__media::after {
    right: 8px;
    bottom: -14px;
  }

  .product-showcase-grid .bonus-card,
  .product-showcase-grid .bonus-card:last-child {
    grid-column: 1 !important;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
  }

  .product-showcase-grid {
    grid-auto-flow: row;
    gap: 20px;
    margin-top: 34px;
    overflow: visible;
  }

  .bonus-card {
    padding: 0 18px 22px;
  }

  .bonus-card__thumb {
    margin: 0 -18px 18px;
  }

  .bonus-card:hover {
    transform: none;
  }

  .bonus-card h3 {
    min-height: 0;
  }

  .step,
  .step:last-child {
    grid-column: auto;
    width: 100%;
    padding: 0 10px 24px;
  }

  .plans {
    gap: 34px;
  }

  .plan {
    padding: 26px 20px;
  }

  .plan__summary {
    min-height: 0;
  }

  .plan__price-main strong {
    font-size: 2.65rem;
  }

  .pricing-trust {
    display: grid;
    gap: 10px;
  }

  .guarantee {
    padding: 38px 20px;
  }

  .modal {
    padding: 12px;
  }

  .modal__card {
    max-height: calc(100vh - 24px);
    padding: 34px 20px 26px;
  }

  .modal__title {
    font-size: 1.62rem;
  }

  .modal__price {
    grid-template-columns: 1fr auto 1fr;
  }

  .modal__price-tag {
    grid-column: 1 / -1;
    text-align: center;
  }
}


/* ============================================================
   TEMA FARMACOLOGIA / ATLAS SAÚDE VISUAL
   Mantém a estrutura da landing page validada e muda a linguagem
   visual para saúde: branco clínico, azul profundo, teal/ciano
   e pequenos acentos de vermelho.
   ============================================================ */

body.theme-farmacologia {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(32, 166, 180, .10), transparent 24rem),
    radial-gradient(circle at 90% 24%, rgba(8, 41, 90, .07), transparent 30rem),
    #f6fbfd;
}

body.theme-farmacologia::before {
  opacity: .42;
  background-image:
    radial-gradient(circle, rgba(10, 131, 145, .14) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 80%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 80%);
}

.theme-farmacologia h1,
.theme-farmacologia h2,
.theme-farmacologia h3 {
  letter-spacing: -.012em;
}

.theme-farmacologia .topbar {
  border-bottom-color: #43c1ca;
  background:
    linear-gradient(90deg, #061f47 0%, #083a68 52%, #075d68 100%);
}

.theme-farmacologia .topbar strong {
  color: #bdf3f4;
}

.theme-farmacologia .section--soft {
  border-color: rgba(8, 41, 90, .08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(237,248,251,.97)),
    #f5fbfd;
}

.theme-farmacologia .section--dark {
  background:
    radial-gradient(circle at 18% 20%, rgba(42, 181, 193, .15), transparent 26rem),
    radial-gradient(circle at 85% 85%, rgba(255,255,255,.07), transparent 24rem),
    linear-gradient(135deg, #061f47 0%, #082f5f 45%, #075966 100%);
}

.theme-farmacologia .section--dark::before {
  height: 4px;
  background: linear-gradient(90deg, transparent, #6be1e4 16%, #ffffff 50%, #6be1e4 84%, transparent);
}

.theme-farmacologia .section__title::after {
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--petrol), #6ad8df 55%, var(--medical-red));
  box-shadow: 0 0 0 1px rgba(10,131,145,.04);
}

.theme-farmacologia .badge,
.theme-farmacologia .pricing-kicker {
  border-left-color: #6fe0e3;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #075664, #0a8e9d);
  box-shadow: 0 8px 18px rgba(8, 41, 90, .11);
  letter-spacing: .045em;
}

.theme-farmacologia .section--dark .badge {
  border-left-color: #dffafa;
  color: #062a52;
  background: #bceef1;
}

.theme-farmacologia .btn {
  border-radius: 12px;
}

.theme-farmacologia .btn--primary {
  border-color: #075664;
  color: #ffffff;
  background: linear-gradient(135deg, #087b88, #18a8b5);
  box-shadow: 0 6px 0 #05505a, 0 18px 34px rgba(8, 41, 90, .18);
}

.theme-farmacologia .btn--primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #086b77, #1697a4);
  box-shadow: 0 4px 0 #054852, 0 14px 28px rgba(8, 41, 90, .16);
}

.theme-farmacologia .btn--outline {
  border-color: #0a8391;
  color: #087582;
  background: rgba(255,255,255,.75);
}

.theme-farmacologia .btn--outline:hover {
  border-color: #087582;
  color: #ffffff;
  background: #087582;
}

/* Hero clínico / didático */
.theme-farmacologia .hero {
  isolation: isolate;
  padding-top: 58px;
  background:
    radial-gradient(circle at 88% 22%, rgba(32, 166, 180, .14), transparent 25rem),
    radial-gradient(circle at 55% 120%, rgba(8, 41, 90, .08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #edf8fb 100%);
}

.theme-farmacologia .hero::before {
  top: 18px;
  right: -110px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(32, 166, 180, .18);
  box-shadow:
    0 0 0 52px rgba(32, 166, 180, .035),
    0 0 0 104px rgba(8, 41, 90, .025);
}

.theme-farmacologia .hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 0;
  height: 38px;
  opacity: .13;
  background:
    linear-gradient(90deg,
      transparent 0 10%,
      #0a8391 10% 31%,
      transparent 31% 35%,
      #0a8391 35% 38%,
      transparent 38% 40%,
      #d84b4b 40% 41%,
      transparent 41% 44%,
      #0a8391 44% 68%,
      transparent 68%);
  clip-path: polygon(0 48%, 35% 48%, 37% 48%, 38% 10%, 39% 88%, 40% 34%, 41% 48%, 100% 48%, 100% 54%, 41% 54%, 40% 67%, 39% 23%, 38% 95%, 37% 54%, 0 54%);
}

.theme-farmacologia .hero .badge {
  color: #075664;
  background: #d9f5f6;
  border-left-color: var(--medical-red);
}

.theme-farmacologia .hero__title {
  max-width: 650px;
  color: #08295a;
  font-size: 3.25rem;
}

.theme-farmacologia .hero .accent {
  color: #098796;
}

.theme-farmacologia .hero .accent::after {
  height: .12em;
  border-radius: 99px;
  background: rgba(217, 75, 80, .22);
}

.theme-farmacologia .hero__lead {
  color: #536d79;
}

.theme-farmacologia .hero__proof {
  border-color: rgba(8,41,90,.14);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.68);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
}

.theme-farmacologia .hero__proof-item + .hero__proof-item {
  border-left-color: rgba(8,41,90,.11);
}

.theme-farmacologia .hero__proof-item strong {
  color: #08295a;
}

.theme-farmacologia .hero__proof-item:nth-child(2) strong {
  color: #0a8391;
}

.theme-farmacologia .hero__proof-item:nth-child(3) strong {
  color: #d84b4b;
}

.theme-farmacologia .hero__stars {
  color: #0a7380;
  letter-spacing: .045em;
}

.theme-farmacologia .hero__visual::before {
  top: -18px;
  left: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #08295a, #0a8391);
  box-shadow: 0 9px 22px rgba(8,41,90,.18);
}

.theme-farmacologia .hero__mockup {
  padding: 8px;
  border: 1px solid rgba(8, 41, 90, .18);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 14px 16px 0 rgba(10,131,145,.14), 0 28px 70px rgba(8,41,90,.20);
}

.theme-farmacologia .hero__mockup img {
  border-radius: 15px;
}

/* ============================================================
   Carrosséis: auto-scroll via JS + clique para pausar/destacar
   + arraste horizontal com mouse ou dedo.
   ============================================================ */
.theme-farmacologia .gallery {
  position: relative;
  margin: 28px 0 40px;
  padding: 22px 0 30px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

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

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

.theme-farmacologia .gallery__track {
  gap: 20px;
  padding: 0 28px;
  animation: none !important;
  transform: none !important;
  will-change: auto;
}

.theme-farmacologia .gallery__item {
  position: relative;
  width: 232px;
  height: 310px;
  overflow: hidden;
  border: 1px solid rgba(91, 211, 220, .72);
  border-bottom: 5px solid #0a8391;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(1, 23, 51, .24);
  transition:
    transform .26s cubic-bezier(.2,.8,.2,1),
    box-shadow .26s ease,
    border-color .26s ease,
    filter .26s ease;
  outline: none;
}

.theme-farmacologia .gallery__item:hover {
  transform: translateY(-4px);
}

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

.theme-farmacologia .gallery__item.is-selected {
  z-index: 6;
  border-color: #ef7b7f;
  border-bottom-color: #d84b4b;
  transform: translateY(-12px) scale(1.035);
  box-shadow: 0 28px 60px rgba(1,23,51,.34), 0 0 0 4px rgba(217,75,80,.11);
  filter: saturate(1.04) contrast(1.015);
}

.theme-farmacologia .gallery__item img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.theme-farmacologia .gallery:hover .gallery__track {
  animation-play-state: running;
}

.theme-farmacologia .gallery__hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(103, 220, 225, .28);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.07);
  font-size: .72rem;
  font-weight: 750;
}

.theme-farmacologia .gallery__hint::before {
  content: "↔";
  color: #8ce8eb;
  font-size: 1rem;
}

/* Cards e blocos de conteúdo */
.theme-farmacologia .feature-card {
  overflow: hidden;
  border: 1px solid rgba(8,41,90,.10);
  border-top: 5px solid #0a8391;
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(32,166,180,.10), transparent 8rem),
    #ffffff;
}

.theme-farmacologia .feature-card:nth-child(3n+2) {
  border-top-color: #3db8c2;
}

.theme-farmacologia .feature-card:nth-child(3n) {
  border-top-color: #d84b4b;
}

.theme-farmacologia .feature-card--highlight {
  background:
    radial-gradient(circle at 92% 10%, rgba(217,75,80,.08), transparent 9rem),
    #edf9fa;
}

.theme-farmacologia .feature-card__icon {
  min-width: 58px;
  border-left-color: #82e2e5;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #08295a, #0a8391);
  box-shadow: 0 8px 18px rgba(8,41,90,.13);
}

.theme-farmacologia .audience__item::before,
.theme-farmacologia .check-list li::before {
  border-radius: 50%;
  background: #0a8391;
}

.theme-farmacologia .section--pain {
  background:
    radial-gradient(circle at 50% 0%, rgba(10,131,145,.06), transparent 30rem),
    #f5fbfd;
}

.theme-farmacologia .pain-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(93, 218, 225, .34);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 12%, rgba(54, 198, 207, .18), transparent 17rem),
    linear-gradient(135deg, #061f47 0%, #082f5f 60%, #075664 100%);
  box-shadow: 14px 14px 0 rgba(10,131,145,.12), 0 28px 70px rgba(8,41,90,.20);
}

.theme-farmacologia .pain-box::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -80px;
  width: 420px;
  height: 190px;
  opacity: .12;
  background: #64d9de;
  clip-path: polygon(0 50%, 23% 50%, 28% 22%, 31% 77%, 36% 42%, 42% 50%, 100% 50%, 100% 54%, 42% 54%, 36% 48%, 31% 84%, 28% 31%, 23% 54%, 0 54%);
}

.theme-farmacologia .pain-box__icon {
  border-radius: 50%;
  color: #ffffff;
  background: #d84b4b;
  box-shadow: 0 0 0 7px rgba(217,75,80,.12);
}

.theme-farmacologia .pain-item {
  border-left-color: #69dce1;
  border-radius: 10px;
  background: rgba(255,255,255,.065);
}

.theme-farmacologia .pain-item::before {
  color: #ff8a8d;
}

.theme-farmacologia .two-col__media::after {
  border-radius: 999px;
  background: linear-gradient(135deg, #08295a, #0a8391);
}

.theme-farmacologia .two-col__media img {
  border: 1px solid rgba(8,41,90,.16);
  border-radius: 20px;
  box-shadow: 13px 13px 0 rgba(97,199,207,.20), var(--shadow);
}

/* Showcase */
.theme-farmacologia .bonus-card {
  border: 1px solid rgba(108, 215, 222, .28);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 9px 10px 0 rgba(97,199,207,.08), 0 18px 38px rgba(0,29,57,.18);
}

.theme-farmacologia .bonus-card:hover {
  box-shadow: 11px 13px 0 rgba(97,199,207,.13), 0 24px 50px rgba(0,29,57,.22);
}

.theme-farmacologia .bonus-card__thumb {
  border-bottom-color: rgba(8,41,90,.16);
  background: #e9f5f8;
}

.theme-farmacologia .bonus-card__metric {
  border-left-color: #45bec8;
  border-radius: 8px;
  color: #075664;
  background: #e4f7f8;
}

/* Passos */
.theme-farmacologia .steps::before {
  background: linear-gradient(90deg, transparent, #5bcbd2 12%, #5bcbd2 88%, transparent);
}

.theme-farmacologia .step__num {
  border-color: #f6fbfd;
  border-radius: 50%;
  background: linear-gradient(135deg, #08295a, #0a8391);
  box-shadow: 0 0 0 2px #0a8391, 0 8px 20px rgba(8,41,90,.13);
}

/* Diferenciais */
.theme-farmacologia .review {
  border-top-color: #66dce0;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.08), transparent 10rem),
    linear-gradient(145deg, #073057, #075664);
}

.theme-farmacologia .review__stars {
  color: #9cf0f1;
}

.theme-farmacologia .review__name {
  color: #9cf0f1;
}

/* Preço */
.theme-farmacologia .pricing-section--clean {
  border-top-color: #64d8dd;
  border-bottom-color: #64d8dd;
  background:
    radial-gradient(circle at 18% 15%, rgba(92, 218, 225, .13), transparent 24rem),
    linear-gradient(135deg, #061f47 0%, #082f5f 55%, #075664 100%);
}

.theme-farmacologia .pricing-section--clean::before {
  opacity: .16;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 22px 22px;
}

.theme-farmacologia .pricing-kicker {
  border-left-color: #dffafa;
  color: #06294f;
  background: #bceef1;
}

.theme-farmacologia .plan {
  border: 1px solid rgba(8,41,90,.14);
  border-top: 6px solid #0a8391;
  border-radius: 18px;
  background: #ffffff;
}

.theme-farmacologia .plan--featured {
  border-color: rgba(92, 218, 225, .9);
  border-top-color: #57cfd6;
  box-shadow: 12px 12px 0 rgba(97,199,207,.18), 0 26px 64px rgba(0,23,49,.30);
}

.theme-farmacologia .plan__ribbon {
  border-radius: 999px;
  color: #ffffff;
  background: #d84b4b;
  box-shadow: 0 8px 18px rgba(119,18,23,.18);
}

.theme-farmacologia .plan__eyebrow,
.theme-farmacologia .plan--featured .plan__eyebrow {
  color: #087987;
}

.theme-farmacologia .plan__media--stage {
  border-radius: 14px;
  border-color: rgba(8,41,90,.10);
  background: #eaf5f8;
  box-shadow: inset 0 -34px 0 rgba(8,41,90,.035);
}

.theme-farmacologia .plan__media--stage::before {
  background: rgba(10,131,145,.085);
}

.theme-farmacologia .plan__media--stage::after {
  border-left-color: #65d9de;
  border-radius: 999px;
  background: #08295a;
}

.theme-farmacologia .plan__price-box {
  border-left-color: #0a8391;
  border-radius: 12px;
  background: #edf8fa;
}

.theme-farmacologia .plan__price-main strong,
.theme-farmacologia .plan--featured .plan__price-main strong {
  color: #087a87;
}

.theme-farmacologia .plan__compact-list li {
  border-radius: 10px;
  background: #f0f7f8;
}

.theme-farmacologia .plan__compact-list li::before {
  border-radius: 50%;
  background: #0a8391;
}

.theme-farmacologia .pricing-trust span::before {
  color: #7ae1e5;
}

/* Garantia + FAQ */
.theme-farmacologia .guarantee {
  border: 1px solid rgba(8,41,90,.10);
  border-top: 5px solid #0a8391;
  border-radius: 18px;
  background: #ffffff;
}

.theme-farmacologia .guarantee__seal {
  border-color: #08295a;
  color: #ffffff;
  background: #0a8391;
  box-shadow: 5px 5px 0 #c7eff1;
}

.theme-farmacologia .faq__item {
  border-bottom-color: rgba(8,41,90,.14);
}

.theme-farmacologia .faq__ic {
  border-radius: 50%;
  background: #0a8391;
}

.theme-farmacologia .faq__item.open .faq__ic {
  background: #d84b4b;
}

/* Rodapé e modal */
.theme-farmacologia .footer {
  border-top-color: #64d8dd;
  background:
    linear-gradient(135deg, #061f47, #07365f 65%, #075664);
}

.theme-farmacologia .footer__brand {
  color: #a7eff1;
}

.theme-farmacologia .modal__overlay {
  background: rgba(3, 23, 48, .86);
  backdrop-filter: blur(5px);
}

.theme-farmacologia .modal__card {
  border: 1px solid rgba(97,199,207,.72);
  border-top: 7px solid #0a8391;
  border-radius: 18px;
  background: #ffffff;
}

.theme-farmacologia .modal__close {
  border-radius: 50%;
  color: #ffffff;
  background: #d84b4b;
}

.theme-farmacologia .modal__title span {
  color: #0a8391;
}

.theme-farmacologia .modal__price {
  border-left-color: #0a8391;
  border-radius: 12px;
  background: #edf8fa;
}

.theme-farmacologia .modal__price-to strong {
  color: #087a87;
}

.theme-farmacologia .modal__price-arrow {
  color: #0a8391;
}

.theme-farmacologia .modal__price-tag {
  border-radius: 999px;
  background: #d84b4b;
}

/* Responsivo */
@media (max-width: 720px) {
  .theme-farmacologia .hero__title {
    font-size: 2.28rem;
  }

  .theme-farmacologia .hero__visual::before {
    max-width: calc(100% - 24px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .theme-farmacologia .gallery {
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .theme-farmacologia .gallery__track {
    gap: 14px;
    padding: 0 18px;
  }

  .theme-farmacologia .gallery__item {
    width: 186px;
    height: 250px;
    border-radius: 13px;
  }

  .theme-farmacologia .gallery__item.is-selected {
    transform: translateY(-7px) scale(1.025);
  }

  .theme-farmacologia .gallery__hint {
    max-width: 92%;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-farmacologia .gallery__item {
    transition: none;
  }
}

/* ============================================================
   AJUSTE FINAL — CARDS "O QUE VOCÊ VAI ENCONTRAR"
   As novas artes são 4:3. O card agora respeita a proporção
   natural da imagem e ela ocupa 100% da largura, sem faixas
   laterais e sem recorte forçado.
   ============================================================ */

.theme-farmacologia .section--products .product-showcase-grid {
  align-items: stretch;
}

.theme-farmacologia .section--products .bonus-card {
  display: flex;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  overflow: hidden;
}

/* A imagem ocupa toda a largura do card e define a própria altura. */
.theme-farmacologia .section--products .bonus-card__thumb {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  margin: 0 -22px 22px;
  aspect-ratio: auto;
  overflow: hidden;
  border-bottom: 1px solid rgba(8, 41, 90, .16);
  background: transparent;
}

.theme-farmacologia .section--products .bonus-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.theme-farmacologia .section--products .bonus-card:hover .bonus-card__thumb img {
  transform: none;
}

.theme-farmacologia .section--products .bonus-card h3,
.theme-farmacologia .section--products .bonus-card p {
  overflow-wrap: anywhere;
}

/* Tablet */
@media (max-width: 900px) and (min-width: 721px) {
  .theme-farmacologia .section--products .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .theme-farmacologia .section--products .bonus-card__thumb {
    width: auto;
    height: auto;
    aspect-ratio: auto;
  }

  .theme-farmacologia .section--products .bonus-card__thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .theme-farmacologia .section--products .product-showcase-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .theme-farmacologia .section--products .product-showcase-grid .bonus-card,
  .theme-farmacologia .section--products .product-showcase-grid .bonus-card:last-child {
    grid-column: 1 !important;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 0 18px 22px;
    justify-self: stretch;
  }

  .theme-farmacologia .section--products .bonus-card__thumb {
    display: block;
    width: auto;
    height: auto;
    margin: 0 -18px 18px;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background: transparent;
  }

  .theme-farmacologia .section--products .bonus-card__thumb img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .theme-farmacologia .section--products .bonus-card:hover,
  .theme-farmacologia .section--products .bonus-card:hover .bonus-card__thumb img {
    transform: none;
  }
}

/* Celulares menores */
@media (max-width: 430px) {
  .theme-farmacologia .section--products .product-showcase-grid .bonus-card,
  .theme-farmacologia .section--products .product-showcase-grid .bonus-card:last-child {
    padding-right: 14px;
    padding-bottom: 18px;
    padding-left: 14px;
  }

  .theme-farmacologia .section--products .bonus-card__thumb {
    margin-right: -14px;
    margin-left: -14px;
  }
}

/* ============================================================
   MODAL DE UPSELL — VERSÃO COMPACTA E RESPONSIVA
   Reduz altura no celular sem alterar o restante da página.
   ============================================================ */

.theme-farmacologia .modal {
  padding: 18px;
}

.theme-farmacologia .modal__card {
  width: min(100%, 575px);
  max-height: min(93dvh, 790px);
  padding: 34px 34px 28px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.theme-farmacologia .modal__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #087987;
  background: #e4f6f7;
  font-size: .63rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .055em;
}

.theme-farmacologia .modal__title {
  padding-right: 34px;
  font-size: 1.88rem;
  line-height: 1.05;
}

.theme-farmacologia .modal__text {
  margin: 13px 0 17px;
  font-size: .82rem;
  line-height: 1.45;
}

.theme-farmacologia .modal__price {
  grid-template-columns: 1fr auto 1fr auto;
  gap: 8px;
  margin-bottom: 14px;
  padding: 13px 14px;
  font-size: .7rem;
  line-height: 1.22;
}

.theme-farmacologia .modal__price-from,
.theme-farmacologia .modal__price-to {
  min-width: 0;
}

.theme-farmacologia .modal__price-from strong,
.theme-farmacologia .modal__price-to strong {
  font-size: 1.3rem;
  line-height: 1.05;
}

.theme-farmacologia .modal__price-arrow {
  font-size: 1.05rem;
}

.theme-farmacologia .modal__price-tag {
  padding: 5px 7px;
  white-space: nowrap;
  font-size: .63rem;
  line-height: 1;
}

.theme-farmacologia .modal__list-title {
  margin-bottom: 6px;
  font-size: .75rem;
}

.theme-farmacologia .modal__list {
  gap: 5px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: .76rem;
  line-height: 1.38;
}

.theme-farmacologia .modal__list li {
  position: relative;
  padding-left: 20px;
}

.theme-farmacologia .modal__list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #0a8391;
  font-weight: 900;
}

.theme-farmacologia .modal__cta {
  min-height: 50px;
  padding: 13px 17px;
  font-size: .82rem;
}

.theme-farmacologia .modal__decline {
  margin-top: 11px;
  font-size: .68rem;
  line-height: 1.3;
}

.theme-farmacologia .modal__close {
  top: 11px;
  right: 11px;
  width: 31px;
  height: 31px;
  font-size: 1rem;
}

/* Celular */
@media (max-width: 720px) {
  .theme-farmacologia .modal {
    padding: 10px;
    place-items: center;
  }

  .theme-farmacologia .modal__card {
    width: min(100%, 460px);
    max-height: calc(100dvh - 20px);
    padding: 27px 18px 18px;
    border-top-width: 5px;
    border-radius: 14px;
  }

  .theme-farmacologia .modal__eyebrow {
    margin-bottom: 6px;
    padding: 4px 7px;
    font-size: .55rem;
  }

  .theme-farmacologia .modal__title {
    padding-right: 30px;
    font-size: 1.48rem;
    line-height: 1.03;
  }

  .theme-farmacologia .modal__text {
    margin: 10px 0 12px;
    font-size: .74rem;
    line-height: 1.34;
  }

  .theme-farmacologia .modal__price {
    grid-template-columns: 1fr auto 1fr auto;
    gap: 6px;
    margin-bottom: 12px;
    padding: 10px 11px;
    border-left-width: 4px;
    font-size: .62rem;
  }

  .theme-farmacologia .modal__price-from strong,
  .theme-farmacologia .modal__price-to strong {
    font-size: 1.05rem;
  }

  .theme-farmacologia .modal__price-arrow {
    font-size: .9rem;
  }

  .theme-farmacologia .modal__price-tag {
    grid-column: auto;
    padding: 5px 6px;
    font-size: .57rem;
  }

  .theme-farmacologia .modal__list-title {
    margin-bottom: 4px;
    font-size: .68rem;
  }

  .theme-farmacologia .modal__list {
    gap: 4px;
    margin-bottom: 13px;
    font-size: .73rem;
    line-height: 1.3;
  }

  .theme-farmacologia .modal__list li {
    padding-left: 17px;
  }

  .theme-farmacologia .modal__cta {
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: .73rem;
  }

  .theme-farmacologia .modal__decline {
    margin-top: 9px;
    font-size: .64rem;
  }

  .theme-farmacologia .modal__close {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    font-size: .9rem;
  }
}

/* Celulares muito estreitos */
@media (max-width: 360px) {
  .theme-farmacologia .modal__card {
    padding-right: 13px;
    padding-left: 13px;
  }

  .theme-farmacologia .modal__title {
    font-size: 1.2rem;
  }

  .theme-farmacologia .modal__price {
    gap: 3px;
    padding: 7px;
  }

  .theme-farmacologia .modal__price-tag {
    font-size: .49rem;
  }
}

/* Telas baixas: prioriza caber sem rolagem extensa */
@media (max-height: 700px) and (max-width: 720px) {
  .theme-farmacologia .modal__card {
    padding-top: 21px;
    padding-bottom: 14px;
  }

  .theme-farmacologia .modal__eyebrow {
    margin-bottom: 5px;
  }

  .theme-farmacologia .modal__title {
    font-size: 1.28rem;
  }

  .theme-farmacologia .modal__text {
    margin: 7px 0 9px;
    font-size: .72rem;
  }

  .theme-farmacologia .modal__price {
    margin-bottom: 9px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .theme-farmacologia .modal__list {
    margin-bottom: 8px;
    font-size: .65rem;
  }

  .theme-farmacologia .modal__cta {
    min-height: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

