:root {
  --blue: #3155c6;
  --blue2: #18388f;
  --red: #f05a5e;
  --ink: #171717;
  --muted: #656a73;
  --paper: #f2f2f2;
  --white: #fff;
  --line: #d9deef;
  --radius: 22px;
  --shadow: 0 20px 55px rgba(25, 50, 130, .12)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Varela Round", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55
}

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

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

button,
input,
textarea {
  font: inherit
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto
}

.section {
  padding: 92px 0
}

.eyebrow {
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red)
}

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

h1,
h2,
h3 {
  font-family: "Titillium Web", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.05
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5rem);
  letter-spacing: -.045em;
  margin: 12px 0 26px
}

.btn {
  font-family: "Titillium Web", Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 3px;
  border: 0;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: .035em;
  cursor: pointer
}

.btn.blue {
  background: var(--blue)
}

header {
  height: 78px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo img {
  width: 76px;
  height: 55px;
  object-fit: contain
}

.links {
  font-family: "Titillium Web", Arial, sans-serif;
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase
}

.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 1.6rem
}

.placeholder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef1ff, #fff);
  border: 1px solid #d9dff5
}

.placeholder:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 25%, rgba(49, 85, 198, .13) 0 3px, transparent 4px), radial-gradient(circle at 78% 72%, rgba(240, 90, 94, .16) 0 4px, transparent 5px);
  background-size: 42px 42px, 54px 54px
}

.placeholder img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(34%, 220px);
  height: auto;
  opacity: .95;
  z-index: 2
}

.placeholder-label {
  position: absolute;
  left: 18px;
  bottom: 15px;
  z-index: 3;
  background: #fff;
  padding: 7px 10px;
  border: 1px solid var(--line);
  font-size: .67rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue2)
}

.hero {
  padding-top: 78px;
  min-height: 720px;
  background: #f7f3e9;
  color: var(--blue2);
  display: grid;
  align-items: stretch;
  border-bottom: 1px solid #e7dfcf
}

.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 642px
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 42px 72px max(20px, calc((100vw - 1160px)/2))
}

.hero-art {
  min-height: 620px;
  border: 0;
  border-left: 1px solid #e7dfcf;
  background: #f7f3e9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 38px;
  overflow: hidden
}

.hero-art:before {
  display: none
}

.hero-art img {
  position: static;
  transform: none;
  width: 100%;
  height: auto;
  max-height: 570px;
  object-fit: contain;
  opacity: 1;
  filter: none
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  letter-spacing: -.055em;
  text-transform: none;
  margin: 14px 0 20px;
  max-width: 720px
}

.hero p {
  max-width: 620px;
  font-size: 1rem;
  color: #46506a
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 17px
}

.hero .btn.blue {
  background: transparent;
  color: var(--blue2);
  border: 1px solid var(--blue2)
}

.strategy-head {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 65px;
  align-items: start;
  margin-bottom: 42px
}

.strategy-head p {
  font-size: 1.05rem
}

.skills {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px
}

.skill {
  grid-column: span 3;
  min-height: 245px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff
}

.skill:nth-child(1) {
  background: var(--red)
}

.skill:nth-child(2) {
  background: #656a70
}

.skill:nth-child(3) {
  background: #171717
}

.skill:nth-child(4) {
  background: var(--blue)
}

.skill-icon {
  width: 68px;
  height: 68px;
  position: relative
}

.skill-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1)
}

.skill h3 {
  font-size: 1.55rem;
  text-transform: uppercase;
  margin: 20px 0 6px
}

.skill small {
  font-weight: 800
}

.strategy-visual {
  height: 300px;
  margin-top: 14px
}

.statement {
  margin-top: 34px;
  border-top: 10px solid var(--red);
  border-right: 10px solid #171717;
  border-left: 10px solid var(--blue);
  padding: 38px 40px;
  text-align: center;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  font-weight: 800
}

.formats {
  background: var(--paper)
}

.format-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 40px
}

.format-intro p {
  color: var(--muted)
}

.format-group {
  margin-top: 24px
}

.format-group-title {
  font-family: "Titillium Web", Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase
}

.format-group-title:after {
  content: "";
  height: 1px;
  background: #cbd2e9;
  flex: 1
}

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

.format-grid.two {
  grid-template-columns: repeat(2, 1fr)
}

.format {
  background: #fff;
  border: 1px solid #cbd3ee;
  padding: 28px;
  min-height: 285px;
  position: relative
}

.format:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: var(--red)
}

.format-icon {
  width: 56px;
  height: 56px
}

.format-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.format h3 {
  color: var(--red);
  font-size: 1.15rem;
  margin: 22px 0 10px
}

.format p {
  font-size: .9rem;
  margin: 0;
  color: #444
}

.value {
  margin-top: 18px;
  background: var(--blue);
  color: #fff;
  padding: 22px 28px;
  text-align: center;
  font-size: .86rem;
  font-weight: 700
}

.tools {
  background: #fff
}

.tools-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 68px
}

.tools-sticky {
  position: sticky;
  top: 112px;
  align-self: start
}

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

.tool {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  padding: 20px;
  background: #fff;
  align-items: start
}

.tool-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: center
}

.tool-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block
}

.tool h3 {
  font-size: 1.35rem;
  color: var(--red);
  margin: 0 0 6px
}

.tool p {
  font-size: .9rem;
  margin: 0;
  color: #4f545d
}

.feature {
  padding: 0
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.feature-copy {
  padding: 82px max(30px, calc((100vw - 1160px)/2)) 82px 50px
}

.feature-row.reverse .feature-copy {
  padding: 82px 50px 82px max(30px, calc((100vw - 1160px)/2))
}

.feature-row.blue {
  background: var(--blue);
  color: #fff
}

.feature-row.gray {
  background: #ededed
}

.feature-art {
  min-height: 570px;
  border: 0
}

.feature-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.7rem)
}

