:root {
  --haptik-blue: #17334A;
  --haptik-light-blue: #BEC8D6;
  --haptik-cream: #F0ECE5;
  --haptik-gray: #515B66;
  --haptik-black: #1D1D1B;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 51, 74, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Funnel Sans", "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--haptik-blue);
  background: var(--haptik-cream);
  line-height: 1.6;
}

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

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

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

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(240, 236, 229, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 51, 74, 0.12);
}

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

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

.main-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.main-menu a {
  color: var(--haptik-gray);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 12px 18px;
  color: var(--haptik-cream) !important;
  background: var(--haptik-blue);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 51, 74, 0.22);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--haptik-blue);
  margin: 4px auto;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -190px;
  top: 80px;
  background: rgba(190, 200, 214, 0.26);
  border-radius: 50%;
  filter: blur(8px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 66px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  font-family: "Geist", "Funnel Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--haptik-gray);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.8vw, 6.8rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 600;
}

.lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--haptik-gray);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.lead.small {
  font-size: 1.08rem;
}

.hero-actions,
.hero-side {
  display: flex;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid var(--haptik-blue);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 51, 74, 0.14);
}

.button.primary {
  color: var(--haptik-cream);
  background: var(--haptik-blue);
}

.button.ghost {
  color: var(--haptik-blue);
  background: rgba(255, 255, 255, 0.38);
}

.button.light {
  color: var(--haptik-blue);
  background: var(--haptik-cream);
  border-color: var(--haptik-cream);
}

.signature-line {
  width: min(100%, 480px);
  height: 2px;
  margin-top: 52px;
  background: var(--haptik-blue);
}

.hero-visual {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 18px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-img.tall {
  border-radius: var(--radius-xl);
}

.hero-side {
  flex-direction: column;
}

.hero-img.wide {
  min-height: 300px;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-md) var(--radius-md);
}

.material-card {
  flex: 1;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: var(--haptik-cream);
  background: var(--haptik-blue);
  border-radius: var(--radius-md) var(--radius-md) var(--radius-xl) var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.material-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 170px;
  height: 170px;
  background: url('../assets/haptik-mark.png') center / contain no-repeat;
  opacity: 0.08;
}

.material-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--haptik-light-blue);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.material-card strong {
  position: relative;
  max-width: 280px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.intro-strip {
  padding: 62px 0;
  color: var(--haptik-cream);
  background: var(--haptik-blue);
}

.strip-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.strip-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--haptik-light-blue);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.strip-grid h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
}

.text-link {
  color: var(--haptik-light-blue);
  font-weight: 700;
  white-space: nowrap;
}

.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
}

.section-title h2 {
  max-width: 740px;
}

.section-title.centered {
  text-align: center;
  display: grid;
  justify-items: center;
}

.section-title.narrow h2 {
  max-width: 780px;
}

.rich-text {
  color: var(--haptik-gray);
  font-size: 1.08rem;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.feature-panel {
  padding: 96px 0;
  background: #fffaf3;
  border-top: 1px solid rgba(23, 51, 74, 0.08);
  border-bottom: 1px solid rgba(23, 51, 74, 0.08);
}

.benefits-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 230px;
  padding: 30px;
  background: var(--haptik-cream);
  border: 1px solid rgba(23, 51, 74, 0.12);
  border-radius: var(--radius-lg);
}

.icon-line {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: var(--haptik-blue);
  border: 1px solid rgba(23, 51, 74, 0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--haptik-gray);
}

.uses-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 62px;
  align-items: start;
}

.use-list {
  display: grid;
  gap: 14px;
}

.use-list article {
  padding: 24px 0;
  border-top: 1px solid rgba(23, 51, 74, 0.18);
}

.use-list article:last-child {
  border-bottom: 1px solid rgba(23, 51, 74, 0.18);
}

.use-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--haptik-blue);
  font-size: 1.36rem;
  font-weight: 650;
}

.use-list p {
  margin-bottom: 0;
  color: var(--haptik-gray);
}

.why-panel {
  padding: 96px 0;
  color: var(--haptik-cream);
  background: var(--haptik-gray);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 72px;
  align-items: center;
}

.image-frame {
  padding: 16px;
  border: 1px solid rgba(240, 236, 229, 0.22);
  border-radius: var(--radius-xl);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 12px);
}

.why-copy .eyebrow,
.cta-card .eyebrow {
  color: var(--haptik-light-blue);
}

