:root {
  --bg-0: 8 12 20;
  --bg-1: 14 20 32;
  --bg-2: 20 29 46;
  --surface-1: 16 23 36;
  --surface-2: 25 34 52;
  --text-1: 245 240 230;
  --text-2: 198 191 175;
  --text-3: 143 139 127;
  --accent: 201 162 94;
  --accent-contrast: 10 12 18;
  --border-soft: 138 113 70;
  --border-strong: 210 177 114;
  --blue-ink: 18 30 51;
  --blue-ink-hover: 28 44 72;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --shadow-soft: 0 20px 48px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  background: #080c14;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 12%, rgba(201, 162, 94, 0.16), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(58, 84, 126, 0.28), transparent 38%),
    linear-gradient(135deg, #070c15 0%, #0d1524 45%, #111a2d 100%);
  color: rgb(var(--text-1));
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0) 0%, rgba(8, 12, 20, 0.86) 100%),
    radial-gradient(circle at 50% 40%, rgba(20, 29, 46, 0.42), transparent 52%);
}

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

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

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

h1,
h2,
h3 {
  color: rgb(var(--text-1));
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.03;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.44);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.12;
}

p {
  color: rgb(var(--text-2));
}

strong {
  color: rgb(var(--text-1));
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(201, 162, 94, 0.18);
  background: rgba(8, 12, 20, 0.86);
  backdrop-filter: blur(12px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand {
  color: rgb(var(--text-1));
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  color: rgb(var(--text-2));
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: rgb(var(--text-1));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid transparent;
  border-radius: 9999px;
  padding: 0.75rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.3s ease-out, background 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out;
}

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

.button-primary {
  background: #c9a25e;
  color: #101824;
  box-shadow: 0 12px 28px rgba(201, 162, 94, 0.28);
}

.button-primary:hover {
  background: #dab57b;
}

.button-outline {
  border-color: rgba(201, 162, 94, 0.5);
  background: transparent;
  color: #efe7d8;
}

.button-outline:hover {
  border-color: #dab57b;
  background: rgba(201, 162, 94, 0.1);
}

.button-small {
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  border-color: rgba(201, 162, 94, 0.28);
  background: rgb(var(--blue-ink));
  color: rgb(var(--text-1));
}

.full {
  width: 100%;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7.5rem 1.5rem 3rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 162, 94, 0.18), transparent 32%),
    linear-gradient(135deg, #080c14 0%, #0e1420 46%, #111a2d 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0), #080c14);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

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

.hero-figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(201, 162, 94, 0.23);
  border-radius: 1.75rem;
  background: rgba(6, 11, 19, 0.8);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(5, 10, 18, 0.55) 0%,
    transparent 50%,
    rgba(5, 10, 18, 0.1) 100%
  );
}

.hero-figure img {
  width: 100%;
  height: clamp(30rem, 58vw, 45rem);
  object-fit: cover;
}

.hero-copy {
  max-width: 680px;
  color: rgb(var(--text-2));
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}

.hero-copy p {
  margin-bottom: 0.68rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(100%, 620px);
  margin: 2rem 0 0;
}

.hero-stats div {
  border-left: 1px solid rgba(201, 162, 94, 0.55);
  padding-left: 1rem;
}

.hero-stats dt {
  color: rgb(var(--text-1));
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  color: rgb(var(--text-2));
  font-size: 0.88rem;
}

.badge,
.eyebrow {
  color: #c9a25e;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201, 162, 94, 0.4);
  border-radius: 9999px;
  background: rgba(17, 27, 44, 0.9);
  padding: 0.5rem 1rem;
  color: #f2e8d6;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.section-shell {
  position: relative;
  padding: 5rem 0;
  background: #080c14;
}

.section-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 94, 0.45), transparent);
}

