:root {
  --blue: #003e52;
  --blue-2: #07566f;
  --blue-deep: #022f3d;
  --bg: #f7f4ee;
  --bg-alt: #eaf0ea;
  --card: #fffdf8;
  --text: #101820;
  --muted: #5b6870;
  --soft: #8f9da3;
  --red: #ef3340;
  --wa: #25d366;
  --white: #ffffff;
  --line: rgba(0, 62, 82, 0.14);
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.1);
  --shadow-soft: 0 16px 40px rgba(16, 24, 32, 0.08);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

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

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

:focus-visible {
  outline: 3px solid rgba(239, 51, 64, 0.65);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 62, 82, 0.1);
  background: rgba(247, 244, 238, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid: auto / 1fr auto auto;
  align-items: center;
  gap: 12px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  display: block;
  flex: 0 0 auto;
}

.main-nav {
  position: fixed;
  top: 74px;
  left: 16px;
  right: 16px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 800;
}

.main-nav a:hover {
  background: rgba(0, 62, 82, 0.08);
}

.menu-toggle {
  display: inline-grid;
  gap: 4px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
}

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 24, 32, 0.14);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
}

.btn-whatsapp {
  color: #062513;
  background: var(--wa);
}

.btn-secondary {
  color: var(--blue);
  border-color: rgba(0, 62, 82, 0.18);
  background: rgba(255, 253, 248, 0.74);
}

.btn-secondary.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 52px;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 211, 102, 0.13), transparent 30%),
    linear-gradient(145deg, #f7f4ee 0%, #edf3ed 100%);
  scroll-margin-top: 92px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -24% 52%;
  height: 46%;
  background: linear-gradient(135deg, rgba(0, 62, 82, 0.06), rgba(37, 211, 102, 0.06));
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.05);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--blue-deep);
  font-size: clamp(2.7rem, 8.8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: clamp(2rem, 5.5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.7vw, 1.36rem);
  line-height: 1.48;
}

.hero-actions,
.final-actions {
  display: grid;
  gap: 12px;
  max-width: 540px;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-size: 0.94rem;
  font-weight: 800;
}

.trust-list li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--blue) url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9.2L7.6 11.8L13.2 6.2' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/18px 18px no-repeat;
  flex: 0 0 auto;
}

.diagnostic-panel {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(2, 47, 61, 0.95), rgba(0, 62, 82, 0.9)),
    var(--blue);
  box-shadow: 0 32px 90px rgba(2, 47, 61, 0.22);
}

.diagnostic-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 12%, rgba(37, 211, 102, 0.28), transparent 28%);
  pointer-events: none;
}

.panel-top,
.document-card,
.panel-metrics,
.analysis-lines,
.panel-visual {
  position: relative;
  z-index: 1;
}

.panel-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-top strong {
  display: block;
  font-size: 1.25rem;
}

.panel-kicker {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill {
  color: #d8fff0;
  background: rgba(37, 211, 102, 0.16);
}

.document-card {
  display: grid;
  grid: auto / 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.doc-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: var(--blue);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
}

.document-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.panel-metrics {
  display: grid;
  grid: auto / repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.panel-metrics div {
  min-width: 0;
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.panel-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
}

.panel-metrics strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.analysis-lines {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.analysis-lines span {
  display: block;
  width: var(--size);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wa), rgba(255, 255, 255, 0.52));
}

.panel-visual {
  display: block;
  width: 100%;
  border-radius: 22px;
  opacity: 0.95;
}

.section {
  padding: 72px 0;
  scroll-margin-top: 92px;
}

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

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(37, 211, 102, 0.16), transparent 28%),
    linear-gradient(145deg, var(--blue-deep), var(--blue));
}

.section-dark h2,
.section-dark h3,
.section-dark .section-label {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

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

.section-heading p,
.large-copy {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.16rem);
}

.split-heading {
  display: grid;
  gap: 16px;
}

.center-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

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

.pain-grid,
.pricing-grid,
.method-grid {
  display: grid;
  gap: 16px;
}

.info-card,
.feature-card,
.price-card,
.timeline article,
.method-grid article,
.rehab-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.info-card {
  padding: 22px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

.info-card p,
.feature-card p,
.price-card p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.statement-card {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(0, 62, 82, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 62, 82, 0.08), rgba(37, 211, 102, 0.08));
}

.statement-card strong {
  color: var(--blue-deep);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

.statement-card span {
  color: var(--muted);
}

.solution-grid,
.authority-grid,
.next-step-grid,
.final-cta-inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}

.text-link::after {
  content: "→";
}

.feature-stack {
  display: grid;
  gap: 12px;
}

.feature-card {
  display: grid;
  grid: auto / auto 1fr;
  gap: 8px 16px;
  padding: 20px;
}

.feature-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.price-card-featured {
  border-color: rgba(239, 51, 64, 0.42);
  background:
    linear-gradient(180deg, rgba(239, 51, 64, 0.05), rgba(255, 253, 248, 0) 44%),
    var(--card);
  box-shadow: var(--shadow);
}

.badge {
  color: var(--white);
  background: var(--red);
}