.why-copy h2 {
  max-width: 760px;
}

.check-columns {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 34px;
}

.check-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-columns li {
  position: relative;
  padding: 12px 0 12px 26px;
  color: rgba(240, 236, 229, 0.88);
  border-top: 1px solid rgba(240, 236, 229, 0.16);
}

.check-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 7px;
  height: 7px;
  background: var(--haptik-light-blue);
  border-radius: 50%;
}

.process-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(23, 51, 74, 0.2);
  border-bottom: 1px solid rgba(23, 51, 74, 0.2);
}

.process-grid article {
  padding: 32px 24px;
  border-right: 1px solid rgba(23, 51, 74, 0.2);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--haptik-gray);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--haptik-gray);
  font-size: 0.96rem;
}

.cta-section {
  padding: 0 0 96px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 56px;
  color: var(--haptik-cream);
  background: var(--haptik-blue);
  border-radius: var(--radius-xl);
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  background: url('../assets/haptik-mark.png') center / contain no-repeat;
  opacity: 0.06;
}

.cta-card > * {
  position: relative;
}

.cta-card h2 {
  margin-bottom: 14px;
}

.cta-card p:not(.eyebrow) {
  max-width: 740px;
  margin-bottom: 0;
  color: rgba(240, 236, 229, 0.82);
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid rgba(23, 51, 74, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.site-footer img {
  width: 180px;
  margin-bottom: 14px;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--haptik-gray);
}

.footer-contact {
  display: grid;
  gap: 8px;
  color: var(--haptik-gray);
}

.footer-contact span {
  color: var(--haptik-blue);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer-contact a:hover {
  color: var(--haptik-blue);
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  color: var(--haptik-cream);
  background: var(--haptik-blue);
  border: 1px solid rgba(240, 236, 229, 0.36);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(23, 51, 74, 0.28);
  font-weight: 800;
}

@media (max-width: 980px) {
  .section-pad,
  .feature-panel,
  .why-panel {
    padding: 76px 0;
  }

  .hero-grid,
  .two-col,
  .uses-grid,
  .why-grid,
  .strip-grid,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .two-col,
  .uses-grid,
  .why-grid {
    gap: 44px;
  }

  .hero-visual {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

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

  .process-grid article:nth-child(2n) {
    border-right: 0;
  }

  .process-grid article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(23, 51, 74, 0.2);
  }

  .cta-card {
    padding: 44px;
  }
}

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

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

  .brand img {
    width: 158px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--haptik-cream);
    border: 1px solid rgba(23, 51, 74, 0.16);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-menu.is-open {
    display: flex;
  }

  .main-menu a {
    padding: 14px 12px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-visual,
  .hero-side,
  .check-columns,
  .benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: grid;
  }

  .hero-img.tall,
  .hero-img.wide {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }

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

  .process-grid article,
  .process-grid article:nth-child(2n),
  .process-grid article:last-child {
    border-right: 0;
    border-top: 1px solid rgba(23, 51, 74, 0.2);
  }

  .process-grid article:first-child {
    border-top: 0;
  }

  .cta-card {
    padding: 32px 24px;
  }

  .footer-contact {
    align-items: start;
  }

  .floating-wa {
    right: 14px;
    bottom: 14px;
  }
}


/* =========================================================
   HAPTIK 2026 — Integración editorial solicitada por cliente
   Conserva el contenido original y añade la nueva narrativa visual.
   ========================================================= */

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

.section-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--haptik-gray);
  font-family: "Geist", "Funnel Sans", sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
}

.editorial-section,
.applications-section,
.process-section,
.faq-enhanced {
  background: #f7f3ed;
}

.editorial-grid,
.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr);
  align-items: stretch;
  overflow: hidden;
  background: #fffaf3;
  border: 1px solid rgba(23, 51, 74, .09);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(23, 51, 74, .08);
}

.editorial-grid.image-right,
.visual-band.image-right {
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
}

.editorial-copy,
.visual-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 84px);
}

.editorial-copy h2,
.visual-band-copy h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.5vw, 4.8rem);
}

.editorial-copy .rich-text {
  max-width: 690px;
}

.editorial-media,
.visual-band-media {
  min-width: 0;
  margin: 0;
  background: #ded8cf;
  overflow: hidden;
}

.editorial-media picture,
.visual-band-media picture,
.editorial-media img,
.visual-band-media img {
  width: 100%;
  height: 100%;
}

