/* Landing page: Terapia Endovenosa | Hospital Jardim Vitória */

:root {
  --green: #2D6852;
  --green-dark: #173F31;
  --green-deep: #0F2F25;
  --green-soft: #EAF4EF;
  --green-pale: #F5FAF7;
  --orange: #F47435;
  --orange-dark: #D95D20;
  --gray: #515151;
  --ink: #17241F;
  --line: #D8E5DF;
  --paper: #FFFFFF;
  --warm: #FFF8F3;
  --shadow: 0 18px 50px rgba(23, 63, 49, 0.12);
  --shadow-soft: 0 10px 28px rgba(23, 63, 49, 0.08);
  --radius: 8px;
  --container: 1180px;
  --font-body: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

::selection {
  background: var(--green-soft);
  color: var(--green-dark);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--green-dark);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  color: var(--paper);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 229, 223, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand img {
  width: 200px;
  height: auto;
}

.accent-orange {
  color: var(--orange);
}

.nowrap {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--gray);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding-block: 10px;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--green);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  padding: 11px;
}

.menu-button span {
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 220ms ease, background 180ms ease, color 180ms ease;
}

.btn:focus-visible {
  outline: 3px solid rgba(244, 116, 53, 0.35);
  outline-offset: 3px;
}

.btn-primary {
  overflow: hidden;
  background: var(--orange);
  color: var(--paper);
  box-shadow: 0 14px 28px rgba(244, 116, 53, 0.28);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset-block: -40%;
  left: -70%;
  z-index: -1;
  width: 45%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  animation: button-shine 3.8s ease-in-out infinite;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(244, 116, 53, 0.34);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
  border: 1px solid rgba(45, 104, 82, 0.22);
  box-shadow: 0 8px 20px rgba(23, 63, 49, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--green);
  transform: translateY(-2px);
}

.btn-large {
  min-height: 58px;
  padding: 18px 28px;
  font-size: 17px;
  white-space: normal;
  text-wrap: balance;
  text-align: center;
}

.wa-mark {
  width: 20px;
  height: 20px;
  flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.06 24l1.7-6.2A11.86 11.86 0 0 1 .16 11.9C.16 5.34 5.5 0 12.06 0a11.82 11.82 0 0 1 8.4 3.49 11.8 11.8 0 0 1 3.48 8.41c0 6.56-5.34 11.9-11.9 11.9a11.9 11.9 0 0 1-5.7-1.45L.06 24Zm6.6-3.8c1.68.99 3.28 1.59 5.4 1.59 5.45 0 9.89-4.43 9.89-9.88 0-5.46-4.43-9.89-9.88-9.89C6.6 2.02 2.17 6.45 2.17 11.9c0 2.24.65 3.92 1.75 5.68l-1 3.65 3.74-1.03Zm10.7-5.55c-.07-.12-.27-.2-.56-.34-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.16-.17.2-.35.22-.64.08-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.47-1.76-1.65-2.05-.17-.3-.02-.46.13-.6.13-.14.3-.35.44-.52.15-.18.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.6-.91-2.2-.24-.58-.49-.5-.67-.5l-.57-.02c-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.48 0 1.46 1.07 2.88 1.22 3.07.15.2 2.1 3.2 5.08 4.49.71.3 1.26.49 1.7.63.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2-1.41.25-.7.25-1.29.18-1.41Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.06 24l1.7-6.2A11.86 11.86 0 0 1 .16 11.9C.16 5.34 5.5 0 12.06 0a11.82 11.82 0 0 1 8.4 3.49 11.8 11.8 0 0 1 3.48 8.41c0 6.56-5.34 11.9-11.9 11.9a11.9 11.9 0 0 1-5.7-1.45L.06 24Zm6.6-3.8c1.68.99 3.28 1.59 5.4 1.59 5.45 0 9.89-4.43 9.89-9.88 0-5.46-4.43-9.89-9.88-9.89C6.6 2.02 2.17 6.45 2.17 11.9c0 2.24.65 3.92 1.75 5.68l-1 3.65 3.74-1.03Zm10.7-5.55c-.07-.12-.27-.2-.56-.34-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.16-.17.2-.35.22-.64.08-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.47-1.76-1.65-2.05-.17-.3-.02-.46.13-.6.13-.14.3-.35.44-.52.15-.18.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.6-.91-2.2-.24-.58-.49-.5-.67-.5l-.57-.02c-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.48 0 1.46 1.07 2.88 1.22 3.07.15.2 2.1 3.2 5.08 4.49.71.3 1.26.49 1.7.63.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2-1.41.25-.7.25-1.29.18-1.41Z'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.95;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 99px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-top: 18px;
  color: var(--green-deep);
  font-size: clamp(42px, 6vw, 72px);
}

