@font-face {
  font-family: 'Outfit';
    src: url('assets/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
    src: url('assets/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
    src: url('assets/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
    src: url('assets/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/grift-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/grift-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/grift-bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/grift-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/grift-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

:root {
  --ink: #1d1d1f;
  --gray: #86868b;
  --gray2: #6e6e73;
  --blue: #0605fe;
  --blue-dark: #0605fe;
  --bg: #ffffff;
  --bg2: #ededed;
  --line: #d2d2d7;
  --green: #3df099;
  --sf: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --outfit: 'Outfit', var(--sf);
  --grift: 'Grift', var(--sf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--outfit);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.47;
  font-size: 17px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.prod,
.eyebrow {
  font-family: var(--grift);
}

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

a {
  color: var(--blue);
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 17px
}

.link::after {
  content: "�";
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px)
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px
}

.wrap-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.chip input:focus-visible+span {
  outline: 3px solid #0071e3;
  outline-offset: 3px;
  border-radius: 6px
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1)
}

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

.reveal.d1 {
  transition-delay: .08s
}

.reveal.d2 {
  transition-delay: .16s
}

.reveal.d3 {
  transition-delay: .24s
}

.gnav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 84px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.gnav-in {
  max-width: 1024px;
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px
}

.gnav .brand {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em
}

.gnav .brand:hover {
  text-decoration: none
}

.gnav-links {
  display: flex;
  gap: 34px;
  font-size: 16px
}

.gnav-links a {
  color: #1d1d1f;
  opacity: .88
}

.gnav-links a:hover {
  opacity: 1;
  text-decoration: none
}

@media (max-width:720px) {
  .gnav-links {
    display: none
  }

  .herodomotica {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url(./assets/fondotranquilidad.png);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 5% 7%;
    margin: 0px 0;
  }

  .hero {
    position: relative;
    text-align: left;
    margin-bottom: 5dvh;
  }



  .herodomotica h2 {
    font-size: clamp(33px, 4.5vw, 46px);
    font-weight: 500;
    line-height: 1;
    max-width: 850px;
    margin: 0 auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
}

.subnav {
  position: sticky;
  top: 44px;
  z-index: 99;
  height: 52px;
  background: rgba(245, 245, 247, .72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.subnav-in {
  max-width: 1024px;
  margin: 0 auto;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px
}

.subnav .prod {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em
}

.subnav .prod span {
  color: var(--gray);
  font-weight: 400;
  margin-left: 8px;
  font-size: 17px
}

.subnav .btn-sm {
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  padding: 7px 16px;
  border-radius: 980px
}

.subnav .btn-sm:hover {
  background: var(--blue-dark);
  text-decoration: none
}

.hero {
  position: relative;
  text-align: left;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
  background: #000;
  padding: 0px 10dvh 10dvh 0px;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-media video,
.hero-media .fallback {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-media .fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 120% at 50% 15%, #1c3f57 0%, #0a1a24 60%, #000 100%)
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  width: 80vw;
}

.hero .eyebrow {
  font-size: clamp(1vw, 2.5vw, 3vw);
  font-weight: 800;
  color: #ffffff;

  margin-bottom: 4dvh;
}

.hero h1 {
  font-size: clamp(3vw, 6.5vw, 4vw);
  font-weight: 700;
  line-height: normal;
  
  margin: 6px 0 16px;
  /* max-width: 33ch; */
  font-family: 'Outfit';
}

.hero .desc {
  font-size: clamp(1.2vw, 1.4vw, 1.4vw);
  color: rgba(255, 255, 255, .85);

  margin: 0 0;
  text-align: left;
}

.hero a.brandlogo {
  position: absolute;
  text-align: left;
  /* margin-bottom: 4dvh; */
  display: block;
  top: 5dvh;
  left: 5vw;
  z-index: 99;

}

.hero .cta {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap
}

.hero .cta .link {
  color: #ffffff
}

.btn {
  display: inline-block;
  font-family: var(--outfit);
  font-size: 17px;
  border-radius: 980px;
  padding: 12px 26px;
  cursor: pointer;
  border: none;
  transition: background .2s, opacity .2s;
  letter-spacing: 0
}

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

.btn-primary:hover {
  background: var(--blue-dark);
  text-decoration: none
}

.hero .fineprint {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  margin-top: 20px
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 90%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bob 2s ease-in-out infinite
}

@keyframes bob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

.pulse {
  animation: pulse 2.8s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box
}

.pulse.d1 {
  animation-delay: .7s
}

.pulse.d2 {
  animation-delay: 1.4s
}

.pulse.d3 {
  animation-delay: 2.1s
}

@keyframes pulse {
  0% {
    opacity: .7;
    transform: scale(.6)
  }

  70% {
    opacity: 0;
    transform: scale(2.6)
  }

  100% {
    opacity: 0;
    transform: scale(2.6)
  }
}

.section {
  padding: 110px 0
}

.section.alt {
  background: var(--bg2)
}
#como {
  background-color: #eeefef;
}
.section-head {
  text-align: center;
  max-width: 80%;
    margin: 0 auto 60px;
    font-size: clamp(32px, 4.6vw, 48px);
    font-weight: 300;
    line-height: 1.07;
  margin-bottom: 14px;
    font-family: var(--outfit);
}


.section-head p {
  font-size: 21px;
  color: var(--gray2);
  line-height: 1.38
}

/* sticky scroll story */
.story {
  position: relative;
  height: 300vh;
  background: #0a1a24;
  color: #fff
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 130px 22px 44px
}

.story-scene {
  position: relative;
  width: min(500px, 82vw);
  flex: none
}

.story-captions {
  position: relative;
  width: 100%;
  height: 132px;
  text-align: center;
  pointer-events: none;
  margin-bottom: 14px
}

.story-cap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  transition: opacity .5s ease;
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em
}

.story-cap.on {
  opacity: 1
}

.story-cap small {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
  margin-top: 10px;
  letter-spacing: -0.01em
}

.node {
  opacity: .12;
  transition: opacity .4s ease
}

.node.on {
  opacity: 1
}

.ring {
  transition: opacity .4s ease;
  opacity: 0
}

.ring.on {
  opacity: 1;
  animation: pulse 2.4s ease-out infinite
}

.snode-label {
  font-family: var(--outfit);
  font-size: 12px;
  font-weight: 600;
  fill: #fff;
  opacity: 0;
  transition: opacity .4s ease
}

.snode-label.on {
  opacity: .9
}

/* pains */
.pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
}
@media (max-width:900px){.pains{grid-template-columns:1fr}}
.pain {
  background: transparent;
  border-radius: 0;
  padding: 10px;
  box-shadow: none;
  text-align: center
}

.pain .tag {
  display: inline-block;
  background: var(--blue);
  color: #3df099;
  border-radius: 980px;
  padding: 6px 20px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px
}

.pain .worry {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--grift);
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 30px
}

.pain .fix {
  font-size: 15px;
  color: var(--ink);
  padding: 0;
  border-top: none;
  display: block;
  margin-bottom: 18px;
  line-height: 1.4
}

.pain .fix .check {
  font-weight: bold;
  margin-right: 4px
}

.pain-bottom {
  font-size: 15px;
  font-weight: 600;
  margin-top: 24px;
  color: var(--ink)
}

/* claves section */
.claves {
  background: var(--blue);
  color: #fff;
  padding: 50px 0;
}

.claves-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

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

.claves-left {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 400px;
}

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

.claves-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.claves-overlay h2 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

@media (max-width:900px) {
  .claves-overlay h2 {
    font-size: 33px;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin: 0;
  }
}

.claves-logo {
  font-family: var(--grift);
  font-size: 72px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

.claves-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clave-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.clave-item:last-child {
  border-bottom: none;
}

.clave-tag {
  color: #3df099;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.clave-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.clave-item p {
  font-size: 14px;
  color: #fff;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 12px;
      font-weight: 600;
}

.clave-item p:last-child {
  margin-bottom: 0;
}

/* Programa */
.programa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.pcard,
.pcard-condiciones {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pcard-title,
.condiciones-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.pcard-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pcard-list li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #333;
}

.pcard-list li:last-child {
  margin-bottom: 0;
}

.pcard-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}

.pill-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill-item {
  background: var(--bg-alt, #f4f6f8);
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  color: var(--black, #111);
}

/* three-up */
.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

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

.mini h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 14px 0 8px
}

.mini p {
  font-size: 16px;
  color: var(--gray2)
}

.mini .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  justify-content: center
}

/* steps */
.steps {
    display: flex;
      margin: 0 auto;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: center;
    
    }
    
    .steps .step {
      display: flex;
      width: 40%;
      max-width: 500px;
      min-height: 150px;
      background-color: #ffffff;
      padding: 34px;
      border-radius: 30px;
      margin: 20px;
      align-items: center;
    }

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

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

.step {
  text-align: center
}

.step .num {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--blue)
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px
}

.step p {
  font-size: 16px;
  color: var(--gray2)
}

.privacy {
  max-width: 860px;
  margin: 56px auto 0;
  background: #0a1a24;
  color: #fff;
  border-radius: 22px;
  padding: 44px 46px;
  display: flex;
  gap: 24px;
  align-items: flex-start
}

@media (max-width:560px) {
  .privacy {
    flex-direction: column;
    padding: 32px 26px
  }
}

.privacy .lock {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center
}

.privacy h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px
}

.privacy p {
  font-size: 17px;
  color: rgba(255, 255, 255, .82)
}


.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
  text-align: center
}

.stat {
  padding: 0 40px;
  border-left: 1px solid var(--line)
}

.stat:first-child {
  border-left: none
}

@media (max-width:640px) {
  .stat {
    border-left: none;
    padding: 14px 24px
  }
}

.stat b {
  display: block;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1
}

.stat span {
  font-size: 21px;
  color: var(--gray)
}

/* form */
.form-card {
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 52px 56px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .08)
}