.feature-copy p {
  max-width: 680px
}

.micro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px
}

.micro {
  border: 1px solid currentColor;
  padding: 18px;
  min-height: 120px
}

.micro b {
  display: block;
  color: var(--red);
  text-transform: none;
  font-size: .78rem;
  margin-bottom: 8px
}

.blue .micro b {
  color: #fff
}

.who {
  background: #fff
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: stretch
}

.who-copy {
  padding: 10px 0
}

.who-art {
  min-height: 520px
}

.who-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.15fr .85fr;
  gap: 12px;
  min-height: 430px
}

.who-photo {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #d9deef
}

.who-photo:first-child {
  grid-column: 1/-1
}

.who-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px
}

.mission {
  border: 1px solid #ef9a9d;
  padding: 22px
}

.mission h3 {
  font-size: 1rem;
  color: var(--red);
  text-transform: uppercase
}

.numbers-section {
  background: #e9e9e9
}

.numbers-head {
  max-width: 760px
}

.numbers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 36px
}

.number {
  background: #fff;
  border-bottom: 6px solid var(--blue);
  padding: 25px 20px;
  min-height: 180px
}

.number strong {
  display: block;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  color: var(--blue);
  letter-spacing: -.05em
}

.number span {
  font-size: .84rem
}

.night {
  background: #fff
}

.night-head {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start
}

.night-copy p {
  max-width: 620px;
  margin-bottom: 16px
}

.night-copy .instagram {
  margin-top: 4px
}

.night-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  align-items: stretch
}

.night-card {
  border: 2px solid var(--blue);
  background: var(--blue);
  display: flex;
  flex-direction: column;
  height: 100%
}

.night-image {
  height: 330px;
  flex: 0 0 auto
}

.night-card-copy {
  background: var(--blue);
  color: #fff;
  padding: 20px;
  flex: 1
}

.night-card-copy h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  margin: 0 0 8px
}

.night-card-copy p {
  font-size: .78rem;
  margin: 0
}

.night-end {
  text-align: center;
  max-width: 740px;
  margin: 28px auto 0
}

.instagram {
  font-family: "Titillium Web", Arial, sans-serif;
  display: inline-block;
  margin-top: 13px;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase
}

.faq {
  background: #f8f8f8
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px
}

.faq-item {
  background: #fff;
  border: 1px solid var(--blue);
  margin-bottom: 9px
}

.faq-q {
  font-family: "Titillium Web", Arial, sans-serif;
  width: 100%;
  border: 0;
  background: none;
  color: var(--blue2);
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding: 17px 19px;
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase
}

.faq-a {
  display: none;
  padding: 0 19px 18px;
  color: #555;
  font-size: .9rem
}

.faq-item.open .faq-a {
  display: block
}

.faq-item.open .plus {
  transform: rotate(45deg)
}

.plus {
  transition: .2s
}

.faq-more {
  margin-top: 22px
}

.faq-more .btn {
  display: inline-block
}

/* Página de preguntas frecuentes (clases propias, no tocan .faq del index) */
.faqpage-hero {
  background: var(--blue);
  color: #fff;
  padding: 170px 0 70px;
  text-align: center;
  border-radius: 0 0 var(--radius) var(--radius)
}

.faqpage-hero .eyebrow {
  color: #ffd8d9
}

.faqpage-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  letter-spacing: -.04em;
  margin: 12px 0 18px
}

.faqpage-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .88);
  font-size: 1.05rem
}

.faqpage {
  background: #f8f8f8;
  padding: 70px 0 92px
}

.faq-list {
  max-width: 860px;
  margin: 0 auto
}

.faq-list .faq-a a {
  color: var(--blue);
  font-weight: 700
}

@media (max-width: 900px) {
  .faqpage-hero {
    padding: 130px 0 50px
  }
  .faqpage {
    padding: 46px 0 64px
  }
  .faq-list {
    max-width: none
  }
}

.contact {
  background: var(--red);
  color: #fff
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 55px;
  align-items: stretch
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.form input,
.form textarea {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .85);
  color: #fff;
  padding: 13px
}

.form input::placeholder,
.form textarea::placeholder {
  color: #fff
}

.form .full {
  grid-column: 1/-1
}

.form textarea {
  min-height: 125px
}

.contact-art {
  min-height: 500px;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .55)
}

.contact-art img {
  filter: brightness(0) invert(1)
}

footer {
  background: var(--blue);
  color: #fff;
  padding: 44px 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 45px
}

.footer-grid>img {
  filter: brightness(0) invert(1);
  width: 105px
}

.footer-links {
  font-family: "Varela Round", Arial, sans-serif;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase
}

.social {
  display: flex;
  gap: 8px
}

.social span {
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: .65s
}

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

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

  .hero-copy {
    padding: 58px 20px 34px
  }

  .hero-art {
    min-height: auto;
    padding: 12px 18px 42px;
    border-left: 0
  }

  .hero-art img {
    max-height: none
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 4.2rem)
  }

  .links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 20px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start
  }

  .links.open {
    display: flex
  }

  .menu {
    display: block
  }

  .hero-grid,
  .strategy-head,
  .format-intro,
  .tools-grid,
  .feature-row,
  .who-grid,
  .night-head,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .hero-copy {
    padding: 80px 24px
  }

  .hero-art {
    min-height: 380px;
    border-left: 0
  }

  .skill {
    grid-column: span 6
  }

  .format-grid,
  .format-grid.two {
    grid-template-columns: 1fr 1fr
  }

  .tools-sticky {
    position: static
  }

  .feature-row.reverse .feature-art {
    order: 2
  }

  .feature-copy,
  .feature-row.reverse .feature-copy {
    padding: 65px 28px
  }

  .numbers {
    grid-template-columns: repeat(2, 1fr)
  }

  .night-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-links {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .who-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 220px 220px
  }

  .who-photo:first-child {
    grid-column: auto
  }

  .wrap {
    width: calc(100% - 28px)
  }

  .section {
    padding: 70px 0
  }

  .skill {
    grid-column: span 12
  }

  .format-grid,
  .format-grid.two,
  .micro-cards,
  .mission-grid,
  .numbers,
  .form {
    grid-template-columns: 1fr
  }

  .tool {
    grid-template-columns: 70px 1fr
  }

  .tool-icon {
    height: 70px
  }

  .statement {
    padding: 28px 18px
  }

  .hero h1 {
    font-size: 3rem
  }

  .form .full {
    grid-column: auto
  }

  .footer-links {
    grid-template-columns: 1fr
  }
}