h2 {
  color: var(--green-deep);
  font-size: 46px;
}

h3 {
  color: var(--green-dark);
  font-size: 22px;
}

.section {
  padding-block: 96px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 14px;
}

.section-heading p,
.split-copy p,
.hero-sub,
.final-inner p {
  color: var(--gray);
  font-size: 18px;
}

.section-heading p {
  margin-top: 16px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--green-pale);
}

.hero-media,
.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media {
  background-image: url("assets/capa_lp_hospital_jardim_vitoria.webp");
  background-size: cover;
  background-position: 100% calc(50% + 50px);
  opacity: 1;
}

.hero::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.62) 62%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(180deg, rgba(245, 250, 247, 0.18), rgba(255, 248, 243, 0.16));
}

.hero::after {
  content: "";
  z-index: 2;
  background-image:
    linear-gradient(rgba(45, 104, 82, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 104, 82, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black 0%, black 45%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-block: 72px;
}

.hero-copy {
  max-width: 760px;
}

.hero-title {
  display: grid;
  gap: 4px;
}

.headline-soft,
.headline-main,
.headline-support {
  display: block;
}

.headline-soft {
  color: var(--green);
  font-size: 0.6em;
  font-weight: 650;
  line-height: 1.16;
}

.headline-main {
  color: var(--orange);
  font-weight: 900;
  line-height: 1.02;
  font-size: clamp(34px, 5vw, 56px);
}

.headline-support {
  max-width: 720px;
  margin-top: 14px;
  color: var(--green-deep);
  font-size: 0.42em;
  font-weight: 650;
  line-height: 1.32;
}

.hero-sub {
  max-width: 540px;
  margin-top: 22px;
  text-wrap: pretty;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 670px;
  margin-top: 28px;
}

.trust-list li,
.feature-list li,
.check-panel li,
.clinical-panel li,
.list-card li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 600;
}

.trust-list li::before,
.feature-list li::before,
.check-panel li::before,
.clinical-panel li::before,
.list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 116, 53, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.microcopy {
  margin-top: 12px;
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
}

.hero .microcopy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 28px rgba(23, 63, 49, 0.12);
  color: var(--green-deep);
}

.hero .microcopy::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.55 17.6 4.4 12.45l1.4-1.4 3.75 3.75 8.25-8.25 1.4 1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.55 17.6 4.4 12.45l1.4-1.4 3.75 3.75 8.25-8.25 1.4 1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pain-identification {
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--green-pale) 100%);
}

.pain-heading {
  max-width: 880px;
}

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

.symptom-card,
.info-card,
.benefit-item,
.objection,
.list-card,
.check-panel,
.note-box,
.clinical-panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.symptom-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.symptom-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(244, 116, 53, 0.08);
  pointer-events: none;
}

.symptom-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 900;
}

.symptom-card h3 {
  font-size: 24px;
  line-height: 1.12;
}

.symptom-card p,
.info-card p,
.benefit-item p,
.objection p {
  margin-top: 10px;
  color: var(--gray);
}

.pain-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(45, 104, 82, 0.18);
  border-radius: var(--radius);
  background: var(--green-deep);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.pain-note strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.18;
}

.pain-note p {
  max-width: 760px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.pain-note .btn {
  flex: none;
}

.what-is,
.evaluation,
.fit,
.faq {
  background: var(--green-pale);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
}

.split.reverse .split-copy {
  order: 2;
}

.split-copy h2 {
  margin-top: 14px;
}

.split-copy p {
  margin-top: 18px;
}

.split-copy .btn {
  margin-top: 26px;
}

.clinical-panel {
  overflow: hidden;
}

.clinical-panel img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.clinical-panel ul {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.indication,
.benefits,
.hospital,
.objections {
  background: var(--paper);
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.info-card,
.benefit-item,
.objection {
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.info-card:hover,
.benefit-item:hover,
.objection:hover,
.symptom-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 104, 82, 0.35);
  box-shadow: var(--shadow);
}

.note-box {
  margin-top: 28px;
  padding: 24px 26px;
  border-left: 4px solid var(--orange);
  color: var(--gray);
  font-size: 17px;
}

.note-box strong {
  color: var(--green-dark);
}

.check-panel {
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 247, 0.96)),
    var(--paper);
}

.check-panel h3 {
  margin-bottom: 22px;
  font-size: 30px;
}

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

.check-panel ul,
.feature-list,
.list-card ul {
  display: grid;
  gap: 12px;
}

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

.transformation {
  background: var(--green-deep);
  color: var(--paper);
}

.transformation .eyebrow,
.final-cta .eyebrow {
  color: var(--paper);
}

.transformation h2,
.final-cta h2 {
  color: var(--paper);
}

.transformation-inner {
  max-width: 980px;
}