.price-head strong {
  display: block;
  margin-top: 12px;
  color: var(--blue);
  font-size: clamp(2rem, 6vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: grid;
  grid: auto / 20px 1fr;
  gap: 9px;
  color: var(--text);
  font-size: 0.95rem;
}

.price-card li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--blue) url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 10.4L8.3 13.1L14.5 6.9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/20px 20px no-repeat;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.comparison-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.comparison-row {
  display: grid;
  grid: auto / minmax(170px, 1.3fr) repeat(4, minmax(128px, 1fr));
  min-width: 760px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  padding: 15px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-row > div:first-child {
  color: var(--blue-deep);
  font-weight: 900;
}

.comparison-head {
  background: var(--blue);
}

.comparison-head > div,
.comparison-head > div:first-child {
  color: var(--white);
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid: auto / 48px 1fr;
  gap: 14px;
  padding: 18px;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.rehab-card {
  padding: 24px;
  color: var(--text);
}

.rehab-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rehab-card strong {
  display: block;
  margin: 12px 0 22px;
  color: var(--blue);
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.legal-inline {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.method-grid {
  grid: auto / 1fr;
}

.method-grid article {
  display: grid;
  grid: auto / 72px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 18px;
}

.method-grid h3 {
  margin: 0;
}

.method-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  color: var(--white);
  background: var(--blue);
  font-size: 2rem;
  font-weight: 900;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.05);
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 62px;
  padding: 18px;
  border: 0;
  color: var(--blue-deep);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq-panel > p {
  margin: 0;
  padding: 0 18px;
  color: var(--muted);
}

.faq-item.is-open .faq-panel {
  max-height: 320px;
}

.faq-item.is-open .faq-panel > p {
  padding-bottom: 18px;
}

.transparency-card {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(239, 51, 64, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(239, 51, 64, 0.08), rgba(0, 62, 82, 0.05)),
    var(--card);
  box-shadow: var(--shadow-soft);
}

.transparency-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.14rem);
}

.final-cta {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 211, 102, 0.18), transparent 28%),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.final-cta h2,
.final-cta .section-label {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 46px 0 92px;
  color: #d8e3e2;
  background: var(--blue-deep);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--white);
}

.site-footer p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
  color: var(--wa);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
}

.footer-note {
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  color: #062513;
  background: var(--wa);
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.24);
  font-size: 0.88rem;
  font-weight: 900;
}

.section-reveal {
  opacity: 1;
  transform: none;
}

.js .section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .section-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 560px) {
  .hero-actions,
  .final-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .trust-list {
    grid: auto / repeat(2, 1fr);
  }

  .pain-grid,
  .method-grid {
    grid: auto / repeat(2, 1fr);
  }
}

