@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Roboto:wght@400;500;700&display=swap');

/* =========================
   CTA FINAL - AJUSTE FINO
   ========================= */

.cta-final__content {
  max-width: 560px;
  padding: 56px 46px;
  text-align: left;
  background: linear-gradient(135deg, #f6f0ff 0%, #faf7ff 100%);
  border-radius: 28px;
}

.cta-final__content h2 {
  display: none;
}

.cta-final__content p {
  max-width: none;
  margin: 0;
}

/* Frase superior: más protagonista */
.cta-final__eyebrow {
  margin: 0 0 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.12;
  font-weight: 700;
  color: #2f2f2f;
  letter-spacing: -0.02em;
}

/* Número principal */
.cta-final__social-proof {
  margin: 0;
}

.cta-final__counter {
  display: block;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(5.6rem, 11vw, 8.8rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #c596fc;
}

/* Texto secundario: más discreto */
.cta-final__social-text {
  max-width: 360px;
  margin: 8px 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.2;
  font-weight: 500;
  color: #6b625d;
}

/* Sumate: más discreto */
.cta-final__sumate {
  margin: 22px 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: 600;
  color: #6b625d;
}

.cta-final__content .btn {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .cta-final__content {
    text-align: center;
    margin: 0 auto;
  }

  .cta-final__social-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .cta-final__content {
    padding: 34px 24px;
  }

  .cta-final__eyebrow {
    font-size: clamp(1.3rem, 6vw, 1.75rem);
    line-height: 1.15;
  }

  .cta-final__counter {
    font-size: clamp(4.4rem, 18vw, 6rem);
  }

  .cta-final__social-text {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .cta-final__sumate {
    font-size: 1rem;
  }
}@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
  --bg: #fcfbff;
  --text: #2a2523;
  --muted: #655b57;
  --line: #eadfd9;
  --soft: #f6f0ff;
  --soft-2: #f4efff;
  --brand: #c596fc;
  --brand-dark: #643e9b;
  --accent: #dbc2ff;
  --dark: #23191a;
  --dark-2: #3a2a2b;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(31, 23, 24, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, blockquote { margin: 0; font-family: 'Montserrat', Arial, sans-serif; }
p, ul { margin: 0; }
ul { padding-left: 1.15rem; }

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

.section { padding: 84px 0; }
.section--soft { background: linear-gradient(180deg, #fbf8ff 0%, #f3ecff 100%); }
.section--on-dark { color: var(--white); }

.section-heading {
  max-width: 760px;
  margin: 0 0 28px;
}
.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading h2,
.cta-final h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.section-text {
  max-width: 760px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.88);
}
.section-text--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--muted);
}
.section-text--light { color: rgba(255, 255, 255, 0.9); }

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow--light { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(123, 79, 201, 0.25);
}

.btn--primary:hover {
  background: var(--brand-dark);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}
.btn--secondary:hover { background: rgba(255, 255, 255, 0.14); }
.btn--outline-brand {
  background: transparent;
  color: var(--brand-dark);
  border-color: rgba(123, 79, 201, 0.45);
}
.btn--outline-brand:hover {
  background: rgba(123, 79, 201, 0.08);
}
.btn--light,
.btn--light-brand {
  background: var(--white);
  color: var(--brand-dark);
  box-shadow: 0 12px 24px rgba(31, 23, 24, 0.10);
}

.hero {
  position: relative;
  min-height: clamp(680px, 92vh, 860px);
  overflow: hidden;
  background: #d7c4f2;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(25, 17, 17, 0.16) 0%, rgba(25, 17, 17, 0.20) 48%, rgba(25, 17, 17, 0.42) 100%),
    linear-gradient(90deg, rgba(25, 17, 17, 0.18) 0%, rgba(25, 17, 17, 0.06) 42%, rgba(25, 17, 17, 0.16) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: 72px 0;
}

.hero__copy {
  width: min(100%, 640px);
  color: var(--white);
  margin-top: 6vh;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 6.1vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero__subtitle {
  max-width: 520px;
  margin-top: 18px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* =========================
   HERO MOBILE
   ========================= */

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }

  .hero__image {
    object-position: 30% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(25, 17, 17, 0.10) 0%, rgba(25, 17, 17, 0.18) 42%, rgba(25, 17, 17, 0.52) 100%),
      linear-gradient(90deg, rgba(25, 17, 17, 0.10) 0%, rgba(25, 17, 17, 0.04) 45%, rgba(25, 17, 17, 0.10) 100%);
  }

  .hero__content {
    min-height: 100svh;
    align-items: flex-end;
    padding: 0 0 56px;
  }

  .hero__copy {
    width: 100%;
    max-width: none;
    margin-top: 0;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
    font-size: 3.1rem;
    line-height: 0.98;
  }

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

  .hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 24px auto 0;
  }

  .hero__actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 16px;
    font-size: 15px;
  }
}
.intro {
  background: linear-gradient(180deg, #fefcff 0%, #f9f5ff 100%);
}

.background-block {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(197, 150, 252, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(197, 150, 252, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(32, 23, 24, 0.98) 0%, rgba(53, 34, 39, 0.96) 46%, rgba(78, 45, 74, 0.94) 100%);
}
.background-block__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.background-block__content {
  position: relative;
  z-index: 1;
}

.problem-grid,
.solution-grid,
.feature-grid,
.benefit-grid,
.faq-list,
.plan-grid,
.testimonial__grid {
  display: grid;
  gap: 22px;
}
.problem-grid,
.solution-grid,
.benefit-grid,
.faq-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.plan-grid,
.testimonial__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.solution-grid { margin-top: 30px; }
.plans__intro {
  max-width: 720px;
  margin-bottom: 32px;
}

.info-card,
.solution-item,
.feature-card,
.benefit-box,
.faq-item,
.plan-card,
.testimonial__text,
.testimonial__media,
.cta-final__content {
  height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card,
.solution-item,
.feature-card,
.benefit-box,
.faq-item,
.plan-card,
.testimonial__text,
.cta-final__content {
  padding: 28px;
}

.info-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.solution-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.feature-card,
.benefit-box,
.faq-item,
.plan-card,
.testimonial__text,
.cta-final__content {
  background: var(--white);
  border: 1px solid var(--line);
}
.feature-card h3{ text-align: center;}
  
.benefit-box h3,
.faq-item h3,
.info-card h3,
.solution-item h3,
.plan-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.15;
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 18px;
}
.feature-card__icon:not([src]),
.hero__image:not([src]),
.testimonial__image:not([src]) {
  display: none;
}
.benefit-box,
.faq-item { background: #fbf8ff; }

.plan-card {

  display: flex;
  flex-direction: column;
  justify-content: center; /* centra vertical */
  align-items: center;     /* centra horizontal */
  text-align: center;      /* centra texto */
  min-width: 0;
}

.plan-card__tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: #f1e7ff;
}
.plan-card__highlight {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.plan-card__description {
  color: var(--muted);
  margin-bottom: 14px;
}
.plan-card__tag,
.plan-card__highlight,
.plan-card h3,
.plan-card__description {
  text-align: center;
}
.plan-card p {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.plan-card__list {
  margin-bottom: 22px;
  color: var(--muted);
}
.plan-card .btn {
  width: 100%;
  margin-top: auto;
  align-self: center;
}
.plan-card--featured {
  background: linear-gradient(180deg, #b896f8 0%, #7b4fc9 100%);
  border-color: rgba(123, 79, 201, 0.65);
  color: var(--white);
}
.plan-card--featured .plan-card__tag {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}
.plan-card--featured .plan-card__description,
.plan-card--featured .plan-card__list { color: rgba(255,255,255,0.92); }
.plans__note {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial {
  background: linear-gradient(180deg, #fdfbff 0%, #f7f2ff 100%);
}
.testimonial__grid { align-items: center; }
.testimonial__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial__text blockquote {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.testimonial__author {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}
.testimonial__media {
  overflow: hidden;
  min-height: 360px;
  padding: 0;
}
.testimonial__image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.cta-final__content {
  text-align: center;
  background: linear-gradient(135deg, #f6f0ff 0%, #faf7ff 100%);
}
.cta-final__content p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
}
.cta-final__content .btn {
  margin-top: 28px;
}

.footer {
  padding: 28px 0 40px;
  background: #f8f3ff;
  border-top: 1px solid var(--line);
}
.footer__content {
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero h1 { max-width: 580px; font-size: clamp(2.8rem, 6vw, 4.7rem); }
}


@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
  }
	.hero {
  display: flex;
  align-items: flex-end; /* ð¥ ESTO ES LA CLAVE */
  min-height: 100svh;
}

  .hero__content {

  padding: 0 20px 60px; /* â no padding-top */
}

  .hero__copy {
    width: 100%;
    max-width: 86%;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1,
  .hero__copy h1 {
    max-width: none;
    font-size: 34px;
    line-height: 1.04;
    margin-bottom: 18px;
  }

  .hero__subtitle {
    max-width: 94%;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero__image {
    object-fit: cover;
    object-position: 30% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(25, 17, 17, 0.12) 0%, rgba(25, 17, 17, 0.18) 45%, rgba(25, 17, 17, 0.44) 100%),
      linear-gradient(90deg, rgba(25, 17, 17, 0.12) 0%, rgba(25, 17, 17, 0.02) 45%, rgba(25, 17, 17, 0.14) 100%);
  }

  .hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 28px auto 0;
  }

  .hero__actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    height: auto;
    padding: 0 16px;
    font-size: 15px;
    line-height: 1;
    border-radius: 999px;
    white-space: normal;
  }

  .problem-grid,
  .solution-grid,
  .feature-grid,
  .benefit-grid,
  .faq-list,
  .plan-grid,
  .testimonial__grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .solution-item,
  .feature-card,
  .benefit-box,
  .faq-item,
  .plan-card,
  .testimonial__text,
  .cta-final__content {
    padding: 24px;
  }

  .testimonial__media,
  .testimonial__image {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .section-heading h2,
  .cta-final h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero__image {
    object-position: 65% 35%;
  }

  .hero h1,
  .hero__copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .hero__actions {
    flex-direction: column;
    max-width: 320px;
    gap: 10px;
  }

  .hero__actions .btn,
  .plan-card .btn,
  .cta-final__content .btn {
    width: 100%;
  }

  .btn {
    min-height: 50px;
    padding: 13px 18px;
    font-size: 0.93rem;
  }

  .feature-card__icon {
    width: 48px;
    height: 48px;
  }
}

/* ===== SecciÃ³n "El problema" / bloque claro ===== */

.background-block {
  background: #ffffff;
}

.background-block__overlay {
  display: none;
}

.section--on-dark {
  background: #ffffff;
  color: #2f2f2f;
}

.section--on-dark .section-heading h2,
.section--on-dark h2 {
  font-size: 48px;
  line-height: 1.05;
  color: #2f2f2f;
}

.section--on-dark .eyebrow,
.section--on-dark .eyebrow--light {
  color: #8129ff;
}

.section--on-dark .section-text,
.section--on-dark p {
  color: #5a5a5a;
}

.info-card,
.info-card--light {
  background: #ffffff;
  border: 1px solid #e6ddd6;
  color: #2f2f2f;
  box-shadow: none;
}

.info-card h3,
.info-card--light h3 {
  color: #8129ff;
}

.info-card p,
.info-card--light p {
  color: #5a5a5a;
}

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

@media (max-width: 1024px) {
  .section--on-dark .section-heading h2,
  .section--on-dark h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .section--on-dark .section-heading h2,
  .section--on-dark h2 {
    font-size: 32px;
    line-height: 1.1;
  }
}
/* ===== LA SOLUCIÃN - degradado + tipografÃ­a blanca ===== */

.background-block .section--on-dark:last-of-type {
  background: linear-gradient(135deg, #dbc2ff 0%, #b89ad6 100%);
  color: #ffffff;
}

/* tÃ­tulos */
.background-block .section--on-dark:last-of-type h2,
.background-block .section--on-dark:last-of-type h3 {
  color: #ffffff;
}

/* textos */
.background-block .section--on-dark:last-of-type p {
  color: rgba(255, 255, 255, 0.85);
}

/* eyebrow */
.background-block .section--on-dark:last-of-type .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
/* =========================
   DEGRADADO BASE REUTILIZABLE
   ========================= */

:root {
  --aca-gradient: linear-gradient(135deg, #dbc2ff 0%, #b89ad6 100%);
  --aca-white: #ffffff;
  --aca-dark: #2f2f2f;
  --aca-text-soft: rgba(255, 255, 255, 0.86);
  --aca-bg-soft: #f7f2ff;
  --aca-border-soft: rgba(255, 255, 255, 0.18);
}

/* =========================
   MÃS RAZONES PARA ELEGIR ACA
   Fondo completo con degradado
   ========================= */

.section--soft {
  background: var(--aca-gradient);
  color: var(--aca-white);
}

.section--soft .eyebrow,
.section--soft .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.section--soft h2,
.section--soft h3 {
  color: var(--aca-white);
}

.section--soft p {
  color: var(--aca-text-soft);
}

.section--soft .benefit-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--aca-border-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}

.section--soft .benefit-box h3 {
  color: var(--aca-white);
}

.section--soft .benefit-box p {
  color: rgba(255, 255, 255, 0.84);
}

/* =========================
   TESTIMONIOS
   Fondo claro + detalles con degradado
   ========================= */

.testimonial {
  background: #f6f0ff;
  position: relative;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(184, 154, 214, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(197, 150, 252, 0.18), transparent 30%);
  pointer-events: none;
}

.testimonial .container,
.testimonial .testimonial__grid {
  position: relative;
  z-index: 1;
}

.testimonial__text,
.testimonial__media,
.testimonial-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 154, 214, 0.16);
  box-shadow: 0 10px 30px rgba(60, 35, 35, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.testimonial .eyebrow {
  color: #8129ff;
}

.testimonial blockquote,
.testimonial-card blockquote {
  color: var(--aca-dark);
}

.testimonial__author,
.testimonial-card .testimonial__author {
  color: #6b625d;
}

/* =========================
   GRID DE 3 TESTIMONIOS
   ========================= */

.testimonial-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  border-radius: 28px;
  padding: 32px;
}

.testimonial-card .eyebrow {
  margin-bottom: 18px;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 600;
  margin: 0 0 22px 0;
}

.testimonial-card .testimonial__author {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .testimonial-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FAQ
   ========================= */

.faq {
  background: #f7f2ff;
}

.faq .section-heading {
  margin-bottom: 36px;
}

.faq .eyebrow {
  color: #2f2f2f;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.faq h2 {
  color: #2b2b2b;
  font-size: 48px;
  line-height: 1.05;
  margin: 8px 0 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq-item {
  background: #f3f3f3;
  border-left: 5px solid #8129ff;
  padding: 30px 34px;
  border-radius: 0;
  box-shadow: none;
}

.faq-item h3 {
  margin: 0 0 14px 0;
  color: #2b2b2b;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  color: #2f2f2f;
  font-size: 18px;
  line-height: 1.45;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .faq h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .faq-item {
    padding: 24px 22px;
  }

  .faq-item h3 {
    font-size: 22px;
  }

  .faq-item p {
    font-size: 16px;
  }
}
/* =========================
   FOOTER
   ========================= */

.footer {
  background-color: #f3ecff;
  padding: 60px 64px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  justify-content: center;
	 margin-bottom: 30px;

}

.footer-logo-img {
  height: 60px;
  width: auto;

}

.footer-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
}

.footer-copyright {
  color: #000;
  font-size: 14px;
  margin: 0;
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: #000;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-link:hover {
  color: #7b4fc9;
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 30px;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .footer-logo-img {
    height: 48px;
  }

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

  .footer-left {
    order: 2;
  }

  .footer-right {
    order: 1;
    justify-content: center;
  }

  .footer-copyright,
  .footer-link {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 20px 25px;
  }

  .footer-logo-img {
    height: 44px;
  }

  .footer-divider {
    margin-bottom: 20px;
  }
}
.eyebrow-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.eyebrow__logo {
  width: 54px;
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0;
}
.feature-card__icon {
  display: block;
  margin: 0 auto 16px;
}
/* =========================
   CTA FINAL - CLEAN
   ========================= */

.cta-final {
  background: var(--bg-soft);
}

.cta-final__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Contenedor texto */
.cta-final__content {
  max-width: 560px;
  padding: 56px 46px;
  background: linear-gradient(135deg, #f6f0ff 0%, #faf7ff 100%);
  border-radius: 28px;
  text-align: left;
}

/* Neutralizamos herencias problemáticas SOLO acá */
.cta-final__content p {
  margin: 0;
  max-width: none;
}

/* Frase principal */
.cta-final__eyebrow {
  margin-bottom: 24px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.12;
  font-weight: 700;
  color: #2b2b2b;
  letter-spacing: -0.02em;
}

/* Bloque número */
.cta-final__social-proof {
  margin: 0;
}

/* Número protagonista */
.cta-final__counter {
  display: block;
  font-size: clamp(3.8rem, 7vw, 6rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--brand);
}

/* Texto secundario (más discreto) */
.cta-final__social-text {
  margin-top: 8px;
  max-width: 360px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.2;
  font-weight: 500;
  color: var(--muted);
}

/* Sumate (discreto) */
.cta-final__sumate {
  margin-top: 22px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}

/* Botón */
.cta-final__content .btn {
  margin-top: 28px;
}

/* Imagen */
.cta-final__media img {
  width: 100%;
  border-radius: 28px;
  display: block;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .cta-final__grid {
    grid-template-columns: 1fr;
  }

  .cta-final__content {
    text-align: center;
    margin: 0 auto;
  }

  .cta-final__social-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .cta-final__content {
    padding: 34px 24px;
  }

  .cta-final__eyebrow {
    font-size: clamp(1.3rem, 6vw, 1.75rem);
  }

  .cta-final__counter {
    font-size: clamp(4.4rem, 18vw, 6rem);
  }

  .cta-final__social-text {
    font-size: 0.98rem;
  }

  .cta-final__sumate {
    font-size: 1rem;
  }
}

/* =========================
   CTA FINAL - VISIBILIDAD MOBILE DEL CONTADOR
   Ajuste puntual para asegurar que el número
   se vea completo en mobile sin afectar desktop
   ========================= */
@media (max-width: 768px) {
  .cta-final__grid {
    gap: 28px;
  }

  .cta-final__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .cta-final__social-proof {
    width: 100%;
    overflow: visible;
  }

  .cta-final__counter {
    width: 100%;
    white-space: nowrap;
    line-height: 1;
    font-size: clamp(3.6rem, 17vw, 5.4rem);
  }

  .cta-final__social-text,
  .cta-final__sumate {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .cta-final__content {
    padding: 30px 20px;
  }

  .cta-final__counter {
    font-size: clamp(3.1rem, 16vw, 4.6rem);
  }
}

/* =========================
   AJUSTE FINAL · SOLUCIÓN + TESTIMONIOS
   Estética degradada según referencia
   ========================= */

:root {
  --aca-gradient-section: linear-gradient(135deg, #e3c6bd 0%, #ccb5e5 52%, #b79cdb 100%);
  --aca-gradient-section-mobile: linear-gradient(180deg, #e1c7c0 0%, #ccb5e5 55%, #b79cdb 100%);
  --aca-glass-bg: rgba(255, 255, 255, 0.10);
  --aca-glass-border: rgba(255, 255, 255, 0.18);
  --aca-glass-bg-light: rgba(255, 255, 255, 0.72);
  --aca-glass-border-light: rgba(255, 255, 255, 0.26);
  --aca-text-light: rgba(255, 255, 255, 0.88);
  --aca-text-dark: #2f2f2f;
  --aca-text-muted-dark: #6b625d;
}

/* El bloque contenedor queda neutro y cada sección resuelve su propio fondo */
.background-block {
  background: transparent;
}

.background-block__overlay {
  display: none;
}

/* Primera sección dentro de background-block = bloque claro */
.background-block .section--on-dark:first-of-type {
  background: #ffffff;
  color: #2f2f2f;
}

.background-block .section--on-dark:first-of-type .eyebrow,
.background-block .section--on-dark:first-of-type .eyebrow--light {
  color: #8129ff;
}

.background-block .section--on-dark:first-of-type h2,
.background-block .section--on-dark:first-of-type h3 {
  color: #2f2f2f;
}

.background-block .section--on-dark:first-of-type p {
  color: #5a5a5a;
}

.background-block .section--on-dark:first-of-type .info-card {
  background: #ffffff;
  border: 1px solid #e6ddd6;
  color: #2f2f2f;
  box-shadow: none;
}

/* Segunda sección = LA SOLUCIÓN con degradado */
.background-block .section--on-dark:nth-of-type(2) {
  position: relative;
  overflow: hidden;
  background: var(--aca-gradient-section);
  color: #ffffff;
}

.background-block .section--on-dark:nth-of-type(2)::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.background-block .section--on-dark:nth-of-type(2) .container {
  position: relative;
  z-index: 1;
}

.background-block .section--on-dark:nth-of-type(2) .eyebrow,
.background-block .section--on-dark:nth-of-type(2) .eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.background-block .section--on-dark:nth-of-type(2) h2,
.background-block .section--on-dark:nth-of-type(2) h3 {
  color: #ffffff;
}

.background-block .section--on-dark:nth-of-type(2) .section-text,
.background-block .section--on-dark:nth-of-type(2) p {
  color: var(--aca-text-light);
}

.background-block .section--on-dark:nth-of-type(2) .solution-item {
  background: var(--aca-glass-bg);
  border: 1px solid var(--aca-glass-border);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Testimonios con la misma estética degradada */
.testimonial {
  position: relative;
  overflow: hidden;
  background: var(--aca-gradient-section);
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.10), transparent 30%);
  pointer-events: none;
}

.testimonial .container {
  position: relative;
  z-index: 1;
}

.testimonial .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial h2 {
  color: #ffffff;
}

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

.testimonial-card {
  min-height: 260px;
  padding: 34px 32px;
  border-radius: 28px;
  background: var(--aca-glass-bg-light);
  border: 1px solid var(--aca-glass-border-light);
  box-shadow: 0 12px 30px rgba(60, 35, 35, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card blockquote {
  margin: 0 0 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.34;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--aca-text-dark);
}

.testimonial__author {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--aca-text-muted-dark);
}

@media (max-width: 1024px) {
  .testimonial-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .background-block .section--on-dark:nth-of-type(2),
  .testimonial {
    background: var(--aca-gradient-section-mobile);
  }

  .testimonial-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .testimonial-card blockquote {
    margin-bottom: 22px;
    font-size: 1.08rem;
    line-height: 1.38;
  }
}
/* ===== BADGE PLAN DESTACADO ===== */
.plan-card--featured {
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ffffff;
  color: var(--brand-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