@media (max-width:640px) {
  .form-card {
    padding: 34px 24px;
    border-radius: 22px
  }
}

.form-card h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 12px;
    color: var(--blue);
}

.form-card>p.intro {
  font-size: 19px;
  color: var(--gray2);
  text-align: center;
  max-width: 50ch;
  margin: 0 auto 40px
}

fieldset {
  border: none;
  margin-bottom: 34px
}

legend {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line)
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

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

label.f {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 7px
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  font-family: var(--outfit);
  font-size: 17px;
  color: var(--ink);
  background: var(--bg2);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .15s, background .15s
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue)
}

textarea {
  resize: vertical;
  min-height: 110px
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2386868b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px
}

.chip input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px
}

.chip span {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 980px;
  padding: 11px 20px;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
  transition: all .15s
}

.chip input:checked+span {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff
}

.spacer {
  height: 20px
}

.hint {
  font-size: 14px;
  color: var(--gray);
  margin-top: 8px
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--gray2);
  margin: 8px 0 30px;
  line-height: 1.45
}

.consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  flex: none
}

.submit-wrap {
  text-align: center
}

.btn-submit {
  background: var(--blue);
  color: #fff;
  font-size: 19px;
  padding: 15px 44px
}

.btn-submit:hover {
  background: var(--blue-dark)
}