/* Ajustes solicitados: Covik Sans Mono, escala más compacta y placeholders diferenciados */
body,
button,
input,
textarea {
  font-family: "Covik Sans Mono", ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace
}

.wrap {
  width: min(1080px, calc(100% - 36px))
}

.section {
  padding: 64px 0
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.55rem);
  letter-spacing: -.035em;
  margin: 9px 0 20px
}

body {
  font-size: 14px;
  line-height: 1.48
}

.eyebrow {
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: .68rem
}

.btn {
  padding: 11px 16px;
  font-size: .67rem
}

header {
  height: 68px
}

.logo img {
  width: 66px;
  height: 48px
}

.links {
  font-size: .62rem;
  gap: 17px
}

.hero {
  padding-top: 68px;
  min-height: 620px
}

.hero-grid {
  min-height: 552px;
  grid-template-columns: 1fr 1fr
}

.hero-copy {
  padding-top: 58px;
  padding-bottom: 58px
}

.hero-art {
  min-height: 552px
}

.hero h1 {
  font-size: clamp(2.65rem, 5vw, 5.2rem);
  margin: 10px 0 16px
}

.hero p {
  font-size: .92rem;
  max-width: 580px
}

.strategy-head {
  gap: 46px;
  margin-bottom: 30px
}

.strategy-head p {
  font-size: .92rem
}

.skill {
  min-height: 190px;
  padding: 21px
}

.skill-icon {
  width: 50px;
  height: 50px
}

.skill h3 {
  font-size: 1.15rem
}

.strategy-visual {
  height: 235px
}

.statement {
  margin-top: 24px;
  padding: 28px 30px;
  font-size: clamp(1.05rem, 1.8vw, 1.65rem)
}

.format-intro {
  gap: 42px;
  margin-bottom: 28px
}

.format {
  padding: 21px;
  min-height: 235px
}

.format-icon {
  width: 44px;
  height: 44px
}

.format h3 {
  font-size: .98rem;
  margin: 16px 0 8px
}

.format p {
  font-size: .8rem
}

.value {
  padding: 17px 22px;
  font-size: .77rem
}

.tools-grid {
  gap: 48px
}

.tools-sticky {
  top: 94px
}

.tool-list {
  gap: 10px
}

.tool {
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 19px
}

.tool-icon {
  height: 70px
}

.tool h3 {
  font-size: 1.08rem
}

.tool p {
  font-size: .8rem
}

.feature-copy,
.feature-row.reverse .feature-copy {
  padding-top: 58px;
  padding-bottom: 58px
}

.feature-art {
  min-height: 440px
}

.feature-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.55rem)
}

.micro-cards {
  margin-top: 22px
}

.micro {
  padding: 14px;
  min-height: 100px;
  font-size: .78rem
}

.who-grid {
  gap: 42px
}

.who-art {
  min-height: 420px
}

.mission-grid {
  margin-top: 22px
}

.mission {
  padding: 17px
}

.numbers {
  margin-top: 26px
}

.number {
  min-height: 145px;
  padding: 20px 16px
}

.number strong {
  font-size: clamp(1.85rem, 3vw, 3.2rem)
}

.night-grid {
  margin-top: 26px
}

.night-image {
  height: 245px
}

.night-card-copy {
  padding: 15px
}

.night-card-copy h3 {
  font-size: .92rem
}

.night-card-copy p {
  font-size: .7rem
}

.faq-grid {
  gap: 48px
}

.faq-q {
  padding: 14px 16px;
  font-size: .7rem
}

.faq-a {
  font-size: .8rem
}

.contact-grid {
  gap: 42px
}

.contact-art {
  min-height: 400px
}

.form input,
.form textarea {
  padding: 10px
}

.form textarea {
  min-height: 105px
}

.placeholder img {
  width: min(26%, 160px)
}

.illustration-placeholder img {
  width: min(72%, 520px);
  max-height: 82%;
  object-fit: contain;
  filter: none;
  opacity: 1
}

.hero-art.illustration-placeholder img,
.contact-art.illustration-placeholder img {
  filter: none
}

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

  .hero-copy {
    padding: 58px 20px 34px
  }

  .hero-art {
    min-height: auto;
    padding: 12px 18px 42px;
    border-left: 0
  }

  .hero-art img {
    max-height: none
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 4.2rem)
  }

  body {
    font-size: 13px
  }

  .section {
    padding: 50px 0
  }

  .hero-grid {
    min-height: auto
  }

  .hero-copy {
    padding: 50px 22px
  }

  .hero-art {
    min-height: 390px
  }

  .feature-art,
  .who-art,
  .contact-art {
    min-height: 340px
  }

  .skill {
    min-height: 165px
  }

  .night-image {
    height: 220px
  }

  .illustration-placeholder img {
    width: min(78%, 440px)
  }
}


/* Ajuste final: escala más compacta y editorial */
:root {
  --radius: 16px
}

.section {
  padding: 68px 0
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.7rem);
  margin: 10px 0 20px
}

.hero {
  min-height: 640px
}

.hero-grid {
  min-height: 562px
}

.hero-copy {
  padding-top: 64px;
  padding-bottom: 64px
}