@media (min-width: 760px) {
  .header-cta {
    display: inline-flex;
  }

  .pricing-grid {
    grid: auto / repeat(2, 1fr);
  }

  .timeline {
    grid: auto / repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .header-inner {
    grid: auto / auto 1fr auto;
    min-height: 82px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    padding: 92px 0 82px;
  }

  .hero-grid {
    grid: auto / minmax(0, 1.06fr) minmax(390px, 0.94fr);
    gap: 56px;
  }

  .trust-list {
    grid: auto / repeat(4, 1fr);
  }

  .section {
    padding: 94px 0;
  }

  .split-heading,
  .solution-grid,
  .authority-grid,
  .next-step-grid,
  .final-cta-inner,
  .footer-grid {
    grid: auto / 1fr 1fr;
  }

  .pain-grid {
    grid: auto / repeat(5, 1fr);
  }

  .pricing-grid {
    grid: auto / repeat(4, 1fr);
  }

  .price-card {
    padding: 24px;
  }

  .timeline {
    grid: auto / repeat(3, 1fr);
  }

  .timeline article {
    grid: auto / 1fr;
  }

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

@media (min-width: 1500px) {
  :root {
    --max: 1280px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand span {
    font-size: 0.96rem;
  }

  .header-inner {
    grid: auto / 1fr auto;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3rem);
  }

  .panel-metrics {
    grid: auto / 1fr;
  }

  .floating-whatsapp span {
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    position: absolute;
  }
}

/* Final visual polish */
:root {
  --max: 1160px;
  --section-padding: clamp(64px, 7vw, 92px);
  --section-padding-sm: clamp(52px, 6vw, 76px);
  --radius-lg: 28px;
  --shadow: 0 22px 64px rgba(16, 24, 32, 0.09);
  --shadow-soft: 0 12px 34px rgba(16, 24, 32, 0.07);
}

body {
  font-size: 1.02rem;
  line-height: 1.62;
}

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

.site-header {
  border-bottom-color: rgba(0, 62, 82, 0.09);
  background: rgba(247, 244, 238, 0.9);
}

.header-inner {
  min-height: 66px;
}

.brand {
  gap: 11px;
  font-size: 1.02rem;
  font-weight: 850;
}

.brand-logo-wrap {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(0, 62, 82, 0.1);
  border-radius: 13px;
  background: #f8f8f8;
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.08);
}

.brand-logo-wrap img {
  display: block;
  max-width: none;
  width: 118px;
  height: auto;
  transform: translate(-37px, -7px);
}

.footer-brand .brand-logo-wrap {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.main-nav {
  top: 66px;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 750;
}

.header-cta {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.88rem;
}

.btn {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.92rem;
  font-weight: 820;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5.7vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.08rem, 1.45vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.hero {
  padding: clamp(58px, 7vw, 86px) 0 clamp(54px, 6vw, 76px);
  scroll-margin-top: 84px;
}

.hero-grid {
  gap: clamp(28px, 4vw, 50px);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 22px;
  color: #43525a;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.58;
}

.eyebrow,
.section-label {
  margin-bottom: 14px;
  font-size: 0.72rem;
}

.trust-list {
  gap: 9px 14px;
  margin-top: 22px;
}

.trust-list li {
  color: #223640;
  font-size: 0.88rem;
  font-weight: 720;
}

.diagnostic-panel {
  max-width: 520px;
  justify-self: center;
  padding: clamp(18px, 2.5vw, 26px);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 78px rgba(2, 47, 61, 0.2);
}

.panel-top {
  margin-bottom: 18px;
}

.panel-top strong {
  font-size: 1.14rem;
}

.document-card {
  padding: 14px;
  border-radius: 18px;
}

.panel-metrics div {
  padding: 12px 10px;
}

.analysis-lines {
  margin: 16px 0;
}

.panel-visual {
  max-height: 230px;
  object-fit: cover;
  border-radius: 18px;
}

.section {
  padding: var(--section-padding) 0;
  scroll-margin-top: 86px;
}

.section-heading {
  margin-bottom: clamp(24px, 4vw, 38px);
}

.section-heading p,
.large-copy {
  max-width: 720px;
  color: #48565d;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.68;
}

.center-heading {
  max-width: 740px;
}

.pain-grid,
.pricing-grid,
.method-grid,
.timeline,
.feature-stack {
  gap: 18px;
}

.info-card,
.feature-card,
.price-card,
.timeline article,
.method-grid article,
.rehab-card {
  border-color: rgba(0, 62, 82, 0.11);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.info-card,
.feature-card,
.timeline article,
.method-grid article {
  padding: clamp(18px, 2vw, 24px);
}

.info-card p,
.feature-card p,
.price-card p,
.timeline p {
  color: #4f5d64;
  line-height: 1.58;
}

.statement-card,
.transparency-card {
  border-radius: var(--radius-lg);
}

.pricing-grid {
  align-items: stretch;
}

.pricing-grid-three {
  max-width: 1040px;
  margin-inline: auto;
}

.price-card {
  gap: 16px;
  padding: clamp(22px, 2.2vw, 30px);
}

.price-card-featured {
  border-color: rgba(239, 51, 64, 0.32);
  box-shadow: 0 22px 58px rgba(16, 24, 32, 0.11);
}

.price-head h3 {
  min-height: 2.45em;
  margin-bottom: 0;
}

.price-head strong {
  margin-top: 14px;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  letter-spacing: -0.035em;
}

.price-card > p {
  min-height: 4.8em;
}

.price-card ul {
  gap: 11px;
  padding-top: 4px;
}

.price-card li {
  grid: auto / 18px 1fr;
  gap: 10px;
  color: #22333d;
  font-size: 0.94rem;
  line-height: 1.48;
}

.price-card li::before {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-size: 18px 18px;
}

.badge {
  min-height: 28px;
  padding-inline: 11px;
  box-shadow: 0 8px 18px rgba(239, 51, 64, 0.16);
}

.comparison-table {
  border-color: rgba(0, 62, 82, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 52px rgba(16, 24, 32, 0.08);
}

.comparison-row {
  grid: auto / minmax(220px, 1.28fr) repeat(3, minmax(150px, 1fr));
  min-width: 760px;
  border-bottom-color: rgba(0, 62, 82, 0.08);
}

.comparison-row > div {
  padding: 17px 18px;
  color: #4c5a61;
  font-size: 0.96rem;
  line-height: 1.45;
}

.comparison-row > div:not(:first-child) {
  text-align: center;
}

.comparison-row > div:first-child {
  background: rgba(0, 62, 82, 0.025);
}

.comparison-head {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.comparison-head > div:first-child {
  background: transparent;
}

.timeline article {
  min-height: 210px;
}

.timeline span {
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 62, 82, 0.12);
}

.rehab-card {
  padding: clamp(24px, 3vw, 34px);
}

.faq-item {
  border-color: rgba(0, 62, 82, 0.1);
  border-radius: 16px;
}

.faq-item button {
  min-height: 60px;
  padding: 17px 20px;
  font-weight: 800;
}

.floating-whatsapp {
  right: 18px;
  bottom: 18px;
  min-width: 52px;
  width: 52px;
  height: 52px;
  padding: 0;
  font-size: 0;
  box-shadow: 0 14px 32px rgba(16, 24, 32, 0.2);
}

.floating-whatsapp::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/placeholder-whatsapp.svg") center/76px 76px no-repeat;
  border-radius: 999px;
}

.floating-whatsapp span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-footer {
  padding: 44px 0 82px;
}

@media (min-width: 1020px) {
  .header-inner {
    min-height: 70px;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .hero-grid {
    grid: auto / minmax(0, 1.04fr) minmax(360px, 0.86fr);
  }

  .section {
    padding: var(--section-padding) 0;
  }

  .pricing-grid {
    grid: auto / repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1240px) {
  .pricing-grid {
    grid: auto / repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1500px) {
  :root {
    --max: 1220px;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 86px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 62px;
  }

  .brand-logo-wrap {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-logo-wrap img {
    width: 108px;
    transform: translate(-34px, -6px);
  }

  .brand {
    font-size: 0.98rem;
  }

  .main-nav {
    top: 62px;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.45rem, 10.8vw, 3.5rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(1.88rem, 8vw, 2.75rem);
  }

  .hero-lead,
  .section-heading p,
  .large-copy {
    font-size: 1rem;
  }

  .diagnostic-panel {
    max-width: none;
  }

  .panel-visual {
    max-height: 190px;
  }

  .price-head h3,
  .price-card > p {
    min-height: 0;
  }

  .comparison-table {
    scrollbar-width: thin;
  }

  .comparison-table::before {
    content: "Arraste para comparar";
    display: block;
    padding: 12px 16px;
    color: var(--blue);
    background: rgba(0, 62, 82, 0.05);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .timeline article {
    min-height: 0;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand > span:not(.brand-logo-wrap) {
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.28rem, 10.8vw, 3rem);
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
}

/* Final madrugada refinement */
:root {
  --container: 1180px;
  --section-y: 88px;
  --section-y-sm: 64px;
  --section-y-mobile: 56px;
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 64px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 50px rgba(0, 62, 82, 0.08);
  --shadow-card: 0 14px 35px rgba(0, 62, 82, 0.1);
  --max: var(--container);
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.58;
}

p {
  line-height: 1.62;
}

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

.site-header {
  background: rgba(247, 244, 238, 0.92);
}

.header-inner {
  min-height: 68px;
}

.brand {
  font-size: 1rem;
}

.main-nav a {
  color: rgba(2, 47, 61, 0.78);
  font-size: 0.86rem;
  font-weight: 720;
}

.main-nav a:hover {
  color: var(--blue);
}

.header-cta {
  min-height: 40px;
  padding: 10px 15px;
}

.btn {
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 820;
}

h1 {
  max-width: 700px;
  font-size: clamp(2.65rem, 4.2vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.15rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.18rem, 1.65vw, 1.58rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
}

.hero {
  min-height: auto;
  padding: clamp(58px, 5.8vw, 78px) 0 clamp(54px, 5vw, 72px);
}

.hero-grid {
  gap: clamp(30px, 4vw, 48px);
  align-items: center;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 20px;
  font-size: clamp(1.03rem, 1.28vw, 1.18rem);
  line-height: 1.58;
}

.hero-actions {
  gap: 10px;
}

.trust-list {
  gap: 9px 12px;
  margin-top: 20px;
}

.trust-list li {
  align-items: flex-start;
  font-size: 0.86rem;
  line-height: 1.35;
}

.diagnostic-panel {
  max-width: 475px;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(2, 47, 61, 0.2);
}

.diagnostic-panel::before {
  background:
    radial-gradient(circle at 74% 13%, rgba(37, 211, 102, 0.24), transparent 25%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

.panel-top {
  margin-bottom: 16px;
}

.panel-top strong {
  font-size: 1.08rem;
}

.document-card {
  grid: auto / 50px 1fr;
  padding: 13px;
  border-radius: 17px;
}

.doc-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
}

.panel-metrics {
  gap: 8px;
  margin-top: 12px;
}

.panel-metrics div {
  padding: 11px 9px;
  border-radius: 15px;
}

.analysis-lines {
  gap: 8px;
  margin: 14px 0;
}

.panel-visual {
  max-height: 175px;
  object-fit: cover;
}

.section {
  padding: var(--section-y) 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.45), rgba(255, 253, 248, 0)),
    var(--bg-alt);
}

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

.section-heading p,
.large-copy {
  max-width: 660px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.64;
}

.split-heading {
  align-items: end;
}

.pain-grid,
.pricing-grid,
.method-grid,
.timeline,
.feature-stack {
  gap: var(--gap-sm);
}

.info-card,
.feature-card,
.price-card,
.timeline article,
.method-grid article,
.rehab-card {
  border-color: rgba(0, 62, 82, 0.1);
  box-shadow: var(--shadow-card);
}

.info-card,
.feature-card,
.timeline article,
.method-grid article {
  position: relative;
  overflow: hidden;
}

.info-card::before,
.feature-card::before,
.timeline article::before,
.method-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(0, 62, 82, 0.88), rgba(37, 211, 102, 0.44));
  opacity: 0.72;
}

.info-card {
  min-height: 198px;
}

.card-number {
  margin-bottom: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.statement-card {
  margin-top: var(--gap-md);
  padding: 24px 28px;
  grid: auto / minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.solution-grid,
.authority-grid,
.next-step-grid,
.final-cta-inner {
  gap: var(--gap-lg);
}

.feature-card {
  min-height: 120px;
}

.feature-card span,
.timeline span {
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.12);
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  min-height: 100%;
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    var(--card);
}

.price-card-featured {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(16, 24, 32, 0.13);
}

.price-head {
  display: grid;
  gap: 10px;
}

.price-head h3 {
  min-height: auto;
}

.price-head strong {
  margin-top: 0;
  font-size: clamp(2.05rem, 2.8vw, 2.65rem);
}

.price-card > p {
  min-height: 4.25em;
  font-size: 0.98rem;
}

.price-card ul {
  gap: 10px;
}

.price-card li {
  font-size: 0.93rem;
}

.comparison-table {
  position: relative;
  margin-top: -2px;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(0, 62, 82, 0.09);
}

.comparison-row {
  min-width: 820px;
}

.comparison-row > div {
  padding: 16px 18px;
  font-size: 0.95rem;
}

.timeline article {
  min-height: 178px;
  padding: 22px;
}

.timeline span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.rehab-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
}

.rehab-card strong {
  font-size: clamp(2.1rem, 4.2vw, 3rem);
}

.rehab-card .btn {
  margin-top: auto;
}

.faq-list {
  gap: 10px;
}

.faq-item {
  border-radius: 16px;
}

.faq-item button {
  min-height: 58px;
  padding: 16px 20px;
  font-size: 1rem;
}

.transparency-card {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(26px, 4vw, 44px);
}

.final-cta {
  padding: var(--section-y-sm) 0;
}

.site-footer {
  padding: 42px 0 52px;
}

.floating-whatsapp {
  display: none;
}

@media (min-width: 1020px) {
  .hero-grid {
    grid: auto / minmax(0, 1.08fr) minmax(360px, 0.82fr);
  }

  .section {
    padding: var(--section-y) 0;
  }

  .pricing-grid {
    grid: auto / repeat(2, minmax(0, 1fr));
    gap: var(--gap-md);
  }

  .pricing-grid-three {
    grid: auto / repeat(3, minmax(0, 1fr));
  }

  .timeline {
    gap: var(--gap-md);
  }
}

@media (min-width: 1240px) {
  .pricing-grid {
    grid: auto / repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .pricing-grid-three {
    grid: auto / repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1500px) {
  :root {
    --container: 1200px;
  }

  .hero {
    padding-top: 74px;
    padding-bottom: 68px;
  }

  .diagnostic-panel {
    max-width: 460px;
  }
}

@media (max-width: 1019px) {
  .header-cta {
    display: none !important;
  }

  .header-inner {
    grid: auto / 1fr auto;
  }

  .hero-grid,
  .split-heading,
  .solution-grid,
  .authority-grid,
  .next-step-grid,
  .final-cta-inner {
    grid: auto / 1fr;
  }

  .statement-card {
    grid: auto / 1fr;
  }

  .timeline article {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
  }

  .timeline article *,
  .timeline article h3,
  .timeline article p {
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .timeline article h3,
  .timeline article p {
    width: 100% !important;
    max-width: 100% !important;
  }

  .timeline article p {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    line-height: 1.55 !important;
  }
}

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

  .header-inner {
    min-height: 62px;
  }

  .main-nav {
    top: 62px;
  }

  .section {
    padding-top: var(--section-y-mobile);
    padding-bottom: var(--section-y-mobile);
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 50px;
  }

  h1 {
    font-size: clamp(2.05rem, 10.8vw, 2.85rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
    line-height: 1.02;
  }

  h3 {
    font-size: clamp(1.12rem, 5vw, 1.42rem);
  }

  .eyebrow,
  .section-label {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
  }

  .trust-list {
    grid: auto / 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .diagnostic-panel {
    max-width: none;
    padding: 16px;
    border-radius: 22px;
  }

  .panel-top {
    margin-bottom: 12px;
  }

  .panel-top strong {
    font-size: 1rem;
  }

  .document-card {
    grid: auto / 44px 1fr;
    gap: 10px;
    padding: 11px;
  }

  .doc-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .panel-metrics {
    grid: auto / repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .panel-metrics div {
    padding: 8px 7px;
    border-radius: 13px;
  }

  .panel-metrics span {
    font-size: 0.66rem;
  }

  .panel-metrics strong {
    font-size: 0.76rem;
  }

  .analysis-lines {
    gap: 6px;
    margin: 10px 0;
  }

  .analysis-lines span {
    height: 6px;
  }

  .panel-visual {
    max-height: 118px;
  }

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

  .pain-grid,
  .pricing-grid,
  .method-grid,
  .timeline,
  .feature-stack {
    grid: auto / 1fr;
    gap: 14px;
  }

  .info-card,
  .feature-card,
  .price-card,
  .timeline article,
  .method-grid article,
  .rehab-card {
    min-height: 0;
    padding: 18px;
    border-radius: 20px;
  }

  .statement-card {
    margin-top: 14px;
    padding: 18px;
  }

  .solution-grid,
  .authority-grid,
  .next-step-grid,
  .final-cta-inner {
    gap: 24px;
  }

  .price-card-featured {
    transform: none;
  }

  .price-card > p,
  .price-head h3 {
    min-height: 0;
  }

  .price-head strong {
    font-size: 2.25rem;
  }

  .comparison-table {
    margin-top: 0;
    border-radius: 20px;
  }

  .comparison-row {
    min-width: 700px;
  }

  .comparison-row > div {
    padding: 14px 15px;
    font-size: 0.92rem;
  }

  .timeline article {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
  }

  .timeline span {
    flex: 0 0 auto !important;
    width: 42px;
    height: 42px;
  }

  .timeline article *,
  .timeline article h3,
  .timeline article p {
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .timeline article h3,
  .timeline article p {
    width: 100% !important;
    max-width: 100% !important;
  }

  .timeline article p {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  .rehab-card strong {
    font-size: 2.28rem;
  }

  .faq-item button {
    min-height: 56px;
    padding: 15px 16px;
    font-size: 0.98rem;
  }

  .transparency-card {
    padding: 22px 18px;
  }

  .final-cta {
    padding: 56px 0;
  }

  .site-footer {
    padding-bottom: 84px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    z-index: 35;
    display: inline-flex;
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    box-shadow: 0 12px 26px rgba(16, 24, 32, 0.2);
  }

  .floating-whatsapp::before {
    width: 22px;
    height: 22px;
    background-size: 66px 66px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: clamp(2rem, 10.6vw, 2.7rem);
  }

  .brand-logo-wrap {
    width: 36px;
    height: 36px;
  }

  .brand-logo-wrap img {
    width: 102px;
    transform: translate(-32px, -6px);
  }

  .brand > span:not(.brand-logo-wrap) {
    font-size: 0.88rem;
  }
}

/* UX audit refinement */
:root {
  --section-y: 82px;
  --section-y-sm: 58px;
  --section-y-mobile: 52px;
}

h1 {
  max-width: 660px;
  font-size: clamp(2.55rem, 3.7vw, 4.35rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.75rem);
}

.hero {
  padding-top: clamp(52px, 5vw, 68px);
  padding-bottom: clamp(48px, 4.8vw, 64px);
}

.hero-lead {
  max-width: 650px;
}

.diagnostic-panel {
  max-width: 430px;
}

.info-card p,
.feature-card p,
.price-card p,
.price-card li,
.timeline p,
.faq-panel > p,
.transparency-card p:last-child {
  font-size: 0.98rem;
  line-height: 1.6;
}

.info-card {
  min-height: 186px;
}

.info-card h3 {
  max-width: 15ch;
}

.card-number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.statement-card {
  border-color: rgba(37, 211, 102, 0.22);
}

.price-card {
  border-radius: 24px;
}

.price-card-featured {
  position: relative;
}

.price-card-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(37, 211, 102, 0.34);
  border-radius: inherit;
  pointer-events: none;
}

.comparison-table {
  overflow: hidden;
  border-color: rgba(0, 62, 82, 0.08);
}

.comparison-row {
  grid: auto / minmax(240px, 1.38fr) repeat(3, minmax(150px, 1fr));
  min-width: 740px;
}

.comparison-row > div {
  display: flex;
  align-items: center;
  min-height: 54px;
}

.comparison-row > div:not(:first-child) {
  justify-content: center;
}

.comparison-row > div:nth-child(4) {
  background: rgba(37, 211, 102, 0.055);
}

.comparison-head > div:nth-child(4) {
  background: rgba(37, 211, 102, 0.16);
}

.compare-check,
.compare-no {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 850;
}

.compare-check::before,
.compare-no::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.76rem;
  line-height: 1;
}

.compare-check {
  color: #0a6140;
}

.compare-check::before {
  content: "\2713";
  background: var(--wa);
}

.compare-no {
  color: #6d7478;
}

.compare-no::before {
  content: "\2013";
  background: #a7b2b6;
}

.timeline article {
  min-height: 164px;
}

.method-grid article {
  min-height: 104px;
}

.faq-list {
  max-width: 820px;
}

.faq-item {
  box-shadow: 0 8px 22px rgba(16, 24, 32, 0.045);
}

.faq-item button {
  min-height: 52px;
  padding: 14px 18px;
  font-size: 0.96rem;
}

.faq-item button::after {
  font-size: 1.15rem;
}

.faq-panel > p {
  padding-inline: 18px;
}

.transparency-card {
  max-width: 900px;
}

@media (min-width: 1020px) {
  .pain-grid {
    grid: auto / repeat(6, minmax(0, 1fr));
    gap: 20px;
  }

  .pain-grid .info-card {
    grid-column: span 2;
  }

  .pain-grid .info-card:nth-last-child(2),
  .pain-grid .info-card:last-child {
    grid-column: span 3;
  }

  .pricing-grid-three {
    max-width: 1080px;
  }
}

@media (min-width: 1240px) {
  .hero-grid {
    grid: auto / minmax(0, 1.05fr) minmax(340px, 0.72fr);
  }
}

@media (max-width: 1019px) {
  .comparison-table {
    overflow-x: auto;
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100vw - 52px) !important;
    max-width: var(--container);
  }

  .hero-copy {
    min-width: 0;
  }

  h1 {
    max-width: min(100%, 11.7ch);
    font-size: clamp(2rem, 8.5vw, 2.45rem);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(1.86rem, 7.4vw, 2.55rem);
  }

  p,
  .info-card p,
  .feature-card p,
  .price-card p,
  .price-card li,
  .timeline p,
  .faq-panel > p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .section-heading p,
  .split-heading > p,
  .large-copy,
  .transparency-card p,
  .final-cta p {
    max-width: min(100%, 32ch);
  }

  .center-heading p {
    margin-inline: auto;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 46px;
  }

  .hero-lead {
    max-width: min(100%, 31ch);
  }

  .hero-actions,
  .final-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .btn,
  .final-actions .btn {
    max-width: 100%;
  }

  .diagnostic-panel {
    width: calc(100vw - 52px) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 52px) !important;
    justify-self: center;
    transform: scale(0.8);
    transform-origin: top left;
    margin-bottom: -84px;
  }

  .diagnostic-panel *,
  .panel-top > div,
  .document-card > div {
    min-width: 0;
  }

  .status-pill {
    flex: 0 0 auto;
    padding: 6px 8px;
    font-size: 0.64rem;
    white-space: nowrap;
  }

  .info-card h3 {
    max-width: none;
  }

  .card-number {
    margin-bottom: 12px;
  }

  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-row {
    min-width: 680px;
  }

  .comparison-row > div {
    min-height: 50px;
    padding: 13px 14px;
  }

  .compare-check,
  .compare-no {
    font-size: 0.84rem;
  }

  .faq-list {
    gap: 8px;
  }

.faq-item button {
  min-height: 50px;
  padding: 13px 15px;
  }
}

/* Visual identity refinement */
body {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 211, 102, 0.08), transparent 30rem),
    radial-gradient(circle at 90% 18%, rgba(0, 62, 82, 0.06), transparent 28rem),
    var(--bg);
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.js .section-reveal,
.section-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.3), transparent 38%, rgba(255, 255, 255, 0.12));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary,
.btn-whatsapp {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 28px rgba(0, 62, 82, 0.12);
}

.info-card,
.feature-card,
.price-card,
.timeline article,
.method-card,
.rehab-card,
.transparency-card,
.faq-item {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 253, 248, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(37, 211, 102, 0.06), transparent 12rem),
    var(--card);
}

.info-card::after,
.price-card::after,
.timeline article::after,
.method-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 36%),
    radial-gradient(circle at 88% 14%, rgba(37, 211, 102, 0.08), transparent 6rem);
  pointer-events: none;
}

.method-grid {
  gap: 18px;
}

.method-card {
  position: relative;
  overflow: hidden;
  grid: auto / 74px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
}

.method-card h3 {
  position: relative;
  z-index: 1;
  max-width: 14ch;
  font-size: clamp(1.35rem, 2.05vw, 2rem);
  line-height: 1.08;
}

.visual-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(0, 62, 82, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 240, 234, 0.92)),
    var(--bg-alt);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 30px rgba(0, 62, 82, 0.12);
}

.visual-icon::before,
.visual-icon::after {
  content: "";
  position: absolute;
}

.icon-report::before {
  width: 31px;
  height: 39px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background:
    linear-gradient(var(--wa), var(--wa)) 8px 12px / 15px 3px no-repeat,
    linear-gradient(rgba(0, 62, 82, 0.35), rgba(0, 62, 82, 0.35)) 8px 20px / 18px 3px no-repeat,
    linear-gradient(rgba(0, 62, 82, 0.2), rgba(0, 62, 82, 0.2)) 8px 28px / 13px 3px no-repeat,
    rgba(255, 255, 255, 0.92);
  box-shadow: 8px 8px 0 rgba(0, 62, 82, 0.1);
}

.icon-diagnosis::before {
  width: 32px;
  height: 32px;
  border: 5px solid var(--blue);
  border-radius: 999px;
  box-shadow: inset 0 0 0 7px rgba(37, 211, 102, 0.18);
}

.icon-diagnosis::after {
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: var(--wa);
  transform: translate(22px, 20px) rotate(45deg);
  box-shadow: 0 7px 16px rgba(37, 211, 102, 0.24);
}

.icon-guidance::before {
  width: 38px;
  height: 31px;
  border-radius: 14px 14px 14px 4px;
  background: var(--blue);
  box-shadow:
    8px 9px 0 rgba(0, 62, 82, 0.11),
    inset 0 -10px 18px rgba(0, 0, 0, 0.13);
}

.icon-guidance::after {
  width: 22px;
  height: 12px;
  border: 3px solid var(--wa);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 10px 0 0;
  transform: translate(2px, -2px) rotate(45deg);
}

.icon-transparency::before {
  width: 38px;
  height: 43px;
  border-radius: 19px 19px 22px 22px;
  background:
    linear-gradient(180deg, var(--blue), var(--blue-deep));
  clip-path: polygon(50% 0, 88% 16%, 82% 78%, 50% 100%, 18% 78%, 12% 16%);
  box-shadow: 8px 9px 0 rgba(0, 62, 82, 0.11);
}

.icon-transparency::after {
  width: 6px;
  height: 22px;
  border-radius: 999px;
  background:
    linear-gradient(var(--wa), var(--wa)) center top / 6px 14px no-repeat,
    linear-gradient(var(--wa), var(--wa)) center bottom / 6px 6px no-repeat;
}

.method-card-report {
  border-top-color: rgba(37, 211, 102, 0.38);
}

.method-card-diagnosis,
.method-card-guidance,
.method-card-transparency {
  border-top-color: rgba(0, 62, 82, 0.18);
}

.comparison-table {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 253, 248, 0.96)),
    var(--card);
}

.comparison-head {
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.14);
}