.section-muted {
  background:
    radial-gradient(circle at 86% 12%, rgba(58, 84, 126, 0.18), transparent 34%),
    linear-gradient(180deg, #0e1420 0%, #141d2e 100%);
}

.guarantee-economy-section {
  background: #080c14;
}

.guarantee-economy-flow {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.guarantee-copy p {
  max-width: 68ch;
}

.container {
  width: min(100% - 3rem, 1180px);
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

#diagnostico .split {
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

#diagnostico .section-heading {
  max-width: 30rem;
}

#diagnostico .section-heading .eyebrow {
  margin-bottom: 0.9rem;
}

#diagnostico .section-heading h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  text-wrap: balance;
}

.reversed {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.premium-panel,
.premium-panel-soft {
  border-radius: 1rem;
}

.premium-panel {
  border: 1px solid rgba(201, 162, 94, 0.28);
  background: rgba(18, 27, 43, 0.88);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(1.5px);
}

.premium-panel-soft {
  border: 1px solid rgba(138, 113, 70, 0.34);
  background: linear-gradient(145deg, rgba(16, 23, 36, 0.92), rgba(25, 34, 52, 0.86));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.lift-card {
  transition: transform 0.3s ease-out, border-color 0.3s ease-out, background 0.3s ease-out, box-shadow 0.3s ease-out;
}

.lift-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 180, 117, 0.56);
  background: linear-gradient(145deg, rgba(20, 29, 46, 0.98), rgba(25, 34, 52, 0.94));
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
}

.check-grid {
  display: grid;
  gap: 0.95rem;
}

.check-grid article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  min-height: 5.75rem;
  padding: 1.2rem 1.35rem;
}

.check-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  align-self: center;
  border: 1px solid rgba(201, 162, 94, 0.48);
  border-radius: 999px;
  background: rgba(201, 162, 94, 0.12);
  color: #c9a25e;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(201, 162, 94, 0.08);
}

.check-grid p,
.timeline p,
.deliverables,
.comparison li,
.faq-list p {
  color: rgb(var(--text-2));
}