.btn-submit:disabled {
  background: var(--gray);
  cursor: default
}

.reqnote {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-top: 14px
}

.success {
  display: none;
  text-align: center;
  margin-top: 30px;
  padding: 32px;
  background: var(--bg2);
  border-radius: 18px
}

.success.show {
  display: block
}

.success .check {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #0000ff;
  display: flex;
  align-items: center;
  justify-content: center
}

.success h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px
}

.success p {
  font-size: 16px;
  color: var(--gray2);
  max-width: 46ch;
  margin: 0 auto
}

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

.faq details {
  border-bottom: 1px solid var(--line)
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center
}

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

.faq summary::after {
  content: "+";
  font-size: 30px;
  font-weight: 300;
  color: var(--blue);
  line-height: 1
}

.faq details[open] summary::after {
  content: "-"
}

.faq details p {
  font-size: 17px;
  color: var(--gray2);
  padding: 0 0 26px;
  max-width: 64ch;
  line-height: 1.5
}

footer {
  background: var(--bg2);
  padding: 38px 0;
  font-size: 12px;
  color: var(--gray)
}

footer .top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--gray2);
  line-height: 1.5
}

footer .bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

footer a {
  color: var(--gray2)
}

/* queremos section */
.queremos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .queremos-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.queremos-text p {
font-size: 18px;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
}