.editorial-media img,
.visual-band-media img {
  object-fit: cover;
}

.portrait-media {
  min-height: 650px;
}

.portrait-media img {
  object-position: center;
}

.landscape-media {
  min-height: 500px;
}

.pictogram-grid,
.quick-benefits,
.sector-grid {
  display: grid;
  margin-top: 36px;
}

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

.pictogram-grid article,
.quick-benefits article,
.sector-grid article {
  min-width: 0;
  padding: 18px 16px;
  border-top: 1px solid rgba(23, 51, 74, .14);
  border-right: 1px solid rgba(23, 51, 74, .12);
}

.pictogram-grid article:last-child,
.sector-grid article:last-child {
  border-right: 0;
}

.pictogram-grid svg,
.quick-benefits svg,
.sector-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pictogram-grid p,
.quick-benefits p,
.sector-grid p {
  margin: 0;
  color: var(--haptik-blue);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.35;
}

.enhanced-panel {
  padding: 96px 0;
}

.enhanced-panel .visual-band {
  margin-bottom: 84px;
}

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

.quick-benefits article:nth-child(3n) {
  border-right: 0;
}

.quick-benefits article:nth-child(n+4) {
  border-bottom: 1px solid rgba(23, 51, 74, .12);
}

.compact-heading h2 {
  max-width: 850px;
  font-size: clamp(2rem, 3.5vw, 3.45rem);
}

.detailed-benefits,
.application-details,
.process-details,
.faq-details {
  margin-top: 72px;
}

.application-band .visual-band-copy,
.faq-band .visual-band-copy {
  background: #fffaf3;
}

.sector-grid {
  grid-template-columns: repeat(5, 1fr);
}

.sector-grid article {
  padding-inline: 10px;
  text-align: center;
}

.sector-grid svg {
  margin-inline: auto;
}

.use-list-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 42px;
}

.use-list-grid article:nth-last-child(-n+2) {
  border-bottom: 1px solid rgba(23, 51, 74, .18);
}

.process-band .visual-band-copy {
  min-height: 500px;
}

.process-details .process-grid {
  margin-top: 0;
  background: rgba(255, 250, 243, .65);
}