.transformation-inner h2 {
  margin-top: 14px;
  max-width: 820px;
}

.transformation-inner p {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.clarity-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.process {
  background: var(--warm);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}

.timeline li {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(244, 116, 53, 0.18);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 900;
}

.timeline p {
  margin-top: 10px;
  color: var(--gray);
}

.hospital-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

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

.list-card {
  padding: 34px;
}

.list-card.muted {
  background: #FAFAF8;
}

.list-card h2 {
  margin-top: 14px;
  font-size: 36px;
}

.list-card ul {
  margin-top: 24px;
}

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

.objection h3 {
  font-size: 21px;
}

.faq-list {
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq-item summary {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 18px 58px 18px 22px;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-item[open] {
  border-color: rgba(45, 104, 82, 0.42);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--orange);
  color: var(--paper);
}

.faq-item p {
  padding: 0 22px 22px;
  color: var(--gray);
  animation: faq-in 180ms ease;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(45, 104, 82, 0.96), rgba(15, 47, 37, 0.98)),
    var(--green);
  color: var(--paper);
  text-align: center;
}

.final-inner {
  max-width: 850px;
}

.final-inner h2 {
  margin-top: 14px;
}

.final-inner p {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.final-inner .btn {
  margin-top: 30px;
}

.footer {
  background: var(--paper);
  color: var(--gray);
  padding-block: 34px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  height: auto;
  object-fit: contain;
}

.footer-logo-hospital {
  width: 190px;
}

.footer-logo-group {
  width: 188px;
}

.footer-divider {
  width: 1px;
  height: 54px;
  background: var(--line);
}

.footer-copy {
  max-width: 420px;
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.footer-legal {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-color: rgba(45, 104, 82, 0.28);
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
  text-decoration-color: currentColor;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: 62px;
  height: 62px;
  min-height: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: var(--paper);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.38);
  transform: translateY(130%);
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

.sticky-cta::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.34);
  animation: whatsapp-ring 2.2s ease-out infinite;
}

.sticky-cta .wa-mark {
  width: 29px;
  height: 29px;
}

.sticky-cta:hover,
.sticky-cta:focus-visible {
  transform: translateY(0) scale(1.04);
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.48);
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  animation: sticky-pulse 2.8s ease-in-out infinite;
}

.sticky-cta.is-visible:hover,
.sticky-cta.is-visible:focus-visible {
  transform: translateY(0) scale(1.04);
}

.legal-page {
  background: var(--green-pale);
}

.legal-main {
  width: min(100% - 40px, 920px);
  margin-inline: auto;
  padding-block: 40px 72px;
}

.legal-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}

.legal-logo img {
  width: 176px;
  height: auto;
}

.legal-content {
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.legal-content h1 {
  margin-top: 14px;
  font-size: clamp(36px, 6vw, 56px);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 31px);
}

.legal-content p,
.legal-content li {
  color: var(--gray);
  font-size: 17px;
}

.legal-content p {
  margin-top: 14px;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-left: 22px;
}

.legal-content li {
  list-style: disc;
}

.legal-updated {
  color: var(--green);
  font-weight: 700;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 28px), 0) scale(var(--reveal-scale, 1));
  filter: blur(var(--reveal-blur, 0));
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.section-heading.reveal,
.split-copy.reveal,
.final-inner.reveal {
  --reveal-y: 34px;
  --reveal-blur: 2px;
}

.clinical-panel.reveal,
.hospital-image.reveal {
  --reveal-y: 22px;
  --reveal-scale: 0.985;
}

.symptom-card.reveal,
.info-card.reveal,
.benefit-item.reveal,
.objection.reveal,
.faq-item.reveal,
.timeline li.reveal,
.list-card.reveal {
  --reveal-y: 30px;
  --reveal-scale: 0.985;
}

.pain-note.reveal,
.note-box.reveal,
.check-panel.reveal {
  --reveal-y: 24px;
  --reveal-blur: 1px;
}

.symptom-grid .reveal:nth-child(2),
.card-grid .reveal:nth-child(2),
.benefit-row .reveal:nth-child(2),
.timeline .reveal:nth-child(2),
.objection-grid .reveal:nth-child(2) {
  transition-delay: 50ms;
}

.symptom-grid .reveal:nth-child(3),
.card-grid .reveal:nth-child(3),
.benefit-row .reveal:nth-child(3),
.timeline .reveal:nth-child(3),
.objection-grid .reveal:nth-child(3) {
  transition-delay: 100ms;
}

.symptom-grid .reveal:nth-child(4),
.card-grid .reveal:nth-child(4),
.benefit-row .reveal:nth-child(4),
.timeline .reveal:nth-child(4),
.objection-grid .reveal:nth-child(4) {
  transition-delay: 150ms;
}

