/* ============ Base / Variables ============ */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0f172a;        /* slate-900 */
  --muted: #64748b;       /* slate-500 */
  --border: rgba(15, 23, 42, 0.08);

  --blue-700: #0b5cff;
  --blue-600: #0b6dff;
  --blue-500: #1d7bff;
  --blue-400: #38a3ff;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);

  --container: 1120px;

  --h1: clamp(40px, 4.6vw, 64px);
  --h2: clamp(32px, 3.6vw, 52px);
  --h3: clamp(22px, 2.2vw, 28px);

  --p: 1.05rem;

  --section-y: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}

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

ul {
  margin: 0;
  padding-left: 18px;
}

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

.page {
  min-height: 100vh;
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo__text {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header__link {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.header__link:hover {
  color: var(--text);
}

.header__cta {
  margin-left: 8px;
}

.header__burger {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s ease;
}

.header__burger-icon {
  display: none;  /* Oculto por defecto */
  width: 24px;
  height: 24px;
}

.header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  margin: 4px 0;
  opacity: 0.9;
}

.header__mobile {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}
.header__mobile-inner {
  display: grid;
  gap: 14px;
  padding: 16px 0 18px;
}
.header__mobile-link {
  color: var(--muted);
  font-weight: 600;
}
.header__mobile-link:hover {
  color: var(--text);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(180deg, var(--blue-600), var(--blue-700));
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 92, 255, 0.25);
}
.btn--primary:hover {
  box-shadow: 0 16px 34px rgba(11, 92, 255, 0.28);
}

.btn--ghost {
  background: #fff;
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.12);
}
.btn--ghost:hover {
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: var(--shadow);
}

.btn--link {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--blue-700);
  font-weight: 700;
}
.btn--link:hover {
  color: var(--blue-600);
}

.btn--wide {
  width: 100%;
}