.check-grid p {
  max-width: 42rem;
  margin-bottom: 0;
  color: #efe6d4;
  font-size: clamp(1.02rem, 1vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
  text-wrap: pretty;
}

.statement {
  margin-top: 3rem;
  border-left: 1px solid rgba(201, 162, 94, 0.62);
  background: linear-gradient(90deg, rgba(201, 162, 94, 0.1), rgba(14, 20, 32, 0));
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.statement p,
.statement strong {
  display: block;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 2.2rem 0;
}

.context-grid article {
  border: 1px solid rgba(201, 162, 94, 0.28);
  border-radius: 0.85rem;
  background: linear-gradient(145deg, rgba(16, 23, 36, 0.92), rgba(25, 34, 52, 0.86));
  padding: 1rem;
}

.context-grid article:last-child {
  grid-column: 1 / -1;
}

.context-grid h3 {
  margin-bottom: 0.45rem;
  color: rgb(var(--text-1));
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
}

.context-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

blockquote {
  margin: 2.5rem 0 0;
  border-left: 1px solid rgba(201, 162, 94, 0.62);
  padding-left: 1.5rem;
  color: rgb(var(--text-2));
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  grid-template-areas:
    "portrait intro"
    "portrait copy";
  gap: 2rem 3rem;
  align-items: start;
}

.about-portrait {
  grid-area: portrait;
  position: sticky;
  top: 6rem;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(201, 162, 94, 0.28);
  border-radius: 1.75rem;
  background: rgba(6, 11, 19, 0.8);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(5, 10, 18, 0.45), transparent 46%, rgba(5, 10, 18, 0.08)),
    radial-gradient(circle at 50% 12%, rgba(201, 162, 94, 0.16), transparent 36%);
}

.about-portrait img {
  width: 100%;
  height: clamp(34rem, 58vw, 44rem);
  object-fit: cover;
  object-position: center top;
}

.about-intro {
  grid-area: intro;
}

.about-copy {
  grid-area: copy;
  display: grid;
  gap: 1rem;
}

.about-copy h3 {
  margin: 0.4rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  color: rgb(var(--text-1));
}

.about-copy p {
  margin-bottom: 0;
}

.about-panel {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.about-panel h3 {
  margin: 0 0 1rem;
  color: rgb(var(--text-1));
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.22;
}

.about-credentials {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-credentials li {
  position: relative;
  padding-left: 1.65rem;
  color: #efe6d4;
  font-weight: 600;
  line-height: 1.45;
}

.about-credentials li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c9a25e;
  font-weight: 800;
}

.about-quote {
  margin: 0.75rem 0 0;
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.32;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  position: relative;
  border: 1px solid rgba(138, 113, 70, 0.34);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(16, 23, 36, 0.92), rgba(25, 34, 52, 0.86));
  padding: 1.35rem 1.35rem 1.35rem 3.25rem;
}

.timeline span {
  position: absolute;
  top: 1.6rem;
  left: 1.25rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #c9a25e;
  box-shadow: 0 0 22px rgba(201, 162, 94, 0.58);
}

.timeline h3,
.timeline p {
  margin-bottom: 0.45rem;
}

.offer-panel {
  position: sticky;
  top: 6rem;
  padding: clamp(1.5rem, 4vw, 2rem);
}

.offer-panel h2 {
  margin-bottom: 0.65rem;
  background: linear-gradient(90deg, #f5f0e6 0%, #c9a25e 55%, #886633 100%);
  background-clip: text;
  color: transparent;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  -webkit-background-clip: text;
}

.offer-panel small {
  display: block;
  margin-top: 1rem;
  color: rgb(var(--text-3));
}

.deliverables {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.deliverables li,
.comparison li {
  position: relative;
  padding-left: 1.35rem;
}

.deliverables li::before,
.comparison li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #c9a25e;
}

.comparison {
  display: grid;
  gap: 2rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.comparison-grid article {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.comparison ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(138, 113, 70, 0.34);
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(16, 23, 36, 0.92), rgba(25, 34, 52, 0.86));
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  color: rgb(var(--text-1));
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 0;
  padding: 0 1.2rem 1.2rem;
}

.faq-contact {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
}

.faq-contact h3 {
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.14;
}

.faq-contact p {
  padding: 0;
  max-width: 60ch;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 162, 94, 0.2), transparent 38%),
    linear-gradient(180deg, #111a2d 0%, #080c14 100%);
  text-align: center;
}

.final-cta .container {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  max-width: 780px;
}

.final-cta .button {
  margin-top: 1rem;
}

.final-cta p {
  max-width: 68ch;
  margin-bottom: 0;
}

.final-cta h2 {
  max-width: 16ch;
}

.final-cta .lead {
  color: rgb(var(--text-1));
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.final-cta .support {
  max-width: 62ch;
  color: rgb(var(--text-3));
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@media (min-width: 768px) {
  .section-shell {
    padding: 6rem 0;
  }
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-figure {
    order: -1;
  }

  .hero-figure img {
    height: clamp(22rem, 70vw, 34rem);
  }
}

@media (max-width: 860px) {
  .nav-links,
  .site-header .button {
    display: none;
  }

  .hero-section {
    min-height: auto;
  }

  .split,
  .reversed,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "portrait"
      "intro"
      "copy";
  }

  .about-portrait {
    position: relative;
    top: auto;
  }

  .about-portrait img {
    height: clamp(26rem, 95vw, 36rem);
  }

  .offer-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 2rem, 1180px);
  }

  .hero-section {
    padding: 6.5rem 1rem 3rem;
  }

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

  .hero-stats,
  .context-grid {
    grid-template-columns: 1fr;
  }

  .context-grid article:last-child {
    grid-column: auto;
  }

  #diagnostico .check-grid article {
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: 0.85rem;
    min-height: auto;
    padding: 1rem;
  }

  #diagnostico .check-grid span {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.72rem;
  }

  #diagnostico .section-heading h2 {
    max-width: 13ch;
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

}