.hero-art {
  min-height: 562px
}

.hero h1 {
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  max-width: 700px
}

.hero p {
  font-size: .96rem
}

.strategy-head {
  gap: 48px;
  margin-bottom: 30px
}

.strategy-head p {
  font-size: .95rem
}

.skill {
  min-height: 210px;
  padding: 23px
}

.skill h3 {
  font-size: 1.25rem
}

.strategy-visual {
  height: 255px
}

.statement {
  padding: 30px 34px;
  font-size: clamp(1.15rem, 2vw, 1.8rem)
}

.format-intro {
  gap: 42px;
  margin-bottom: 28px
}

.format {
  min-height: 250px;
  padding: 23px
}

.format h3 {
  font-size: 1rem
}

.format p,
.tool p,
.feature-copy p,
.night-card-copy p {
  font-size: .82rem
}

.tools-grid {
  gap: 48px
}

.tool {
  grid-template-columns: 72px 1fr;
  padding: 20px
}

.tool-icon {
  height: 72px
}

.tool h3 {
  font-size: 1.1rem
}

.feature-copy,
.feature-row.reverse .feature-copy {
  padding-top: 64px;
  padding-bottom: 64px
}

.feature-art {
  min-height: 470px
}

.feature-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.6rem)
}

.micro {
  min-height: 105px;
  padding: 15px;
  font-size: .78rem
}

.who-grid {
  gap: 42px
}

.who-art {
  min-height: 430px
}

.mission {
  padding: 18px
}

.numbers {
  gap: 10px
}

.number {
  min-height: 155px;
  padding: 20px 17px
}

.number strong {
  font-size: clamp(2rem, 3.2vw, 3.4rem)
}

.night-grid {
  gap: 13px
}

.night-image {
  height: 280px
}

.night-card-copy {
  padding: 17px
}

.faq-grid,
.contact-grid {
  gap: 48px
}

.contact-art {
  min-height: 430px
}

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

  .hero-copy {
    padding: 58px 20px 34px
  }

  .hero-art {
    min-height: auto;
    padding: 12px 18px 42px;
    border-left: 0
  }

  .hero-art img {
    max-height: none
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 4.2rem)
  }

  .section {
    padding: 52px 0
  }

  .hero {
    min-height: auto
  }

  .hero-grid {
    min-height: auto
  }

  .hero-copy {
    padding: 60px 20px 48px
  }

  .hero-art {
    min-height: 300px
  }

  .skill {
    min-height: 185px
  }

  .feature-art {
    min-height: 320px
  }

  .who-art {
    min-height: 340px
  }

  .night-image {
    height: 250px
  }

  .contact-art {
    min-height: 300px
  }
}

/* Ajustes de escala solicitados */
@media (min-width:901px) {
  header {
    height: 92px
  }

  .logo img {
    width: 96px;
    height: 70px
  }

  .links {
    font-size: .74rem;
    gap: 24px;
    letter-spacing: .015em
  }

  .hero {
    padding-top: 92px;
    min-height: 650px
  }

  .hero-grid {
    min-height: 558px;
    grid-template-columns: .92fr 1.08fr
  }

  .hero-copy {
    padding-top: 52px;
    padding-bottom: 52px
  }

  .hero h1 {
    font-size: clamp(2.7rem, 3.75vw, 4.45rem);
    line-height: .98;
    letter-spacing: -.045em;
    max-width: 660px;
    margin: 10px 0 18px
  }

  .hero p {
    font-size: .88rem;
    line-height: 1.65;
    max-width: 570px
  }

  .hero .eyebrow {
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: .72rem
  }

  .hero-art {
    min-height: 558px;
    padding: 30px 44px
  }

  .hero-art img {
    max-height: 505px
  }

  .hero-actions .btn {
    font-size: .68rem;
    padding: 12px 15px
  }
}

@media (max-width:900px) {
  header {
    height: 76px
  }

  .logo img {
    width: 78px;
    height: 56px
  }

  .links {
    top: 76px;
    font-size: .78rem
  }

  .hero {
    padding-top: 76px
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9.5vw, 3.45rem);
    line-height: 1;
    letter-spacing: -.04em
  }

  .hero p {
    font-size: .9rem
  }
}


.format {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.format-art {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  background: transparent;
  overflow: visible;
  padding: 4px 0 0
}

.format-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.tools-illustration {
  margin: 22px 0 0;
  background: #f7f3e9;
  border: 1px solid var(--line);
  padding: 12px
}

.tools-illustration img {
  width: 100%;
  height: auto;
  display: block
}

@media(max-width:900px) {
  .format-art {
    height: 150px
  }
}


/* Integración final — El juego como estrategia */
.strategy-banner {
  height: auto;
  min-height: 0;
  margin-top: 18px;
  border: 1px solid #dbe1f2;
  background: #fbfcff;
  overflow: hidden;
  padding: 18px 20px
}

.strategy-banner img {
  width: 100%;
  height: auto;
  display: block
}

.skill-icon img {
  filter: none
}

@media(max-width:700px) {
  .strategy-banner {
    padding: 8px;
    margin-top: 12px
  }

  .strategy-banner img {
    min-width: 760px;
    transform: translateX(-10%)
  }

  .strategy-banner {
    overflow: hidden
  }
}

/* Ajuste final: ilustración panorámica e íconos del mismo sistema visual */
.skill-icon {
  width: 92px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start
}

.skill-icon img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: none
}

.strategy-banner {
  height: auto;
  min-height: 0;
  padding: 0;
  margin-top: 18px;
  border: 0;
  background: #fff;
  overflow: hidden
}

.strategy-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 1530/395;
  object-fit: cover;
  object-position: center;
  display: block
}

@media(max-width:900px) {
  .skill-icon {
    width: 78px;
    height: 72px
  }

  .strategy-banner img {
    min-width: 980px;
    transform: translateX(-12%);
    aspect-ratio: auto
  }
}