.faq-columns {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-item {
  align-self: start;
  background: #fffaf3;
  border: 1px solid rgba(23, 51, 74, .13);
  border-radius: 16px;
  box-shadow: none;
}

.faq-item summary {
  position: relative;
  padding-right: 34px;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: -4px;
  right: 0;
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

@media (max-width: 1100px) {
  .editorial-grid,
  .editorial-grid.image-right,
  .visual-band,
  .visual-band.image-right {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-copy,
  .visual-band-copy {
    padding: 48px;
  }

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

  .quick-benefits article:nth-child(3n) {
    border-right: 1px solid rgba(23, 51, 74, .12);
  }

  .quick-benefits article:nth-child(2n) {
    border-right: 0;
  }

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

  .sector-grid article:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .wide-container {
    width: min(100% - 28px, 1380px);
  }

  .editorial-grid,
  .editorial-grid.image-right,
  .visual-band,
  .visual-band.image-right {
    grid-template-columns: 1fr;
  }

  .image-left .visual-band-media,
  .image-right .visual-band-media,
  .editorial-grid.image-right .editorial-media {
    order: -1;
  }

  .portrait-media,
  .landscape-media,
  .process-band .visual-band-copy {
    min-height: auto;
  }

  .portrait-media img {
    aspect-ratio: 4 / 3;
  }

  .landscape-media img {
    aspect-ratio: 16 / 8.5;
  }

  .editorial-copy,
  .visual-band-copy {
    padding: 38px 30px;
  }

  .editorial-copy h2,
  .visual-band-copy h2 {
    font-size: clamp(2.1rem, 8vw, 3.4rem);
  }

  .enhanced-panel .visual-band {
    margin-bottom: 62px;
  }

  .detailed-benefits,
  .application-details,
  .process-details,
  .faq-details {
    margin-top: 54px;
  }

  .use-list-grid,
  .faq-columns {
    grid-template-columns: 1fr;
  }

  .use-list-grid article:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .use-list-grid article:last-child {
    border-bottom: 1px solid rgba(23, 51, 74, .18);
  }
}

@media (max-width: 560px) {
  .pictogram-grid-three,
  .quick-benefits,
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pictogram-grid article:nth-child(2n),
  .quick-benefits article:nth-child(2n),
  .sector-grid article:nth-child(2n) {
    border-right: 0;
  }

  .pictogram-grid article:last-child,
  .sector-grid article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .editorial-grid,
  .visual-band {
    border-radius: 22px;
  }

  .editorial-copy,
  .visual-band-copy {
    padding: 32px 22px;
  }
}

/* =========================================================
   HAPTIK — Rediseño del inicio inspirado en la propuesta visual
   2026-07-15
   ========================================================= */

/* Cabecera más compacta y editorial */
.site-header {
  background: rgba(240, 236, 229, 0.97);
}

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

.brand img {
  width: 158px;
}

/* Hero: titular dominante a todo lo ancho y contenido debajo */
.hero.section-pad {
  padding-top: clamp(28px, 4vw, 58px);
  padding-bottom: clamp(78px, 8vw, 112px);
}

.hero::before {
  display: none;
}

.hero-shell {
  width: min(1210px, calc(100% - 56px));
}

.hero-heading {
  margin: 0 auto clamp(38px, 4.5vw, 64px);
  text-align: center;
}

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

.hero-heading h1 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(4.15rem, 7.15vw, 7rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.058em;
  text-align: center;
  text-wrap: balance;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.82fr);
  align-items: start;
  gap: clamp(34px, 4.3vw, 62px);
}

.hero-copy {
  min-width: 0;
  padding-top: 8px;
}

.hero-copy .lead {
  max-width: 330px;
  margin-bottom: 34px;
  color: #728395;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 500;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.hero-actions .button {
  min-width: 190px;
}

.hero-actions .button.ghost {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(23, 51, 74, 0.46);
}

.hero-copy .signature-line {
  display: none;
}

.hero-visual {
  min-width: 0;
  min-height: 515px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(250px, 0.94fr);
  gap: 18px;
}

.hero-img {
  box-shadow: none;
}

.hero-img.tall {
  min-height: 515px;
  border-radius: 0;
}

.hero-side {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
}

.hero-img.wide {
  min-height: 342px;
  border-radius: 28px;
}

.material-card {
  min-height: 156px;
  padding: 24px 26px;
  border-radius: 22px;
}

.material-card span {
  margin-bottom: 12px;
}

.material-card strong {
  max-width: 270px;
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  line-height: 1.05;
}

@media (max-width: 1080px) {
  .hero-heading h1 {
    font-size: clamp(4rem, 8vw, 6.3rem);
  }

  .hero-content-grid {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.6fr);
    gap: 34px;
  }

  .hero-visual {
    min-height: 470px;
    grid-template-columns: minmax(0, 1.12fr) minmax(220px, 0.88fr);
  }

  .hero-img.tall {
    min-height: 470px;
  }

  .hero-img.wide {
    min-height: 312px;
  }
}

@media (max-width: 900px) {
  .hero-shell {
    width: min(100% - 40px, 760px);
  }

  .hero-heading {
    margin-bottom: 42px;
  }

  .hero-heading h1 {
    max-width: 760px;
    font-size: clamp(3.5rem, 10vw, 5.5rem);
  }

  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: start;
  }

  .hero-copy .lead {
    max-width: 520px;
    margin-bottom: 0;
  }

  .hero-visual {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 148px;
  }

  .hero.section-pad {
    padding-top: 34px;
    padding-bottom: 76px;
  }

  .hero-shell {
    width: min(100% - 28px, 620px);
  }

  .hero-heading {
    margin-bottom: 34px;
  }

  .hero-heading h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: -0.052em;
    text-align: left;
    text-wrap: pretty;
  }

  .hero-copy {
    display: block;
  }

  .hero-copy .lead {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: 1.08rem;
  }

  .hero-actions {
    gap: 14px;
  }

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

  .hero-visual {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-img.tall {
    min-height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 0;
  }

  .hero-side {
    grid-template-rows: auto auto;
  }

  .hero-img.wide {
    min-height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .material-card {
    min-height: 138px;
  }
}

@media (max-width: 420px) {
  .hero-heading h1 {
    font-size: clamp(2.75rem, 14vw, 3.7rem);
  }
}

/* Ajustes finales del titular y del botón flotante */
.desktop-break {
  display: inline;
}

@media (min-width: 761px) {
  .floating-wa {
    display: none;
  }
}

@media (max-width: 760px) {
  .desktop-break {
    display: none;
  }
}