.queremos-cta {
  margin: 60px 0;
  text-align: center;
}

.queremos-cta .btn-wide {
  width: 100%;
  max-width: 320px;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  padding: 24px 24px 19px 24px;
  line-height: 13px;
}

.queremos-features {
  list-style: none;
}

.queremos-features li {
  font-size: 15px;
  position: relative;
  padding-left: 16px;
  color: var(--ink);
}

.queremos-features li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.queremos-image {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.queremos-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.queremos-overlay {
  position: absolute;
  top: 19%;
  right: 40px;
  transform: translateY(-50%);
  color: #fff;
  font-size: clamp(36px, 4vw, 48px);
  text-align: right;
  line-height: clamp(36px, 4vw, 48px);
  font-weight: 500;
  width: 64%;
}

@media (max-width: 600px) {
  .queremos-overlay {
    right: 20px;
  }
}

/* herodomotica section */
.herodomotica {
  position: relative;
  min-height: 375px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url(./assets/fondotranquilidad.png);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5% 20%;
  margin: 0px 0;
}

.herodomotica h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 500;
  line-height: 1.25;
  max-width: 850px;
  margin: 0 auto;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.tachado {
  color: red !important;
  text-decoration: line-through;
}

/* programa section */
.programa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pcard,
.pcard-condiciones {
  border-radius: 22px;
  padding: 20px;
}

.pcard {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pcard-condiciones {
  background: transparent;
  display: flex;
  flex-direction: column;
}

.pcard-title {
  font-family: var(--grift);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--blue);
  text-align: center;
}

.condiciones-title {
  font-family: var(--grift);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--blue);
  line-height: 1.2;
  text-align: center;
}

.pcard-list {
  list-style: none;
}

.pcard-list li {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--ink);
  line-height: 1.4;
  text-align: center;
  display: block;
}

.pcard-list li svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  color: var(--ink);
  margin-right: 4px;
  margin-top: -3px;
}

.pill-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  align-items: center;
}

.pill-item {
  background: var(--blue);
  padding: 14px 20px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--green);
  width: 100%;
  max-width: 260px;
}

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

/* comoazul section (slider) */
#comoazul {
  background: var(--blue);
  color: #fff;
  padding: 100px 0;
}