@media(max-width:700px) {
  .strategy-banner {
    padding: 0;
    margin-top: 12px
  }

  .strategy-banner img {
    min-width: 900px;
    transform: translateX(-18%)
  }
}

/* Ajustes finales solicitados */
.hero h1 {
  text-transform: none
}

.format-art {
  height: 190px;
  padding: 8px 0 2px
}

.format-art img {
  object-fit: contain
}

.tools-grid {
  grid-template-columns: .78fr 1.22fr;
  gap: 76px
}

.tools-sticky p {
  max-width: 440px
}

.tool-list {
  gap: 18px
}

.tool {
  grid-template-columns: 132px 1fr;
  gap: 28px;
  padding: 28px 30px;
  align-items: start;
  border-color: #d7dcef;
  box-shadow: 0 10px 28px rgba(25, 50, 130, .05)
}

.tool-icon {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f3e9;
  border: 1px solid #e7dfcf;
  padding: 12px;
  overflow: hidden
}

.tool-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.tool h3 {
  margin: 3px 0 10px
}

.feature-row {
  min-height: 620px;
  align-items: stretch
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 96px
}

.feature-copy h2 {
  margin-bottom: 30px
}

.feature-copy p {
  line-height: 1.72;
  margin-bottom: 0
}

.feature-row.reverse .feature-copy {
  padding-top: 96px;
  padding-bottom: 96px
}

.micro-cards {
  gap: 14px;
  margin-top: 36px
}

.micro {
  padding: 20px;
  min-height: 132px;
  line-height: 1.5
}

@media(max-width:900px) {
  .format-art {
    height: 170px
  }

  .tools-grid {
    gap: 38px
  }

  .tool {
    grid-template-columns: 108px 1fr;
    gap: 22px;
    padding: 24px
  }

  .tool-icon {
    height: 100px
  }

  .feature-row {
    min-height: 0
  }

  .feature-copy,
  .feature-row.reverse .feature-copy {
    padding: 68px 28px
  }

  .feature-copy h2 {
    margin-bottom: 24px
  }

  .micro-cards {
    margin-top: 28px
  }
}

@media(max-width:600px) {
  .format-art {
    height: 155px
  }

  .tool {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 16px
  }

  .tool-icon {
    width: 100%;
    height: 150px
  }

  .feature-copy,
  .feature-row.reverse .feature-copy {
    padding: 54px 22px
  }

  .feature-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem)
  }

  .micro {
    min-height: auto
  }
}

/* Correcciones puntuales V3: ilustraciones pendientes y altura de Quiénes somos */
.feature-art.completed-illustration,
.contact-art.completed-illustration {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-art.completed-illustration img,
.contact-art.completed-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-grid {
  align-items: stretch
}

.who-collage {
  height: 100%;
  min-height: 0;
  grid-template-rows: minmax(0, 1.15fr) minmax(0, .85fr);
}

.who-photo {
  position: relative;
  min-width: 0;
  min-height: 0
}

.who-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

@media(max-width:900px) {
  .who-collage {
    height: 620px;
    min-height: 620px
  }
}

@media(max-width:600px) {
  .who-collage {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 230px)
  }

  .who-photo:first-child {
    grid-column: auto
  }
}

/* Ajustes solicitados V4 — aplicados sobre el HTML */
.hero-brand {
  color: var(--red) !important
}

@media(min-width:901px) {
  .hero h1 {
    font-size: clamp(2.55rem, 3.55vw, 4.2rem)
  }
}

.statement {
  border-bottom: 10px solid var(--red);
  font-size: clamp(1rem, 1.55vw, 1.42rem);
  line-height: 1.55;
  padding: 25px 32px
}

.format h3 {
  font-size: 1.13rem;
  line-height: 1.2
}

.tool-list {
  gap: 10px
}

.tool {
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 16px 20px;
  align-items: center
}

.tool-icon {
  height: 82px;
  padding: 4px;
  background: transparent;
  border: 0
}

.tool-icon img {
  object-fit: contain
}

.tool h3 {
  margin: 0 0 6px
}

.feature-row {
  min-height: 540px
}

.feature-copy,
.feature-row.reverse .feature-copy {
  padding-top: 70px;
  padding-bottom: 70px
}

.feature-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  line-height: 1.08;
  margin-bottom: 22px
}

.feature-copy p {
  font-size: .92rem;
  line-height: 1.65
}

.feature-row.gray .feature-copy {
  padding-left: max(42px, calc((100vw - 1160px)/2));
  padding-right: 50px
}

.feature-row.blue.reverse .feature-copy {
  padding-left: 50px;
  padding-right: max(42px, calc((100vw - 1160px)/2))
}

.feature-art.completed-illustration {
  padding: 34px;
  background: #f7f3e9
}

.feature-row.blue .feature-art.completed-illustration {
  background: #fff
}

.feature-art.completed-illustration img {
  object-fit: contain;
  width: 100%;
  height: 100%
}

.who-copy strong {
  color: var(--blue2)
}

.numbers {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.number {
  aspect-ratio: 1/1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: 1px solid #d7dcef;
  border-bottom: 7px solid var(--blue)
}

.impact {
  margin-top: 18px;
  background: var(--blue);
  color: #fff;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center
}

.impact-label {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff
}

.impact p {
  margin: 0
}

.faq-item {
  background: var(--blue);
  border-color: var(--blue);
  overflow: hidden
}

.faq-q {
  background: var(--blue);
  color: #fff
}

.faq-item.open {
  background: #fff
}

.faq-item.open .faq-q {
  background: #fff;
  color: var(--blue2)
}

.faq-item.open .faq-a {
  background: #fff;
  color: #555;
  padding-top: 0
}

.contact-art.completed-illustration {
  background: rgba(255, 255, 255, .16);
  padding: 34px
}

.contact-art.completed-illustration img {
  object-fit: contain;
  filter: none;
  width: 100%;
  height: 100%
}

footer {
  padding: 48px 0 20px
}

.footer-grid {
  grid-template-columns: 180px 1fr auto;
  align-items: start;
  gap: 48px
}

.footer-brand img {
  width: 115px
}

.footer-brand p {
  font-size: .72rem;
  margin: 12px 0 0;
  opacity: .8
}

.footer-links {
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 12px 28px;
  font-size: .68rem
}

.footer-contact>span {
  display: block;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px
}

.social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  display: grid;
  place-items: center
}

