:root {
  --bg: #ffffff;
  --muted: #f8f8f8;
  --text: #1c1c22;
  --text-muted: #45475c;
  --nav-text: #bbbed8;
  --card: #2c2e36;
  --border: rgba(0, 0, 0, 0.15);
  --blue: #2dcdf8;
  --dark: #1b1c21;
  --radius: 10px;
  --radius-lg: 17px;
  --container: 1280px;
  --pad: 50px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body.spiral-landing-page {
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 38px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 40;
}

.brand-mark {
  position: relative;
  width: 114px;
  height: 54px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo-accent {
  position: absolute;
  left: 19px;
  bottom: 2px;
  width: 76px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  order: 3;
}

.menu-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 33px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-weight: 500;
  font-size: 14px;
  color: var(--nav-text);
  line-height: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-full {
  width: 100%;
}

.btn-mobile-menu {
  display: none;
}

.btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

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

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

.btn-outline-dark {
  border: 1px solid var(--dark);
  color: var(--dark);
  background: transparent;
}

.pricing {
  display: none !important;
}

.programa-precio {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 56px;
  max-width: 906px;
  width: 100%;
}

.programa-precio-text {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 14px 22px;
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 24px;
  color: #1c1c21;
  letter-spacing: -0.24px;
  line-height: 1.145;
}

.programa-precio-label {
  font-weight: 300;
}

.programa-precio-value {
  font-weight: 700;
}

.programa-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-light {
  background: #fff;
  color: var(--dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(72.5deg, rgb(27, 28, 33) 23.8%, rgb(112, 114, 135) 121.24%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../img/hero-bg-objects.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-top: 80px;
}

.hero-copy {
  max-width: 560px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
}

.pill-light {
  background: #fff;
  color: var(--dark);
}

.hero-title {
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.145;
  margin: 12px 0 0;
  letter-spacing: -0.48px;
}

.hero-title .accent {
  color: var(--blue);
}

.hero-subtitle {
  margin: 12px 0 0;
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 1.5;
  color: #fff;
}

.hero-badges {
  display: flex;
  gap: 12px;
  align-self: flex-start;
  width: 100%;
}

.hero-badges .hero-homologado {
  flex: 1;
  width: auto;
}

.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 2px;
  padding: 4px 8px;
  color: #fff;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  align-self: flex-start;
}

.hero-homologado {
  display: flex;
  width: 236px;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 10px;
  background: #17171ce2;
}

.hero-homologado-label {
  margin: 0;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: center;
}

.hero-homologado>img {
  width: 146.033px;
  height: 55px;
  flex-shrink: 0;
  object-fit: contain;
}

.hero-colabora-logo {
  width: 62px !important;
  height: 62px !important;
  object-fit: contain;
}

.hero-proof-bottom {
  position: relative;
  z-index: 1;
  padding-top: 32px;
  padding-bottom: 48px;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.hero-proof-title {
  margin: 0;
  color: #82849c;
  font-size: 16px;
  letter-spacing: -0.16px;
}

.hero-logos {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.logo-box {
  width: 92px;
  height: 50px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.info-card {
  flex-shrink: 0;
  width: 410px;
  background: var(--card);
  border-radius: 11px;
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card-title {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.2px;
}

.info-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.form-row {
  display: flex;
  gap: 50px;
}

.field {
  position: relative;
  flex: 1;
}

.input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 8px 0;
  outline: none;
  font-size: 15px;
  letter-spacing: -0.075px;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}


select.input {
  appearance: none;
  padding-right: 28px;
  background: var(--card);
}

.info-card .info-form input:-webkit-autofill,
.info-card .info-form input:-webkit-autofill:hover,
.info-card .info-form input:-webkit-autofill:focus {
  color: white !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 0 0 1000px var(--card) inset !important;
  caret-color: #ffffff !important;
}




.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.select-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-cta {
  position: relative;
  margin: 24px auto 0;
  background: var(--blue);
  border-radius: var(--radius);
  padding: 14px 22px;
  width: calc(var(--container) - (var(--pad) * 2));
  max-width: calc(100% - (var(--pad) * 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-cta-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.hero-cta-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

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

.hero-cta-text {
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.16px;
  color: var(--dark);
}

.hero-cta-right {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-cta-remaining {
  font-size: 16px;
  letter-spacing: -0.16px;
  color: #000;
}

.countdown {
  display: flex;
  gap: 9px;
}

.countdown-inline {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.count-box {
  background: #fff;
  border-radius: var(--radius);
  height: 62px;
  padding: 10px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
}

.count-number {
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
}

.count-label {
  font-size: 16px;
  letter-spacing: -0.16px;
}

.spot {
  background: #fff;
  padding: 119px 0;
}

.spot-inner {
  display: flex;
  align-items: center;
  gap: 44px;
}

.spot-copy {
  width: 456px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spot-copy .eyebrow {
  text-align: left;
}

.spot-copy .section-title {
  text-align: left;
}

.spot-videos {
  flex: 1;
  display: flex;
  gap: 15px;
  align-items: stretch;
  min-width: 0;
}

.spot-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.spot-video>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.spot-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.spot-play img {
  width: 100%;
  height: 100%;
}

.spot-video-main {
  flex: 1;
  height: 304px;
}

.spot-video-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 304px;
}

.spot-video-sm {
  flex: 1;
  min-height: 0;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  z-index: 1;
}

.video-modal-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.video-modal-wrapper video {
  display: block;
  width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  outline: none;
}

.video-modal-wrapper iframe {
  display: none;
  width: 100%;
  height: min(80vh, 506px);
  border-radius: var(--radius);
  outline: none;
  border: 0;
}

.section {
  padding: 64px 0;
}

.section-muted {
  background: var(--muted);
}

.section-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.eyebrow {
  margin: 0;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.65px;
  color: var(--text-muted);
  text-align: center;
}

.eyebrow-muted {
  color: #8a8daa;
  margin-top: 40px;
}

.section-title {
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -0.48px;
  margin: 0;
  color: var(--text);
}

.section-title-sm {
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.32px;
  margin: 0;
}

.section-lead {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.24px;
  color: var(--text);
  text-align: center;
}

.tri-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.feature {
  width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.feature-icon {
  width: 153px;
  height: 153px;
}

.feature-title {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
}

.feature-text {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: -0.16px;
}

.learn {
  display: flex;
  gap: 94px;
  align-items: center;
}

.learn-copy {
  width: 523px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.gallery {
  width: 563px;
  display: grid;
  grid-template-columns: 274px 274px;
  grid-template-rows: 104px 116px 104px;
  gap: 12px 15px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-a {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.gallery-b {
  grid-column: 2;
  grid-row: 1;
  height: 104px;
}

.gallery-c {
  grid-column: 2;
  grid-row: 2 / span 2;
}

.gallery-d {
  grid-column: 1;
  grid-row: 3;
  height: 104px;
}

.learn-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 28px;
}

.learn-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 36px;
  width: 100%;
}

.bullet {
  display: flex;
  gap: 16px;
  align-items: center;
}

.bullet-icon {
  width: 24px;
  height: 24px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

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

.bullet-text {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.16px;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.method {
  width: 100%;
  display: grid;
  grid-template-columns: 230px 54px 230px 54px 230px 54px 230px;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.method-step {
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.method-icon {
  width: 141px;
  height: 141px;
}

.method-title {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.2px;
}

.method-text {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: -0.16px;
}

.method-arrow {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-30%);
}

.detail-cards {
  width: 1052px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.detail {
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 180px;
}

.detail-title {
  margin: 0 0 20px;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.16px;
}

.detail-text {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: -0.13px;
  line-height: 1.145;
  color: #000;
}

.pricing {
  width: 1040px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: stretch;
}

.plan {
  border: 1px solid var(--text-muted);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 0 15px 15px;
}

.plan-body {
  padding: 25px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.plan-name h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.24px;
}

.plan-icon {
  width: 24px;
  height: 24px;
}

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

.plan-sub {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: -0.16px;
}

.plan-price {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.4px;
}

.plan-list-title {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

.plan-list ul {
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
}

.plan-featured {
  position: relative;
  border: none;
  background: linear-gradient(53.44deg, rgb(27, 28, 33) 36.12%, rgb(110, 115, 135) 106.4%);
  color: #fff;
}

.plan-featured .plan-list-title {
  color: #9d9fb4;
}

.plan-featured .plan-list ul {
  color: #fff;
}

.plan-featured .plan-sub {
  color: #fff;
}

.plan-featured .plan-price {
  color: #fff;
}

.plan-tag {
  position: absolute;
  top: 11px;
  right: 14px;
  height: 23px;
  padding: 0 22px;
  background: var(--blue);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 500;
  font-size: 12px;
}

.logo-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}

.logo-pill {
  width: 154px;
  height: 84px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq {
  width: 100%;
  max-width: 1200px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  text-align: left;
  gap: 16px;
}

.faq-q span:first-child {
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 20px;
  color: var(--text);
  line-height: 1.12;
}

.faq-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
  font-size: 13px;
  letter-spacing: -0.065px;
  line-height: 1.4;
  color: var(--text);
}

.faq-a>p {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.3s ease;
  margin: 0;
}

.faq-item[data-open="true"] .faq-a {
  grid-template-rows: 1fr;
}

.faq-item[data-open="true"] .faq-a>p {
  padding-bottom: 13px;
}

.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(67.86deg, rgb(27, 28, 33) 23.8%, rgb(112, 114, 135) 121.24%);
  padding: 82px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../img/hero-bg-objects.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.cta-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.cta-copy {
  width: 560px;
  color: #fff;
}

.cta-bar {
  margin-top: 35px;
  background: var(--blue);
  border-radius: var(--radius);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer {
  background: var(--text);
  padding: 17px 0 38px;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.footer-copy {
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.16px;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero-actions-custom {
  display: none;
}

@media (max-width: 1100px) {
  :root {
    --pad: 24px;
  }

  .menu-toggle {
    display: flex;
    z-index: 40;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    background: rgba(27, 28, 33, 0.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 92px 24px 32px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    text-align: left;
  }

  .btn-mobile-menu {
    display: flex;
    height: 48px;
    min-height: 48px;
    padding: 14px 22px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    align-self: stretch;
    font-size: 16px;
    margin-top: 18px;
  }

  .nav-links .btn-outline {
    border-color: rgba(255, 255, 255, 0.9);
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .cta-inner,
  .learn {
    flex-direction: column;
    align-items: stretch;
  }

  .spot {
    padding: 80px 0;
  }

  .spot-inner {
    gap: 32px;
  }

  .spot-copy {
    width: auto;
    flex: 0 0 280px;
  }

  .spot-videos {
    flex: 1;
    min-width: 0;
  }

  .hero-inner {
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 80px;
  }

  .hero-copy {
    flex: 1;
    min-width: 300px;
    text-align: center;
    margin: 0 auto;
  }

  .pill {
    margin: 0 auto;
  }

  .info-card {
    width: 100%;
    max-width: 400px;
  }

  .hero-cta {
    position: relative;
    z-index: 2;
    transform: none;
    margin: 18px auto 0;
    width: calc(100% - (var(--pad) * 2));
    max-width: calc(var(--container) - (var(--pad) * 2));
  }

  .tri-cards {
    gap: 32px;
    justify-items: center;
  }

  .feature {
    width: 100%;
  }

  .gallery {
    width: 100%;
    max-width: 620px;
  }

  .learn-copy {
    width: 100%;
  }

  .learn-bullets {
    grid-template-columns: 1fr;
  }

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

  .method-arrow {
    display: none;
  }

  .method-step {
    width: 100%;
  }

  .detail-cards,
  .pricing {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-cta-text {
    white-space: normal;
    font-size: 16px;
  }

  .form-row {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .nav-actions {
    gap: 10px;
  }
  .btn-header-custom{
    display: none;
  }

  .learn {
    gap: 32px;
  }

  .programa-precio {
    margin-bottom: 20px;
  }

  .a-muted-custom {
    width: 100%;
    max-width: 350px;
  }

  .cta-copy {
    display: none;
  }

  .programa-actions {
    flex-direction: column;
    width: 100%;
    max-width: 350px;
  }

  .section-title-sm {
    font-size: 28px;
    text-align: center;
  }

  .programa-precio-text {
    font-size: 18px;
  }

  .spot-copy .section-title {
    text-align: center !important;
  }

  .spot-copy .eyebrow {
    text-align: center !important;
  }

  .hero-actions-custom {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .btn-custom {
    font-size: 16px !important;
    height: 50px !important;
    padding: 0 16px !important;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .spot {
    padding: 56px 0;
  }

  .spot-inner {
    flex-direction: column;
    gap: 20px;
  }

  .spot-copy {
    width: 100%;
    flex: none;
    min-width: 0;
  }

  .spot-videos {
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--pad);
    scroll-padding-right: var(--pad);
    padding: 0 var(--pad);
    margin: 0 calc(-1 * var(--pad));
  }

  .spot-videos::-webkit-scrollbar {
    height: 0;
  }

  .spot-video-stack {
    display: contents;
  }

  .spot-video {
    flex: 0 0 80%;
    max-width: 80%;
    height: 260px;
    scroll-snap-align: center;
  }

  .spot-play {
    width: 50px;
    height: 50px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    padding-top: 80px;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -0.36px;
  }

  .hero-promo-badge {
    display: none;
  }

  .hero-proof-title {
    text-align: center;
  }

  .hero-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
    justify-items: center;
    align-items: center;
  }

  .info-card {
    max-width: 100%;
  }

  #hero-form-custom {
    display: none;
  }

  .tri-cards {
    display: flex;
    grid-template-columns: none;
    justify-items: initial;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--pad);
    scroll-padding-right: var(--pad);
    padding: 0 var(--pad);
    margin: 0 calc(-1 * var(--pad));
  }

  .tri-cards::-webkit-scrollbar {
    height: 0;
  }

  .tri-cards>.feature {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
  }

  .tri-cards-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 18px;
  }

  .tri-cards-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
  }

  .tri-cards-dots button[aria-current="true"] {
    background: #1c1c22;
  }

  .method-carousel {
    display: flex;
    grid-template-columns: none;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--pad);
    scroll-padding-right: var(--pad);
    scroll-behavior: smooth;
    padding: 0 var(--pad);
    margin: 0 calc(-1 * var(--pad));
  }

  .method-carousel::-webkit-scrollbar {
    height: 0;
  }

  .method-carousel .method-arrow {
    display: none !important;
    width: 0;
    height: 0;
    overflow: hidden;
    flex: 0 0 0;
    padding: 0;
    margin: 0;
  }

  .method-carousel>.method-step {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .method-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 18px;
  }

  .method-carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
  }

  .method-carousel-dots button[aria-current="true"] {
    background: #1c1c22;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 32px;
    letter-spacing: -0.32px;
    text-align: center;
  }

  .btn-custom--large {
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
  }

  .section-title-sm {
    font-size: 24px;
    letter-spacing: -0.24px;
  }

  .section-lead {
    font-size: 24px;
    letter-spacing: -0.2px;
  }

  .feature-icon {
    width: 140px;
    height: 140px;
  }

  .gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .gallery-b,
  .gallery-c {
    display: none;
  }

  .gallery-a,
  .gallery-d {
    height: 190px;
  }

  .learn-bullets {
    grid-template-columns: 1fr;
  }

  .detail-cards {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .pricing {
    width: 100%;
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .plan-price {
    font-size: 32px;
  }

  .logo-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 16px 20px;
    max-width: 280px;
    margin: 0 auto;
  }

  .logo-pill {
    width: 100%;
    max-width: 120px;
    height: 64px;
    padding: 14px;
    margin: 0 auto;
  }

  .faq-q span:first-child {
    font-size: 16px;
  }

  .cta {
    padding: 56px 0;
  }

  .cta-copy {
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 20px;
  }

  .hero-cta-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-cta-left .btn {
    align-self: flex-start;
  }

  .hero-cta-right {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --pad: 16px;
  }

  .spot {
    padding: 40px 0;
  }

  .spot-video-stack {
    flex-direction: row;
    height: 140px;
    gap: 10px;
  }

  .spot-play {
    width: 40px;
    height: 40px;
  }

  .brand-mark {
    width: 90px;
    height: 42px;
  }

  .nav {
    padding: 16px;
  }

  .hero-inner {
    padding-top: 60px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: -0.28px;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-cta {
    padding: 16px;
    gap: 12px;
  }

  .hero-cta-copy {
    gap: 10px;
  }

  .hero-cta-text {
    font-size: 14px;
  }

  .hero-cta-icon {
    width: 24px;
    height: 24px;
  }

  .hero-cta-right {
    display: none;
  }

  .section {
    padding: 36px 0;
  }

  .section-center {
    gap: 24px;
  }

  .section-title {
    font-size: 26px;
    letter-spacing: -0.26px;
  }

  .section-title-sm {
    font-size: 24px;
    letter-spacing: -0.2px;
  }

  .section-lead {
    font-size: 24px;
    letter-spacing: -0.16px;
  }

  .feature-icon {
    width: 90px;
    height: 90px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-a,
  .gallery-b,
  .gallery-c,
  .gallery-d {
    height: 160px;
  }

  .info-card {
    padding: 18px;
  }

  .info-form {
    gap: 24px;
  }

  .btn {
    font-size: 12px;
    height: 34px;
    padding: 0 16px;
  }

  .plan-price {
    font-size: 28px;
  }

  .logo-pill {
    width: 100px;
    height: 54px;
    padding: 10px;
  }

  .faq-q span:first-child {
    font-size: 14px;
  }

  .cta {
    padding: 40px 0;
  }

  .cta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 380px) {

  .spot-videos,
  .tri-cards {
    margin: 0;
    padding: 0;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
  }

  .spot-videos {
    gap: 12px;
  }

  .tri-cards {
    gap: 12px;
  }
}

/* ── Drawer ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(820px, 95vw);
  background: #fff;
  border-radius: 11px 0 0 11px;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding: 12px 10px 40px;
  height: 100%;
  overflow: hidden;
}

.drawer-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: opacity 0.15s;
}

.drawer-close:hover {
  opacity: 0.6;
}

.drawer-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 0 20px;
  margin-top: 4px;
}

.drawer-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1c1c22;
  letter-spacing: -0.2px;
  margin: 0;
}

.drawer-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c1c22;
  letter-spacing: -0.16px;
  line-height: 1.145;
  margin: 0;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 13px 27px 13px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.drawer-body::-webkit-scrollbar {
  width: 4px;
}

.drawer-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.drawer-module {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-module-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1c1c22;
  letter-spacing: -0.16px;
  margin: 0;
}

.drawer-items {
  list-style: none;
  margin: 0;
  padding: 0 0 0 27px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer-item {
  display: flex;
  flex-direction: column;
}

.drawer-item-btn {
  width: 100%;
  background: #fff;
  border: none;
  border-bottom: 1px solid #adadad;
  cursor: pointer;
  padding: 12px 7px 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  transition: background 0.15s;
}


.drawer-item-btn h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1c1c22;
  line-height: 1.12;
  margin: 0;
}

.drawer-item-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.25s ease;
}

.drawer-item-btn[aria-expanded="true"] .drawer-item-arrow {
  transform: rotate(180deg);
}

.drawer-item-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.drawer-item-btn[aria-expanded="true"]+.drawer-item-body {
  grid-template-rows: 1fr;
}

.drawer-item-content {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.3s ease;
}

.drawer-item-btn[aria-expanded="true"]+.drawer-item-body .drawer-item-content {
  padding-bottom: 16px;
}

.drawer-content-list {
  list-style: decimal;
  padding-left: 18px;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #1c1c22;
  line-height: 1.4;
  letter-spacing: -0.13px;
}

.drawer-content-list>li>ul {
  list-style: disc;
  padding-left: 16px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #45475c;
}

/* Drawer: numbered list (Estructura) */
.drawer-numbered-list {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}

.drawer-numbered-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #1c1c22;
  letter-spacing: -0.13px;
  line-height: 1.145;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drawer-numbered-list li strong {
  font-weight: 700;
}

.drawer-numbered-list li span {
  color: #45475c;
  font-weight: 400;
}

/* Drawer: text sections (Criterios) */
.drawer-text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1c1c22;
  letter-spacing: -0.2px;
  text-align: center;
  margin: 0;
}

.drawer-text-p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #1c1c22;
  letter-spacing: -0.13px;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}

.drawer-bullet-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  align-self: center;
}

.drawer-bullet-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #45475c;
  letter-spacing: -0.13px;
  line-height: 1.145;
}

/* Drawer: professor grid (Profesorado) */
.drawer-prof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 16px;
}

.drawer-prof-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.drawer-prof-img {
  width: 123px;
  height: 115px;
  background: #d9d9d9;
  border-radius: 5px;
  flex-shrink: 0;
  overflow: hidden;
}

.drawer-prof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-prof-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: -0.13px;
  color: #1c1c22;
}

.drawer-prof-info strong {
  font-weight: 700;
  line-height: 1.145;
}

.drawer-prof-info span {
  color: #45475c;
  font-weight: 400;
  line-height: 1.145;
}

@media (max-width: 768px) {
  .drawer {
    width: 100vw;
    border-radius: 0;
  }

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

@media (max-width: 480px) {
  .drawer-prof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .drawer-prof-img {
    width: 100%;
    height: 100px;
  }
}

/* ═══════════════════════════════
   Animations & Dynamic Effects
   ═══════════════════════════════ */

/* — Keyframes — */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* — Hero entrance — */
.hero-title {
  animation: fadeUp 0.7s ease 0.08s both;
}

.hero-subtitle {
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-homologado {
  animation: fadeUp 0.7s ease 0.32s both;
}

/* — Buttons — */
.btn {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);
}

.btn-primary:hover:not(:disabled) {
  box-shadow: 0 6px 22px rgba(45, 205, 248, 0.38);
}

.btn:active {
  transform: translateY(0) !important;
  box-shadow: none !important;
}

/* — Nav links — */
.nav-link {
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fff;
}

/* — Feature cards — */
.feature {
  transition: transform 0.25s ease;
}

.feature:hover {
  transform: translateY(-6px);
}

/* — Method steps — */
.method-step {
  transition: transform 0.25s ease;
}

.method-step:hover {
  transform: translateY(-5px);
}

/* — Gallery image zoom — */
.gallery-item {
  transition: box-shadow 0.25s ease;
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* — Spot video image zoom — */
.spot-video>img {
  transition: transform 0.4s ease;
}

.spot-video:hover>img {
  transform: scale(1.04);
}

/* — Play button pulse + scale — */
.spot-play {
  animation: pulse-ring 2.5s ease-out infinite;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.spot-play:hover {
  transform: translate(-50%, -50%) scale(1.18);
  animation-play-state: paused;
}

/* — Logos — */
.logo-row img,
.hero-logos img {
  transition: opacity 0.2s ease;
}

.logo-row img:hover,
.hero-logos img:hover {
  opacity: 0.65;
}

/* — FAQ row hover — */
.faq-q {
  transition: background 0.15s ease;
  border-radius: 6px;
}

.faq-q:hover {
  background: rgba(0, 0, 0, 0.025);
}

/* — Prof cards — */
.drawer-prof-card {
  transition: transform 0.22s ease;
}

.drawer-prof-card:hover {
  transform: translateY(-4px);
}

/* — Scroll reveal — */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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