.btn--xl {
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 1rem;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__title {
  margin: 0 auto;
  max-width: 820px;
  font-size: var(--h1);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.hero__title-accent {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: var(--p);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* Soft Apple-ish radial background */
.hero__bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(600px 380px at 10% 30%, rgba(56, 163, 255, 0.10), transparent 60%),
    radial-gradient(520px 340px at 90% 30%, rgba(11, 92, 255, 0.10), transparent 60%),
    radial-gradient(700px 500px at 50% 80%, rgba(15, 23, 42, 0.04), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* ============ Sections ============ */
.section {
  padding: var(--section-y) 0;
}

.section--tight {
  padding: 64px 0;
}

.section__title {
  margin: 0;
  text-align: center;
  font-size: var(--h3);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.05rem;
}

.section__subtitle--center {
  text-align: center;
}

/* ============ Channels ============ */
.channels {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  justify-items: center;
}

.channel-card {
  width: 100%;
  max-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 28px 18px;
  text-align: center;
}

.channel-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: rgba(15, 23, 42, 0.03);
}

.channel-card__icon--wa { color: #22c55e; background: rgba(34, 197, 94, 0.10); }
.channel-card__icon--ig { color: #ec4899; background: rgba(236, 72, 153, 0.10); }
.channel-card__icon--fb { color: #3b82f6; background: rgba(59, 130, 246, 0.10); }

.channel-card__title {
  margin: 0;
  font-weight: 800;
}

/* ============ Statement ============ */
.statement {
  padding: 120px 0;
  background: #f3f3f3;
}

.statement__content {
  text-align: center;
}

.statement__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.statement__subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ============ Feature cards ============ */
.feature-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 28px 26px;
}

.feature-card__badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(11, 92, 255, 0.10);
  margin-bottom: 14px;
}

.feature-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
}

.feature-card__list {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
  padding-left: 18px;
}

/* ============ Timeline ============ */
.timeline {
  margin-top: 46px;
  position: relative;
  display: grid;
  padding: 10px 0;

  --step-h: 190px;                 /* 👈 sube un poco para que quepa todo */
  grid-auto-rows: var(--step-h);    /* 👈 filas SIEMPRE iguales */
  gap: 0;                           /* 👈 por si algún estilo mete gap */
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: calc(var(--step-h) / 2);
  bottom: calc(var(--step-h) / 2);
  width: 2px;
  transform: translateX(-50%);
  background: rgba(11, 92, 255, 0.45);
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;              /* 👈 Cambiado a start */
  
  height: var(--step-h);
  overflow: visible;
  margin: 0;
}

.timeline__dot {
  grid-column: 2 / 3;
  justify-self: center;
  align-self: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  max-width: 54px;
  min-height: 54px;
  max-height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 16px 34px rgba(11, 92, 255, 0.25);
  font-size: 1rem;
  line-height: 1;
  position: absolute;              /* 👈 Cambio clave: posición absoluta */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* 👈 Centra el dot en el item */
  z-index: 2;
}

.timeline__card {
  width: min(440px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 22px 22px;
  align-self: center;              /* 👈 La card se centra */
  position: relative;
  z-index: 1;
}

.timeline__item--left .timeline__card {
  grid-column: 1 / 2;
  justify-self: end;
}

.timeline__item--right .timeline__card {
  grid-column: 3 / 4;
  justify-self: start;
}


.timeline__title {
  margin: 0;
  font-weight: 900;
  font-size: 1.2rem;
}

.timeline__text {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

/* ============ Results (blue section) ============ */
.results {
  padding: 86px 0;
  color: #fff;
  background:
    radial-gradient(900px 400px at 30% 15%, rgba(56, 163, 255, 0.35), transparent 55%),
    radial-gradient(900px 420px at 70% 20%, rgba(11, 92, 255, 0.35), transparent 55%),
    linear-gradient(180deg, #0b2f72 0%, #08306b 100%);
}

.results__title {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.results__subtitle {
  margin: 10px 0 0;
  text-align: center;
  opacity: 0.85;
}

.results__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.25);
}

.metric-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.metric-card__value {
  margin: 0;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.metric-card__label {
  margin: 10px 0 0;
  opacity: 0.9;
}

/* ============ Testimonials ============ */
.testimonials {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 14px;
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  font-size: 26px;
  line-height: 0;
  cursor: pointer;
}

.testimonials__viewport {
  overflow: hidden;
  position: relative;
  padding: 8px 0; /* Espacio para las sombras */
}

.testimonials__track {
  display: flex;
  gap: 18px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04), 
              0 1px 3px rgba(15, 23, 42, 0.06);
  padding: 26px;
  min-height: 190px;
  display: grid;
  gap: 18px;
  flex: 0 0 calc(50% - 9px);
  min-width: 0;
  position: relative;
  isolation: isolate; /* Crea un nuevo contexto de apilamiento */
}

.testimonial-card__quote {
  color: var(--muted);
  line-height: 1.65;
}

.testimonial-card__person {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(11, 92, 255, 0.12);
  color: var(--blue-700);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.person__name {
  margin: 0;
  font-weight: 900;
}

.person__role {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============ Pricing ============ */
.pricing {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 28px;
  position: relative;
}

.price-card__title {
  margin: 0;
  font-weight: 900;
  font-size: 1.35rem;
}

.price-card__price {
  margin: 12px 0 0;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.price-card__note {
  margin: 6px 0 0;
  color: var(--muted);
}

.price-card__list {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.price-card__tag {
  position: absolute;
  top: 26px;
  left: 60%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
}

.price-card--featured {
  background: linear-gradient(180deg, var(--blue-600), var(--blue-700));
  color: #fff;
  box-shadow: 0 20px 46px rgba(11, 92, 255, 0.25);
  transform: translateY(-6px);
}

.price-card__title--inverse,
.price-card__price--inverse,
.price-card__note--inverse,
.price-card__list--inverse {
  color: #fff;
}

.price-card__note--inverse,
.price-card__list--inverse {
  opacity: 0.9;
}

/* ============ CTA final ============ */
.cta {
  padding: 92px 0;
  background: #f3f3f3;
}

.cta__content {
  text-align: center;
}

.cta__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta__subtitle {
  margin: 12px 0 0;
  color: var(--muted);
}

.btn.btn--primary.btn--xl {
  margin-top: 38px;
}

/* ============ Footer ============ */
.footer {
  background: #08306b;
  color: #fff;
  padding: 52px 0 26px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer__brand {
  margin: 0;
  font-weight: 900;
  font-size: 1.25rem;
}

.footer__text {
  margin: 10px 0 0;
  opacity: 0.88;
  line-height: 1.6;
  max-width: 360px;
}

.footer__title {
  margin: 0;
  font-weight: 900;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.footer__link {
  opacity: 0.9;
}
.footer__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer__muted {
  opacity: 0.9;
}

.footer__bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer__copy {
  opacity: 0.85;
}

/* ============ Icons helper ============ */
.icon {
  width: 28px;
  height: 28px;
}
.icon--blue { color: var(--blue-700); }
.icon--white { color: #fff; }

/* ============ Responsive ============ */

/* Desktop: 1024px */
@media (max-width: 1024px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .header__content {
    height: 68px;
  }

  .header__nav {
    gap: 18px;
  }

  .header__link {
    font-size: 0.9rem;
  }

  .hero {
    padding: 72px 0 60px;
  }

  .hero__subtitle {
    margin-top: 18px;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 22px;
  }

  .section {
    padding: 72px 0;
  }

  .section--tight {
    padding: 56px 0;
  }

  .channels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .channel-card {
    padding: 24px 16px;
  }

  .statement {
    padding: 100px 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .feature-card {
    padding: 24px 22px;
  }

  .timeline {
    --step-h: 180px;
    padding: 20px 0;
  }

  .timeline__card {
    width: min(380px, 100%);
    padding: 20px 20px;
  }

  .timeline__dot {
    width: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    font-size: 0.95rem;
  }

  .results {
    padding: 72px 0;
  }

  .results__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .metric-card {
    padding: 24px 22px;
  }

  .testimonials {
    gap: 12px;
  }

  .testimonials__viewport {
    padding: 6px 0;
  }

  .testimonials__track {
    gap: 16px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 8px);
  }

  .testimonial-card {
    padding: 22px;
    min-height: 180px;
  }

  .pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .price-card {
    padding: 24px;
  }

  .cta {
    padding: 80px 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Tablet: 768px */
@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .header__content {
    height: 64px;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 60px 0 48px;
  }

  .hero__title {
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .section {
    padding: 60px 0;
  }

  .section--tight {
    padding: 48px 0;
  }

  .section__title {
    font-size: clamp(20px, 4vw, 24px);
  }

  .section__subtitle {
    font-size: 1rem;
    margin-top: 12px;
  }

  .channels {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .channel-card {
    max-width: 100%;
    padding: 22px 18px;
  }

  .channel-card__icon {
    width: 52px;
    height: 52px;
  }

  .statement {
    padding: 80px 0;
  }

  .statement__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .statement__subtitle {
    font-size: 1rem;
    margin-top: 12px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .feature-card {
    padding: 22px 20px;
  }

  .feature-card__badge {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .feature-card__title {
    font-size: 1.15rem;
  }

  .timeline {
    --step-h: 140px;
    padding: 15px 0;
    margin-top: 36px;
  }

  .timeline__line {
    left: 28px;
    transform: none;
    top: 0;
    bottom: 0;
  }

  .timeline__item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    height: auto;
    min-height: var(--step-h);
    align-items: start;
  }

  .timeline__dot {
    position: absolute;
    left: 28px;
    top: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
    font-size: 0.9rem;
    z-index: 2;
  }

  .timeline__card {
    grid-column: 2 / 3;
    width: 100%;
    align-self: start;
    padding: 18px 18px;
    margin-left: 0;
  }

  .timeline__item--left .timeline__card,
  .timeline__item--right .timeline__card {
    grid-column: 2 / 3;
    justify-self: stretch;
  }

  .timeline__title {
    font-size: 1.15rem;
  }

  .timeline__text {
    font-size: 0.95rem;
  }

  .results {
    padding: 60px 0;
  }

  .results__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .results__subtitle {
    font-size: 0.95rem;
    margin-top: 8px;
  }

  .results__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .metric-card {
    padding: 22px 20px;
  }

  .metric-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .metric-card__value {
    font-size: 1.75rem;
  }

  .testimonials {
    margin-top: 28px;
    grid-template-columns: 40px 1fr 40px;
    gap: 10px;
  }

  .testimonials__arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .testimonials__viewport {
    padding: 6px 0;
  }

  .testimonials__track {
    gap: 16px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-card {
    padding: 20px;
    min-height: auto;
    gap: 16px;
  }

  .testimonial-card__quote {
    font-size: 0.95rem;
  }

  .avatar {
    width: 40px;
    height: 40px;
  }

  .person__name {
    font-size: 0.95rem;
  }

  .person__role {
    font-size: 0.85rem;
  }

  .pricing {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .price-card {
    padding: 22px 20px;
  }

  .price-card__title {
    font-size: 1.25rem;
  }

  .price-card__price {
    font-size: 1.75rem;
    margin-top: 10px;
  }

  .price-card__tag {
    top: 20px;
    left: auto;
    right: 20px;
    transform: none;
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  .cta {
    padding: 60px 0;
  }

  .cta__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .cta__subtitle {
    font-size: 0.95rem;
    margin-top: 10px;
  }

  .btn.btn--primary.btn--xl {
    margin-top: 28px;
    width: 100%;
    max-width: 320px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__brand {
    font-size: 1.15rem;
  }

  .footer__text {
    max-width: 100%;
    margin-top: 8px;
  }

  .footer__bottom {
    margin-top: 20px;
    padding-top: 16px;
  }
}

/* Móvil: 544px */
@media (max-width: 544px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }

  .header__content {
    height: 60px;
  }

  .logo__text {
    font-size: 1.1rem;
  }

  .header__mobile-inner {
    padding: 14px 0 16px;
    gap: 12px;
  }

  .header__burger-icon {
    display: block;  /* Mostrar el icono SVG solo en móvil */
  }

  .header__burger-line {
    display: none;  /* Ocultar las líneas en móvil */
  }

  .header__burger:hover {
    color: var(--blue-700);
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero__title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.1;
  }

  .hero__title-accent {
    margin-top: 8px;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-top: 14px;
    line-height: 1.5;
  }

  .hero__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 18px;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 11px 16px;
    font-size: 0.9rem;
  }

  .section {
    padding: 48px 0;
  }

  .section--tight {
    padding: 40px 0;
  }

  .section__title {
    font-size: clamp(18px, 5vw, 22px);
  }

  .section__subtitle {
    font-size: 0.95rem;
    margin-top: 10px;
  }

  .channels {
    margin-top: 24px;
    gap: 14px;
  }

  .channel-card {
    padding: 20px 16px;
  }

  .channel-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  .channel-card__title {
    font-size: 0.95rem;
  }

  .statement {
    padding: 60px 0;
  }

  .statement__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.15;
  }

  .statement__subtitle {
    font-size: 0.95rem;
    margin-top: 10px;
  }

  .feature-grid {
    margin-top: 24px;
    gap: 16px;
  }

  .feature-card {
    padding: 20px 18px;
  }

  .feature-card__badge {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .feature-card__title {
    font-size: 1.1rem;
  }

  .feature-card__list {
    font-size: 0.9rem;
    margin-top: 12px;
    padding-left: 16px;
  }

  .timeline {
    --step-h: 120px;
    padding: 10px 0;
    margin-top: 30px;
  }

  .timeline__line {
    left: 20px;
  }

  .timeline__item {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    min-height: var(--step-h);
  }

  .timeline__dot {
    left: -30px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    font-size: 0.85rem;
    box-shadow: 0 12px 24px rgba(11, 92, 255, 0.2);
  }

  .timeline__card {
    padding: 16px 16px;
  }

  .timeline__title {
    font-size: 1.1rem;
  }

  .timeline__text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 6px;
  }

  .results {
    padding: 48px 0;
  }

  .results__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .results__subtitle {
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .results__grid {
    margin-top: 28px;
    gap: 16px;
  }

  .metric-card {
    padding: 20px 18px;
  }

  .metric-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .metric-card__value {
    font-size: 1.5rem;
  }

  .metric-card__label {
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .testimonials {
    margin-top: 24px;
    grid-template-columns: 36px 1fr 36px;
    gap: 8px;
  }

  .testimonials__arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .testimonials__viewport {
    padding: 4px 0;
  }

  .testimonials__track {
    gap: 14px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-card {
    padding: 18px;
    gap: 14px;
  }

  .testimonial-card__quote {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .testimonial-card__person {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }

  .avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .person__name {
    font-size: 0.9rem;
  }

  .person__role {
    font-size: 0.8rem;
    margin-top: 1px;
  }

  .pricing {
    margin-top: 24px;
    gap: 16px;
  }

  .price-card {
    padding: 20px 18px;
  }

  .price-card__title {
    font-size: 1.15rem;
  }

  .price-card__price {
    font-size: 1.5rem;
    margin-top: 8px;
  }

  .price-card__note {
    font-size: 0.9rem;
    margin-top: 4px;
  }

  .price-card__list {
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.65;
  }

  .price-card__tag {
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .price-card--featured {
    transform: none;
  }

  .cta {
    padding: 48px 0;
  }

  .cta__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.15;
  }

  .cta__subtitle {
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .btn.btn--primary.btn--xl {
    margin-top: 24px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .footer {
    padding: 32px 0 18px;
  }

  .footer__grid {
    gap: 20px;
  }

  .footer__brand {
    font-size: 1.1rem;
  }

  .footer__text {
    font-size: 0.9rem;
    margin-top: 6px;
  }

  .footer__title {
    font-size: 0.95rem;
  }

  .footer__links {
    margin-top: 10px;
    gap: 8px;
  }

  .footer__link {
    font-size: 0.9rem;
  }

  .footer__bottom {
    margin-top: 18px;
    padding-top: 14px;
  }

  .footer__copy {
    font-size: 0.85rem;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}