.social a i {
  font-size: 17px;
  color: #fff;
  line-height: 1
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .2);
  margin-top: 34px;
  padding-top: 18px;
  font-size: .65rem;
  opacity: .7
}

@media(max-width:900px) {
  .tool {
    grid-template-columns: 82px 1fr
  }

  .feature-row.gray .feature-copy,
  .feature-row.blue.reverse .feature-copy {
    padding: 56px 28px
  }

  .feature-row.reverse .feature-art {
    order: 0
  }

  .numbers {
    grid-template-columns: repeat(2, 1fr)
  }

  .impact {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-contact {
    grid-column: 1/-1
  }
}

@media(max-width:600px) {
  .format h3 {
    font-size: 1.05rem
  }

  .tool {
    grid-template-columns: 72px 1fr;
    padding: 14px;
    gap: 14px
  }

  .tool-icon {
    height: 70px
  }

  .feature-art.completed-illustration {
    min-height: 300px;
    padding: 20px
  }

  .feature-copy h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.65rem)
  }

  .feature-copy p {
    font-size: .86rem
  }

  .numbers {
    grid-template-columns: 1fr 1fr
  }

  .number {
    padding: 14px 10px
  }

  .number strong {
    font-size: 1.8rem
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-links {
    grid-template-columns: 1fr
  }

  .footer-contact {
    grid-column: auto
  }
}

/* Ajustes generales V5 */
.section {
  padding: 76px 0
}

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

@media(max-width:600px) {
  .section {
    padding: 46px 0
  }
}

/* Hero: más lugar para texto y menos aire alrededor de la ilustración */
@media(min-width:901px) {
  .hero-grid {
    grid-template-columns: 1.08fr .92fr
  }

  .hero-copy {
    padding-right: 28px
  }

  .hero-art {
    padding: 18px 22px
  }

  .hero-art img {
    max-height: 530px
  }

  .hero h1 {
    max-width: 760px
  }
}

/* Herramientas: placeholder simple, compacto y alineado arriba */
.tool {
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 14px 18px;
  align-items: start
}

.tool-icon {
  width: 70px;
  height: 70px;
  padding: 7px;
  display: flex;
  align-items: flex-start;
  justify-content: center
}

.tool-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: none
}

.tool-list {
  gap: 8px
}

@media(max-width:600px) {
  .tool {
    grid-template-columns: 58px 1fr;
    gap: 13px
  }

  .tool-icon {
    width: 58px;
    height: 58px;
    padding: 5px
  }
}

/* Play to Win: destacar los tres atributos */
.micro-cards {
  gap: 14px;
  margin-top: 28px
}

.micro {
  position: relative;
  min-height: 176px;
  padding: 24px 20px 20px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 16px;
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 12px 28px rgba(6, 22, 71, .18);
  overflow: hidden
}

.micro:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: var(--red)
}

.micro b {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  margin: 5px 0 12px;
  color: #fff
}

.micro:nth-child(2):before {
  background: #fff
}

.micro:nth-child(3):before {
  background: #f6b940
}

@media(max-width:600px) {
  .micro {
    min-height: auto;
    padding: 22px 18px 18px
  }
}

/* Quiénes somos */
.who-copy strong {
  color: inherit
}

/* Números animados */
.number strong {
  font-variant-numeric: tabular-nums
}

/* Contacto */
.contact-art.completed-illustration {
  background: transparent;
  padding: 0
}

.contact .form .btn {
  font-size: .86rem;
  padding: 15px 22px
}

.contact-data {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin: 18px 0 26px;
  padding: 0
}

.contact-data a,
.contact-data span {
  color: #fff;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.contact-data a:hover {
  text-decoration: underline
}

/* Footer */
.footer-brand img {
  width: 155px
}

.footer-links {
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  text-transform: none;
  font-size: .76rem;
  font-weight: 700
}

.footer-contact>span {
  text-transform: none;
  font-size: .78rem
}

.footer-brand p {
  text-transform: none
}

@media(max-width:900px) {
  .footer-links {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    grid-template-rows: repeat(3, auto)
  }
}

@media(max-width:600px) {
  .footer-brand img {
    width: 145px
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 12px 18px
  }
}


/* Pulido tipográfico V7 */
body,
button,
input,
textarea {
  font-family: "Varela Round", Arial, sans-serif
}

h1,
h2,
h3,
.eyebrow,
.btn,
.links,
.format-group-title,
.instagram,
.faq-q {
  font-family: "Titillium Web", Arial, sans-serif
}

/* Titillium Black quedaba demasiado cerrado: pesos y tracking más respirados */
h1,
h2 {
  font-weight: 700;
  letter-spacing: .012em
}

h3 {
  font-weight: 600;
  letter-spacing: .016em
}

.hero h1 {
  font-weight: 700;
  line-height: .98;
  letter-spacing: .018em
}

h2 {
  line-height: 1.03
}

.eyebrow,
.btn,
.links,
.format-group-title,
.instagram,
.faq-q {
  font-weight: 700
}

/* Jerarquías secundarias */
.strategy-head p,
.format-intro p,
.tools-sticky p {
  font-size: 1.08rem;
  line-height: 1.68
}

.skill h3 {
  font-size: 1.68rem;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: .018em
}