@keyframes button-shine {
  0%, 52% {
    transform: translateX(0) skewX(-18deg);
  }
  72%, 100% {
    transform: translateX(420%) skewX(-18deg);
  }
}

@keyframes sticky-pulse {
  0%, 100% {
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.38);
  }
  50% {
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.58);
  }
}

@keyframes whatsapp-ring {
  0% {
    opacity: 0.9;
    transform: scale(0.86);
  }
  80%, 100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes faq-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 16px;
  }

  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    background: var(--paper);
    transition: max-height 240ms ease, border-color 180ms ease;
  }

  .mobile-menu.is-open {
    max-height: 520px;
    border-color: var(--line);
  }

  .mobile-menu a {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
    padding: 15px 0;
    color: var(--green-dark);
    font-weight: 800;
    border-bottom: 1px solid rgba(216, 229, 223, 0.72);
  }

  .mobile-menu .btn {
    width: calc(100% - 40px);
    margin-block: 14px 18px;
    padding: 16px 20px;
    color: var(--paper);
    border-bottom: 0;
  }

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

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

@media (max-width: 900px) {
  .topbar-inner span:nth-child(2) {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding-block: 76px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero-media {
    opacity: 1;
    background-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 54%, rgba(255, 255, 255, 0.7) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(45, 104, 82, 0.12));
  }

  .hero::after {
    mask-image: linear-gradient(180deg, black 0%, transparent 78%);
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split.reverse .split-copy {
    order: initial;
  }

  .clinical-panel img {
    aspect-ratio: 16 / 10;
  }

  .card-grid.six,
  .benefit-row,
  .timeline,
  .clarity-grid,
  .symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-lists {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 82px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .topbar {
    font-size: 12px;
  }

  .topbar-inner {
    min-height: 34px;
  }

  .brand img {
    width: 138px;
  }

  .nav {
    min-height: 76px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .section {
    padding-block: 60px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading.center {
    text-align: left;
  }

  .section-heading p,
  .split-copy p,
  .hero-sub,
  .final-inner p,
  .transformation-inner p {
    font-size: 16px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 21px;
  }

  .hero,
  .hero-inner {
    min-height: 780px;
  }

  .hero-inner {
    align-items: flex-start;
    padding-block: 44px 48px;
  }

  .hero-copy {
    max-width: min(62vw, 258px);
  }

  .hero-media {
    background-image: url("assets/capa_mobile.png");
    background-size: cover;
    background-position: center top;
    opacity: 1;
  }

  .hero::before {
    background:
      radial-gradient(ellipse 92% 48% at 0% 8%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.5) 68%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.02) 54%, rgba(15, 47, 37, 0.04) 100%);
  }

  .headline-soft {
    font-size: 0.58em;
  }

  .headline-main {
    font-size: clamp(28px, 8vw, 40px);
  }

  .headline-support {
    margin-top: 10px;
    font-size: 0.44em;
    line-height: 1.34;
  }

  .hero-sub {
    max-width: 100%;
    margin-top: 14px;
    font-size: 14.5px;
    line-height: 1.48;
  }

  .trust-list {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: clamp(220px, 31vh, 280px);
  }

  .hero-actions .btn-secondary {
    display: none;
  }

  .hero .microcopy {
    max-width: 100%;
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.35;
    color: var(--green-deep);
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.9);
  }

  .btn,
  .btn-large {
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    font-size: 16px;
    white-space: normal;
    text-align: center;
  }

  .symptom-grid,
  .card-grid.six,
  .benefit-row,
  .timeline,
  .clarity-grid,
  .objection-grid,
  .feature-list,
  .check-columns {
    grid-template-columns: 1fr;
  }

  .symptom-card,
  .info-card,
  .benefit-item,
  .objection,
  .list-card,
  .check-panel,
  .note-box {
    padding: 22px;
  }

  .symptom-card {
    min-height: auto;
  }

  .pain-note {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 22px;
  }

  .pain-note strong {
    font-size: 21px;
  }

  .timeline li {
    min-height: auto;
  }

  .list-card h2 {
    font-size: 30px;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 16px 52px 16px 18px;
    font-size: 16px;
  }

  .faq-item summary::after {
    right: 14px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .footer .btn {
    width: 100%;
  }

  .footer-inner {
    align-items: center;
    text-align: center;
  }

  .footer-branding {
    flex-direction: column;
    gap: 14px;
  }

  .footer-divider {
    width: 88px;
    height: 1px;
  }

  .footer-logo-hospital {
    width: 172px;
  }

  .footer-logo-group {
    width: 170px;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-legal {
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .sticky-cta {
    display: inline-flex;
  }

  .reveal {
    --reveal-y: 22px;
    --reveal-blur: 0;
    transition-duration: 620ms;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .topbar a {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