.price-card-featured {
  background:
    linear-gradient(180deg, rgba(37, 211, 102, 0.08), rgba(255, 253, 248, 0) 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 248, 0.98)),
    var(--card);
}

@media (max-width: 767px) {
  .method-card {
    grid: auto / 58px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .method-card h3 {
    max-width: none;
    font-size: clamp(1.25rem, 6vw, 1.65rem);
  }

  .visual-icon {
    width: 58px;
    height: 58px;
    border-radius: 19px;
  }

  .icon-report::before {
    transform: scale(0.78);
  }

  .icon-diagnosis::before,
  .icon-guidance::before,
  .icon-transparency::before {
    transform: scale(0.82);
  }

  .icon-diagnosis::after {
    transform: translate(18px, 16px) rotate(45deg) scale(0.82);
  }

  .icon-guidance::after {
    transform: translate(1px, -1px) rotate(45deg) scale(0.82);
  }

  .icon-transparency::after {
    transform: scale(0.82);
  }
}

/* Ajustes solicitados por Nilson/Kenia: consultoria e comparativo mais legível */
#consultoria .rehab-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 92% 10%, rgba(37, 211, 102, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.94));
  box-shadow: 0 22px 58px rgba(0, 21, 29, 0.2);
}

#consultoria .rehab-card::before {
  content: "";
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 20px;
  background:
    linear-gradient(var(--blue), var(--blue)) 18px 17px / 22px 3px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 18px 27px / 16px 3px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 18px 37px / 24px 3px no-repeat,
    linear-gradient(145deg, rgba(37, 211, 102, 0.18), rgba(0, 62, 82, 0.08));
  box-shadow: inset 0 0 0 1px rgba(0, 62, 82, 0.08);
}