.format h3 {
  font-size: 1.34rem;
  line-height: 1.15;
  font-weight: 700
}

.tool h3 {
  font-size: 1.48rem;
  line-height: 1.15;
  font-weight: 700
}

.feature-copy h2 {
  font-weight: 700;
  letter-spacing: .012em
}

.feature-copy p {
  font-size: 1rem;
  line-height: 1.72
}

.micro b {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .01em
}

.mission h3 {
  font-size: 1.12rem;
  font-weight: 700
}

.night-card-copy h3 {
  font-size: 1.2rem;
  line-height: 1.16;
  font-weight: 700
}

.night-card-copy p {
  font-size: .88rem;
  line-height: 1.55
}

.night-copy p {
  font-size: 1.02rem;
  line-height: 1.68
}

.faq-q {
  font-size: .88rem;
  letter-spacing: .012em
}

.contact h2 {
  font-weight: 700
}

/* Los números sí conservan el peso Black */
.number strong,
.impact-label {
  font-family: "Titillium Web", Arial, sans-serif;
  font-weight: 900
}

.number strong {
  font-size: clamp(3rem, 5vw, 4.8rem);
  letter-spacing: -.015em
}

/* Líneas de lectura más cómodas */
.strategy-head p,
.format-intro p,
.tools-sticky p,
.feature-copy p,
.who-copy>p,
.night-copy p,
.faq-a {
  max-width: 680px
}

@media(max-width:900px) {
  .format h3 {
    font-size: 1.24rem
  }

  .tool h3 {
    font-size: 1.36rem
  }

  .strategy-head p,
  .format-intro p,
  .tools-sticky p {
    font-size: 1rem
  }

  .feature-copy p {
    font-size: .96rem
  }
}

@media(max-width:600px) {
  .hero h1 {
    letter-spacing: .012em;
    line-height: 1
  }

  h2 {
    letter-spacing: .008em
  }

  .skill h3 {
    font-size: 1.45rem
  }

  .format h3 {
    font-size: 1.16rem
  }

  .tool h3 {
    font-size: 1.2rem
  }

  .feature-copy p {
    font-size: .94rem
  }

  .night-card-copy h3 {
    font-size: 1.08rem
  }

  .number strong {
    font-size: 2.15rem
  }
}


/* Correcciones puntuales V8 */
/* Estrategia: borde inferior gris */
.statement {
  border-bottom-color: #cfd2d8;
}

/* Formatos: mayor presencia para el texto de valor agregado */
.value {
  font-size: 1rem;
  line-height: 1.7;
  padding: 22px 26px;
}

/* Play to Win: evitar cortes en títulos largos */
.micro {
  min-width: 0;
}

.micro b {
  font-size: clamp(.9rem, 1.05vw, 1.02rem);
  line-height: 1.18;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  max-width: 100%;
}

/* La Nave en números: grilla estable durante y después de la animación */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.number {
  aspect-ratio: auto;
  min-width: 0;
  min-height: 180px;
  height: 100%;
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.number strong {
  display: block;
  width: 100%;
  font-size: clamp(2.35rem, 3.5vw, 4rem);
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.number span {
  display: block;
  width: 100%;
  margin-top: 14px;
  line-height: 1.45;
}

@media(max-width:900px) {
  .numbers {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .number {
    min-height: 165px
  }

  .number strong {
    font-size: clamp(2.35rem, 7vw, 3.7rem)
  }
}

@media(max-width:600px) {
  .value {
    font-size: .94rem;
    padding: 20px 18px
  }

  .micro b {
    font-size: 1rem
  }

  .numbers {
    grid-template-columns: 1fr
  }

  .number {
    min-height: 150px
  }

  .number strong {
    font-size: clamp(2.5rem, 12vw, 3.6rem)
  }
}


/* Ajustes V9: títulos de Play to Win y logos corregidos */
.micro b {
  text-transform: none;
  font-size: clamp(.86rem, .92vw, .96rem);
  line-height: 1.16;
  letter-spacing: .005em;
  overflow-wrap: normal;
  word-break: normal;
}

.logo img,
.footer-brand img {
  object-fit: contain
}

@media(max-width:1100px) {
  .micro b {
    font-size: .88rem
  }
}

@media(max-width:760px) {
  .micro b {
    font-size: 1rem
  }
}

/* V15 — ilustraciones hero-style para secciones de procesos */
.feature-art.completed-illustration {
  background: transparent !important;
  padding: 24px 34px;
  overflow: hidden
}

.feature-row.gray .feature-art.completed-illustration {
  background: #ededed !important
}

.feature-row.blue .feature-art.completed-illustration {
  background: var(--blue) !important
}

.feature-art.completed-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none
}

@media(max-width:900px) {
  .feature-art.completed-illustration {
    padding: 22px;
    min-height: 390px
  }
}

@media(max-width:600px) {
  .feature-art.completed-illustration {
    padding: 16px;
    min-height: 300px
  }
}

/* Cinco ilustraciones independientes: mayor presencia y recorte limpio */
.format-art {
  height: 220px;
  padding: 0;
  margin: 0 0 14px;
  overflow: hidden
}

.format-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

/* Contacto sin ilustración, formulario centrado sobre fondo rojo */
.contact-centered {
  display: flex;
  justify-content: center
}

.contact-content {
  width: min(100%, 820px);
  text-align: center
}

.contact-content>p {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px
}

.contact-content .form {
  text-align: left;
  margin-top: 28px
}

.contact-content .form .btn {
  grid-column: 1/-1;
  justify-self: center;
  min-width: 210px;
  text-align: center
}

@media(max-width:900px) {
  .format-art {
    height: 195px
  }

  .contact-content {
    width: min(100%, 720px)
  }
}

@media(max-width:600px) {
  .format-art {
    height: 180px
  }

  .contact-content .form .btn {
    width: 100%
  }
}

/* Sección Gamificación y Competencias: dos columnas de texto */
.feature-text-only {
  padding: 0;
  background: #ededed
}

.feature-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  margin: 0 auto
}

.feature-text-card {
  padding: 82px clamp(38px, 5vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 620px
}

.feature-text-card-light {
  background: #ededed;
  color: var(--ink)
}

.feature-text-card-blue {
  background: var(--blue);
  color: #fff
}

.feature-text-card h2 {
  font-size: clamp(1.9rem, 2.65vw, 2.85rem);
  line-height: 1.08;
  margin: 10px 0 28px;
  max-width: 650px
}

.feature-text-card p {
  font-size: 1rem;
  line-height: 1.72;
  max-width: 680px;
  margin: 0 0 20px
}

.feature-text-card .eyebrow {
  margin-bottom: 2px
}

.feature-text-card-blue .eyebrow {
  color: #fff
}

.feature-text-card-blue .micro {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .06);
  border-radius: 16px
}

.feature-text-card-blue .micro b {
  color: #fff;
  font-size: .96rem;
  line-height: 1.2
}

.feature-text-card .micro-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px
}