.comoazul-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.comoazul-header h2 {
  font-family: var(--grift);
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.comoazul-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.comoazul-icon svg {
  width: 100%;
  height: 100%;
}

.comoazul-slider-container {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.comoazul-slider {
  flex: 1;
  min-width: 0;
  /* Critical for Swiper inside flexbox */
}

/* Swiper classes adjustments */
.comoazul-slider-container .swiper-button-prev,
.comoazul-slider-container .swiper-button-next {
  position: static;
  /* override absolute position */
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.comoazul-slider-container .swiper-button-prev::after,
.comoazul-slider-container .swiper-button-next::after {
  display: none !important;
  /* Hide Swiper's default icon font */
}

.comoazul-slider-container .swiper-button-prev svg,
.comoazul-slider-container .swiper-button-next svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.comoazul-slider-container .swiper-button-prev:hover,
.comoazul-slider-container .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.comoazul-slider-container .swiper-button-disabled {
  opacity: 1;
    cursor: default;
  pointer-events: none;
}

/* Slide item */
.slider-item {
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 50px 30px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  /* Allow items to stretch to match Swiper's equal height behavior */
  min-height: 420px;
  background: transparent;
  box-sizing: border-box;
}

.slider-titulo {
  font-family: var(--outfit);
  font-size: 36px;
  font-weight: 600;
  color: #3df099;
  line-height: 1.15;
  margin-bottom: 40px;
}

.slider-parrafo {
  font-family: var(--outfit);
    font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-top: auto;
  font-weight: 600;
  /* push to bottom */
}

@media (max-width: 900px) {
  #comoazul {
    padding: 60px 0;
  }

  .comoazul-header {
    margin-bottom: 40px;
  }

  .comoazul-header h2 {
    font-size: 32px;
  }

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

  .comoazul-slider-container {
    gap: 15px;
  }

  .slider-item {
    padding: 35px 25px;
    min-height: 360px;
  }

  .slider-titulo {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {

  /* Hide prev/next buttons on mobile/tablet and let user swipe */
  .comoazul-slider-container .swiper-button-prev,
  .comoazul-slider-container .swiper-button-next {
    display: none !important;
  }

  .comoazul-slider-container {
    padding: 0;
  }
}

/* alta section */
#alta {
  background: #fff;
  padding: 80px 0;
}

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

.alta-card {
  border: 2px solid var(--blue);
  border-radius: 40px;
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  box-sizing: border-box;
}

.alta-before {
  font-family: var(--outfit);
    font-size: clamp(32px, 4vw, 44px);
    line-height: auto;
    color: var(--blue);
    font-weight: 300;
}

.tachado-light {
  text-decoration: line-through;
  color: #c5c5c7;
}

.alta-now {
  font-family: var(--outfit);
  font-size: clamp(32px, 4vw, 44px);
  color: var(--blue);
  font-weight: 700;
  margin: 0 0 50px 0;
  line-height: 1.1;
}

.alta-info {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 50px;
}

.alta-info li {
  font-size: 18px;
  color: var(--blue);
  line-height: 1.4;

  font-weight: 400;
  position: relative;
  padding-left: 20px;
}

.alta-info li:last-child {
  margin-bottom: 0;
}

.alta-info li .dash {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
}

.tachado-blue {
  text-decoration: line-through;
  color: var(--blue);
}

.info-note {
  font-size: 18px;
  font-weight: 400;
}

.alta-image {
  border-radius: 40px;
  overflow: hidden;
}

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

@media (max-width: 900px) {
  #alta {
    padding: 50px 0;
  }

  .alta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .alta-card {
    padding: 40px 30px;
    border-radius: 30px;
  }

  .alta-now {
    margin-bottom: 30px;
  }

  .alta-image {
    border-radius: 30px;
    height: 350px;
  }

  .alta-info li {
    font-size: 18px;
  }

  .info-note {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important
  }

}

footer {
    background: var(--bg2);
    padding: 38px 0;
    font-size: 12px;
    color: var(--gray);
}

#formupaso2 {
    min-height: 100dvh;
}


footer {
    background: var(--bg2);
    padding: 38px 0;
    font-size: 12px;
    color: var(--gray);
}

#formupaso2 {
    min-height: 100dvh;
}

/* Swiper navigation for mobile vs desktop */
@media (max-width: 767px) {
  .comoazul-next, .comoazul-prev { display: none !important; }
}
@media (min-width: 768px) {
  .comoazul-pagination { display: none !important; }
}

.comoazul-pagination {
  position: relative;
  margin-top: 20px;
}
.comoazul-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.comoazul-pagination .swiper-pagination-bullet-active {
  background: #3df099;
}