#consultoria .rehab-card h3 {
  margin-bottom: 14px;
  max-width: 10ch;
  color: var(--blue);
}

#consultoria .consulting-note {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.comparison-table {
  border: 1px solid rgba(0, 62, 82, 0.14);
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 22px 62px rgba(0, 62, 82, 0.12);
}

.comparison-row {
  grid: auto / minmax(250px, 1.28fr) repeat(3, minmax(155px, 1fr));
  min-width: 760px;
}

.comparison-row > div {
  min-height: 62px;
  border-right: 1px solid rgba(0, 62, 82, 0.06);
}

.comparison-row > div:last-child {
  border-right: 0;
}

.comparison-head {
  background: linear-gradient(90deg, var(--blue), #07566f 58%, #0d6a61);
}

.comparison-head > div,
.comparison-head > div:first-child {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.comparison-head > div:nth-child(4) {
  background: rgba(37, 211, 102, 0.16);
  color: var(--white);
}

.comparison-row:not(.comparison-head) > div:first-child {
  color: var(--blue);
  font-weight: 850;
  background: rgba(247, 244, 238, 0.72);
}

.comparison-row:not(.comparison-head) > div:nth-child(4) {
  background: rgba(37, 211, 102, 0.105);
  box-shadow: inset 1px 0 0 rgba(37, 211, 102, 0.12);
}

.compare-check,
.compare-no {
  font-size: 0.92rem;
}

@media (max-width: 767px) {
  h2 {
    max-width: 100%;
    font-size: clamp(1.78rem, 6.8vw, 2.24rem);
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .section-heading,
  .section-heading > div {
    min-width: 0;
    max-width: 100%;
  }

  .timeline {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .timeline article {
    justify-self: center;
    width: calc(100% - 24px) !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-inline: auto;
    overflow: hidden;
  }

  .timeline article h3,
  .timeline article p {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }

  .next-step-grid,
  .authority-grid,
  .method-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  #consultoria .legal-inline,
  #consultoria .rehab-card,
  .method-card {
    width: calc(100% - 24px) !important;
    max-width: 100% !important;
    margin-inline: auto;
    justify-self: center;
  }

  #consultoria .consulting-note {
    color: var(--muted) !important;
  }

  #consultoria .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 14px;
    white-space: normal;
    text-align: center;
  }

  .authority-grid h2 {
    max-width: 100%;
    font-size: clamp(1.72rem, 6.2vw, 2.05rem);
    overflow-wrap: anywhere;
  }

  #consultoria .rehab-card h3 {
    max-width: 13ch;
  }

  .consulting-note {
    font-size: 1rem;
  }

  .comparison-table {
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(0, 62, 82, 0.11);
  }

  .comparison-row {
    min-width: 610px;
    grid-template-columns: 190px repeat(3, 140px);
  }

  .comparison-row > div {
    min-height: 58px;
  }
}

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