.feature-text-closing {
  grid-column: 1/-1;
  background: #fff;
  padding: 34px clamp(28px, 5vw, 76px);
  text-align: center;
  border-top: 1px solid rgba(10, 35, 72, .12)
}

.feature-text-closing p {
  margin: 0 auto;
  max-width: 1040px;
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--blue)
}

.feature-text-closing p::before,
.feature-text-closing p::after {
  content: '';
  display: inline-block;
  width: 34px;
  height: 3px;
  background: var(--red);
  vertical-align: middle;
  margin: 0 14px 5px;
  border-radius: 99px
}

@media(max-width:1050px) {
  .feature-text-grid {
    grid-template-columns: 1fr
  }

  .feature-text-card {
    min-height: 0;
    padding: 64px 36px
  }

  .feature-text-card .micro-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media(max-width:700px) {
  .feature-text-card {
    padding: 54px 22px
  }

  .feature-text-card h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem)
  }

  .feature-text-card .micro-cards {
    grid-template-columns: 1fr
  }

  .feature-text-card .micro {
    min-height: 0
  }

  .feature-text-closing {
    padding: 28px 22px
  }

  .feature-text-closing p::before,
  .feature-text-closing p::after {
    display: none
  }
}

/* V20 — fondo continuo y frase destacada debajo de las columnas */
.feature-text-only {
  background: #ededed;
  padding: 72px 0 0
}

.feature-text-closing {
  width: 100%;
  background: var(--red);
  padding: 38px clamp(28px, 6vw, 92px);
  border: 0;
  text-align: center
}

.feature-text-closing p {
  max-width: 1120px;
  color: #fff;
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
  line-height: 1.25
}

.feature-text-closing p::before,
.feature-text-closing p::after {
  background: rgba(255, 255, 255, .75)
}

.feature-text-grid {
  max-width: 1320px;
  gap: 28px;
  padding: 0 28px 54px
}

.feature-text-card {
  min-height: 0;
  border-radius: 24px;
  padding: 64px clamp(32px, 4vw, 62px);
  box-shadow: 0 16px 42px rgba(9, 35, 73, .1)
}

.feature-text-card-light {
  background: #fff
}

.feature-text-card-blue {
  background: var(--blue)
}

@media(max-width:1050px) {
  .feature-text-grid {
    padding: 0 22px 38px;
    gap: 22px
  }

  .feature-text-only {
    padding-top: 44px
  }
}

@media(max-width:700px) {
  .feature-text-closing {
    padding: 30px 22px
  }

  .feature-text-closing p {
    font-size: 1.35rem
  }

  .feature-text-grid {
    padding: 0 16px 24px
  }

  .feature-text-card {
    padding: 42px 22px;
    border-radius: 18px
  }
}

/* Accesibilidad y formulario */
.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: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0 0 6px 0
}

.skip-link:focus {
  left: 0
}

.form-status {
  grid-column: 1/-1;
  text-align: center;
  font-size: .9rem;
  padding: 8px 0;
  min-height: 1.5em
}

.form:has(.form-status:not(:empty)) {
  margin-bottom: 0
}

.contact-content .form .btn:disabled {
  opacity: .7;
  cursor: not-allowed
}

/* Herramientas: en mobile, texto arriba y listado de items abajo */
@media (max-width: 900px) {
  .tools-grid {
    grid-template-columns: 1fr
  }
  .tools-sticky {
    position: static
  }
}

/* Preloader personalizado: partida en marcha */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

#preloader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.preloader-scene {
  text-align: center;
  color: #fff
}

.preloader-logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 24px;
  animation: preloader-pulse 1.8s ease-in-out infinite
}

.preloader-text {
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .9
}

.preloader-dot {
  display: inline-block;
  animation: preloader-blink 1.4s infinite;
  opacity: .2
}

.preloader-dot:nth-of-type(2) {
  animation-delay: .2s
}

.preloader-dot:nth-of-type(3) {
  animation-delay: .4s
}

@keyframes preloader-pulse {
  0%, 100% {
    transform: scale(1)
  }
  50% {
    transform: scale(1.06)
  }
}

@keyframes preloader-blink {
  0%, 100% {
    opacity: .2
  }
  50% {
    opacity: 1
  }
}

@media (prefers-reduced-motion: reduce) {
  #preloader {
    transition: none
  }
  .wsp-float {
    animation: none
  }
}

/* Botón flotante de WhatsApp */
.wsp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  animation: wsp-bounce 2.4s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s
}

.wsp-float i {
  font-size: 30px;
  color: #fff;
  line-height: 1
}

.wsp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(37, 211, 102, .55)
}

@keyframes wsp-bounce {
  0%, 100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-7px)
  }
}

@media (max-width: 900px) {
  .wsp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px
  }
}