@media (max-width: 430px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 1rem;
    line-height: 1.6;
  }

  .site-header {
    min-height: 3.75rem;
    padding: 0.65rem 0.9rem;
  }

  .brand {
    max-width: 100%;
    gap: 0.55rem;
    font-size: 0.68rem;
    line-height: 1.15;
    letter-spacing: 0.035em;
    white-space: normal;
  }

  .brand span:last-child {
    max-width: 18rem;
    overflow-wrap: anywhere;
  }

  .brand-mark {
    width: 1.25rem;
    height: 1.25rem;
  }

  .container {
    width: min(100% - 1.5rem, 1180px);
  }

  .hero-section {
    min-height: auto;
    padding: 4.75rem 0.75rem 2.75rem;
    align-items: start;
  }

  .hero-content {
    gap: 1.25rem;
  }

  .hero-text {
    min-width: 0;
    order: 0;
  }

  .hero-figure {
    order: 1;
    margin-top: 0.25rem;
    border-radius: 0.85rem;
  }

  .hero-figure img {
    height: clamp(15rem, 72vw, 18rem);
    object-fit: cover;
    object-position: center;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10.5vw, 2.55rem);
    line-height: 1.03;
    text-wrap: balance;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 8.2vw, 2rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  h3 {
    font-size: clamp(1.08rem, 5.8vw, 1.25rem);
    line-height: 1.18;
  }

  p,
  li,
  summary {
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-copy p {
    margin-bottom: 0.72rem;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .button {
    width: 100%;
    max-width: 100%;
    min-height: 3rem;
    padding: 0.85rem 1rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .section-shell {
    padding: 3.5rem 0;
  }

  .section-shell::before {
    left: 1rem;
    right: 1rem;
  }

  .split,
  .reversed,
  .about-layout {
    gap: 1.6rem;
  }

  .premium-panel,
  .premium-panel-soft,
  .timeline article,
  .context-grid article,
  .faq-list details,
  .faq-contact {
    max-width: 100%;
    border-radius: 0.75rem;
  }

  #diagnostico .split {
    align-items: start;
  }

  #diagnostico .section-heading h2 {
    max-width: 100%;
  }

  .check-grid article {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.95rem;
  }

  .check-grid span,
  #diagnostico .check-grid span {
    width: 2.25rem;
    height: 2.25rem;
  }

  .check-grid p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .context-grid,
  .comparison-grid,
  .faq-list,
  .deliverables {
    gap: 0.75rem;
  }

  .context-grid {
    margin: 1.5rem 0;
  }

  .context-grid article {
    padding: 0.95rem;
  }

  .statement {
    margin-top: 2rem;
    padding: 1.25rem;
  }

  .statement p,
  .statement strong {
    font-size: 1.55rem;
  }

  blockquote {
    margin-top: 1.75rem;
    padding-left: 1rem;
    font-size: 1.12rem;
  }

  .about-portrait {
    border-radius: 1rem;
  }

  .about-portrait img {
    height: 24rem;
  }

  .about-copy {
    gap: 0.9rem;
  }

  .about-panel,
  .offer-panel {
    padding: 1rem;
  }

  #entrega .section-heading {
    order: 1;
  }

  #entrega .offer-panel {
    order: 2;
  }

  .offer-panel h2 {
    font-size: clamp(2.55rem, 13vw, 3.1rem);
    line-height: 1;
  }

  .deliverables li,
  .comparison li {
    padding-left: 1.15rem;
  }

  .faq-list summary {
    padding: 0.95rem;
    line-height: 1.35;
  }

  .faq-list p {
    padding: 0 0.95rem 0.95rem;
    line-height: 1.55;
  }

  .faq-contact {
    padding: 1rem;
  }

  .final-cta {
    padding: 3.75rem 0;
  }

  .final-cta .container {
    gap: 0.8rem;
  }

  .final-cta h2 {
    max-width: 100%;
  }

  .final-cta p {
    max-width: 100%;
  }

  .final-cta .lead {
    font-size: 1.06rem;
    line-height: 1.45;
  }

  .final-cta .support {
    font-size: 0.92rem;
  }
}

@media (max-width: 375px) {
  .brand {
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(1.86rem, 10vw, 2.15rem);
  }

  .hero-section {
    padding-top: 4.5rem;
  }

  .hero-figure img {
    height: 14.75rem;
  }
}

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