/**
 * mclhome.css — Estilos del módulo homepage Merclari
 * Paleta: verde oscuro #163826 · verde marca #237738 · texto #506257
 */

/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --mcl-dark:        #0e2116;
  --mcl-forest:      #163826;
  --mcl-green:       #237738;
  --mcl-green-mid:   #2d9245;
  --mcl-muted:       #506257;
  --mcl-border:      #e7ece7;
  --mcl-bg:          #f7fdf9;
  --mcl-highlight:   #b2d9bb;
  --mcl-gold:        #f0c040;
  --mcl-white:       #ffffff;
  --mcl-shadow:      0 8px 32px rgba(22, 56, 38, .10);
  --mcl-shadow-lg:   0 20px 60px rgba(22, 56, 38, .14);
  --mcl-radius:      20px;
  --mcl-radius-sm:   12px;
  --mcl-radius-xs:   8px;
  --mcl-transition:  all .25s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
.mcl-home * { box-sizing: border-box; }
.mcl-home { font-family: inherit; }

/* ── Container ──────────────────────────────────────────────────────────────── */
.mcl-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* ── Sección genérica ───────────────────────────────────────────────────────── */
.mcl-section         { padding: 80px 0; }
.mcl-section--tinted { background: var(--mcl-bg); }
.mcl-section--dark   { background: linear-gradient(135deg, var(--mcl-dark) 0%, var(--mcl-forest) 100%); }

.mcl-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.mcl-section__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mcl-green);
  background: rgba(35, 119, 56, .1);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.mcl-section__eyebrow--light { color: var(--mcl-highlight); background: rgba(178, 217, 187, .15); }

.mcl-section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--mcl-forest);
  margin: 0 0 16px;
  line-height: 1.2;
}
.mcl-section__title--light { color: var(--mcl-white); }
.mcl-section__sub {
  font-size: 1.05rem;
  color: var(--mcl-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}
.mcl-section__sub--light { color: var(--mcl-highlight); }

/* ── Botones ────────────────────────────────────────────────────────────────── */
.mcl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--mcl-transition);
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}
.mcl-btn--primary {
  background: var(--mcl-green);
  color: var(--mcl-white);
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(35, 119, 56, .35);
}
.mcl-btn--primary:hover {
  background: var(--mcl-green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(35, 119, 56, .45);
  color: var(--mcl-white);
  text-decoration: none;
}
.mcl-btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--mcl-white);
  padding: 14px 28px;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.mcl-btn--ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
  color: var(--mcl-white);
  text-decoration: none;
}
.mcl-btn--outline {
  background: transparent;
  color: var(--mcl-green);
  border: 2px solid var(--mcl-green);
  padding: 10px 22px;
  font-size: .9rem;
}
.mcl-btn--outline:hover {
  background: var(--mcl-green);
  color: var(--mcl-white);
  transform: translateY(-1px);
  text-decoration: none;
}
.mcl-btn--sm  { padding: 9px 18px; font-size: .875rem; }
.mcl-btn--lg  { padding: 16px 36px; font-size: 1.05rem; }
.mcl-btn--xl  { padding: 18px 38px; font-size: 1.1rem; }

/* CTA section buttons */
.mcl-btn--cta-primary {
  background: var(--mcl-white);
  color: var(--mcl-forest);
  padding: 18px 36px;
  font-size: 1.05rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
.mcl-btn--cta-primary:hover {
  background: #f0f7f1;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,.25);
  color: var(--mcl-forest);
  text-decoration: none;
}
.mcl-btn--cta-secondary {
  background: transparent;
  color: var(--mcl-white);
  border: 2px solid rgba(255,255,255,.5);
  padding: 18px 36px;
  font-size: 1.05rem;
}
.mcl-btn--cta-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
  color: var(--mcl-white);
  text-decoration: none;
}


/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.mcl-hero {
  position: relative;
  background: linear-gradient(135deg, var(--mcl-dark) 0%, var(--mcl-forest) 55%, #1a4a2e 100%);
  padding: 100px 0 140px;
  overflow: hidden;
}

/* Luz verde radial de fondo */
.mcl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 65% 40%, rgba(35, 119, 56, .3) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(14, 33, 22, .5) 0%, transparent 60%);
  pointer-events: none;
}

/* Partículas */
.mcl-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.mcl-hero__particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0;
  animation: mcl-float linear infinite;
}
.mcl-hero__particles span:nth-child(1)  { width: 8px;  height: 8px;  background: rgba(178,217,187,.4); left: 10%; top: 20%; animation-duration: 8s;  animation-delay: 0s;   }
.mcl-hero__particles span:nth-child(2)  { width: 5px;  height: 5px;  background: rgba(240,192,64,.5);  left: 80%; top: 15%; animation-duration: 11s; animation-delay: 1s;   }
.mcl-hero__particles span:nth-child(3)  { width: 10px; height: 10px; background: rgba(35,119,56,.5);   left: 60%; top: 70%; animation-duration: 9s;  animation-delay: 2s;   }
.mcl-hero__particles span:nth-child(4)  { width: 6px;  height: 6px;  background: rgba(178,217,187,.3); left: 30%; top: 80%; animation-duration: 12s; animation-delay: 0.5s; }
.mcl-hero__particles span:nth-child(5)  { width: 12px; height: 12px; background: rgba(45,146,69,.3);   left: 90%; top: 50%; animation-duration: 10s; animation-delay: 3s;   }
.mcl-hero__particles span:nth-child(6)  { width: 4px;  height: 4px;  background: rgba(255,255,255,.3); left: 5%;  top: 60%; animation-duration: 14s; animation-delay: 1.5s; }
.mcl-hero__particles span:nth-child(7)  { width: 7px;  height: 7px;  background: rgba(240,192,64,.4);  left: 45%; top: 10%; animation-duration: 7s;  animation-delay: 4s;   }
.mcl-hero__particles span:nth-child(8)  { width: 9px;  height: 9px;  background: rgba(178,217,187,.35);left: 70%; top: 85%; animation-duration: 13s; animation-delay: 2.5s; }

@keyframes mcl-float {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.4); }
}

/* Contenido del hero */
.mcl-hero .mcl-container { position: relative; z-index: 1; }

.mcl-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.mcl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}
.mcl-badge--gold  { background: var(--mcl-gold); color: #4a3800; }
.mcl-badge--white { background: rgba(255,255,255,.14); color: var(--mcl-white); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); }

.mcl-hero__title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--mcl-white);
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 700px;
}

.mcl-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 580px;
}

.mcl-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.mcl-hero__trust {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  letter-spacing: .02em;
}

/* Visualización de datos abstracta */
.mcl-hero__visual {
  margin-top: 56px;
  max-width: 700px;
}

.mcl-data-preview {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(178,217,187,.2);
  border-radius: var(--mcl-radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
}
.mcl-data-preview__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(178,217,187,.12);
}
.mcl-dp-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mcl-dp-dot--red    { background: #ff5f57; }
.mcl-dp-dot--yellow { background: #febc2e; }
.mcl-dp-dot--green  { background: #28c840; }
.mcl-dp-label {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-left: 6px;
  font-family: monospace;
}
.mcl-data-preview__body { padding: 8px 0; }
.mcl-dp-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.4fr 1fr;
  gap: 8px;
  padding: 8px 18px;
  font-size: .82rem;
}
.mcl-dp-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mcl-dp-row--head {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mcl-highlight);
  border-bottom: 1px solid rgba(178,217,187,.1);
  padding-bottom: 10px;
  margin-bottom: 2px;
}
.mcl-dp-row:not(.mcl-dp-row--head):not(.mcl-dp-row--loading) { color: rgba(255,255,255,.75); }
.mcl-dp-row--alt { background: rgba(255,255,255,.04); }
.mcl-dp-row--loading span {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.06) 100%);
  background-size: 200% 100%;
  animation: mcl-shimmer 1.5s ease-in-out infinite;
  display: block;
}
@keyframes mcl-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.mcl-data-preview__footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: rgba(0,0,0,.15);
  border-top: 1px solid rgba(178,217,187,.08);
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}

/* Separador ondulado */
.mcl-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.mcl-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}


/* ═══════════════════════════════════════════════════════════════
   ESTADÍSTICAS
   ═══════════════════════════════════════════════════════════════ */
.mcl-stats {
  padding: 56px 0;
  background: var(--mcl-white);
  border-bottom: 1px solid var(--mcl-border);
}

.mcl-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mcl-stat {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--mcl-border);
}
.mcl-stat:last-child { border-right: none; }

.mcl-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(35,119,56,.1);
  border-radius: 50%;
  margin: 0 auto 12px;
  color: var(--mcl-green);
}

.mcl-stat__value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--mcl-forest);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--mcl-forest), var(--mcl-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mcl-stat__value--animate {
  animation: mcl-pop-in .5s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes mcl-pop-in {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.mcl-stat__label {
  font-size: .88rem;
  color: var(--mcl-muted);
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════════
   CÓMO FUNCIONA
   ═══════════════════════════════════════════════════════════════ */
.mcl-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.mcl-steps__connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  flex-shrink: 0;
}

.mcl-step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 36px 24px;
  background: var(--mcl-white);
  border: 1px solid var(--mcl-border);
  border-radius: var(--mcl-radius);
  box-shadow: var(--mcl-shadow);
  position: relative;
  transition: var(--mcl-transition);
}
.mcl-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--mcl-shadow-lg);
  border-color: var(--mcl-highlight);
}

.mcl-step__number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mcl-green);
  color: var(--mcl-white);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 999px;
}

.mcl-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--mcl-bg);
  border: 2px solid var(--mcl-border);
  border-radius: 50%;
  margin: 0 auto 16px;
  color: var(--mcl-green);
  transition: var(--mcl-transition);
}
.mcl-step:hover .mcl-step__icon {
  background: rgba(35,119,56,.1);
  border-color: var(--mcl-highlight);
}

.mcl-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mcl-forest);
  margin: 0 0 10px;
}
.mcl-step__desc {
  font-size: .9rem;
  color: var(--mcl-muted);
  line-height: 1.6;
  margin: 0;
}

.mcl-how__cta {
  text-align: center;
  margin-top: 44px;
}


/* ═══════════════════════════════════════════════════════════════
   PAÍSES
   ═══════════════════════════════════════════════════════════════ */
.mcl-countries__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mcl-country-card {
  background: var(--mcl-white);
  border: 1px solid var(--mcl-border);
  border-radius: var(--mcl-radius);
  padding: 36px 32px;
  box-shadow: var(--mcl-shadow);
  transition: var(--mcl-transition);
  position: relative;
  overflow: hidden;
}
.mcl-country-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mcl-green), var(--mcl-green-mid));
}
.mcl-country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mcl-shadow-lg);
  border-color: var(--mcl-highlight);
}

.mcl-country-card--expanding::before {
  background: linear-gradient(90deg, var(--mcl-muted), var(--mcl-highlight));
}

.mcl-country-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.mcl-country-card__flag {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.15));
}
.mcl-country-card__name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--mcl-forest);
  margin: 0 0 6px;
}
.mcl-country-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.mcl-country-card__tag--active    { background: rgba(35,119,56,.12); color: var(--mcl-green); }
.mcl-country-card__tag--expanding { background: rgba(80,98,87,.1); color: var(--mcl-muted); }

.mcl-country-card__desc {
  font-size: .95rem;
  color: var(--mcl-muted);
  line-height: 1.65;
  margin: 0 0 24px;
}

.mcl-country-card__stats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mcl-country-card__stats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--mcl-forest);
  font-weight: 500;
}

.mcl-country-card__more-coming {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: .72rem;
  color: var(--mcl-muted);
  opacity: .6;
}


/* ═══════════════════════════════════════════════════════════════
   CARACTERÍSTICAS
   ═══════════════════════════════════════════════════════════════ */
.mcl-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.mcl-feat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--mcl-white);
  border: 1px solid var(--mcl-border);
  border-radius: var(--mcl-radius-sm);
  padding: 16px 18px;
  transition: var(--mcl-transition);
}
.mcl-feat-card:hover {
  border-color: var(--mcl-highlight);
  box-shadow: 0 4px 16px rgba(35,119,56,.1);
  transform: translateY(-2px);
}

.mcl-feat-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--mcl-bg);
  border-radius: var(--mcl-radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mcl-feat-card__content {
  flex: 1;
  min-width: 0;
}
.mcl-feat-card__content strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--mcl-forest);
  margin-bottom: 2px;
}
.mcl-feat-card__content span {
  font-size: .8rem;
  color: var(--mcl-muted);
}

.mcl-feat-card__badge {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.mcl-feat-card__badge--free  { background: rgba(35,119,56,.12); color: var(--mcl-green); }
.mcl-feat-card__badge--extra { background: rgba(240,192,64,.18); color: #8a6000; }

.mcl-features__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  font-size: .88rem;
  color: var(--mcl-muted);
}


/* ═══════════════════════════════════════════════════════════════
   POR QUÉ MERCLARI
   ═══════════════════════════════════════════════════════════════ */
.mcl-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mcl-why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(178,217,187,.15);
  border-radius: var(--mcl-radius);
  padding: 36px 32px;
  transition: var(--mcl-transition);
}
.mcl-why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(178,217,187,.3);
  transform: translateY(-2px);
}

.mcl-why-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(35,119,56,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mcl-why-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mcl-white);
  margin: 0 0 12px;
}
.mcl-why-card__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   PRECIOS
   ═══════════════════════════════════════════════════════════════ */
.mcl-pricing__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: start;
}

.mcl-pricing__table {
  background: var(--mcl-white);
  border: 1px solid var(--mcl-border);
  border-radius: var(--mcl-radius);
  overflow: hidden;
  box-shadow: var(--mcl-shadow);
}

.mcl-pricing__table-header {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--mcl-forest);
  color: var(--mcl-white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mcl-pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 24px;
  border-bottom: 1px solid var(--mcl-border);
  font-size: .9rem;
  color: var(--mcl-muted);
  transition: background .15s;
}
.mcl-pricing__row:hover { background: var(--mcl-bg); }
.mcl-pricing__row:last-child { border-bottom: none; }

.mcl-pricing__row--best {
  background: rgba(35,119,56,.06);
  font-weight: 700;
  color: var(--mcl-forest);
}
.mcl-pricing__row--best:hover { background: rgba(35,119,56,.1); }

.mcl-pricing__price {
  font-weight: 800;
  color: var(--mcl-forest);
  white-space: nowrap;
}
.mcl-pricing__price small {
  font-weight: 500;
  font-size: .8em;
  color: var(--mcl-muted);
}

.mcl-pricing__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mcl-pricing__feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.mcl-pricing__feat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(35,119,56,.1);
  border-radius: var(--mcl-radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mcl-pricing__feat strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--mcl-forest);
  margin-bottom: 4px;
}
.mcl-pricing__feat p {
  font-size: .88rem;
  color: var(--mcl-muted);
  line-height: 1.55;
  margin: 0;
}

.mcl-pricing__cta-wrap {
  padding-top: 8px;
  border-top: 1px solid var(--mcl-border);
}
.mcl-pricing__cta-wrap .mcl-btn { width: 100%; }
.mcl-pricing__legal {
  margin-top: 10px;
  font-size: .78rem;
  color: var(--mcl-muted);
  text-align: center;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.mcl-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.mcl-faq-item {
  border: 1px solid var(--mcl-border);
  border-radius: var(--mcl-radius-sm);
  margin-bottom: 12px;
  background: var(--mcl-white);
  overflow: hidden;
  transition: box-shadow .2s;
}
.mcl-faq-item:hover { box-shadow: 0 4px 16px rgba(35,119,56,.08); }
.mcl-faq-item.open  { border-color: var(--mcl-highlight); box-shadow: 0 4px 16px rgba(35,119,56,.1); }

.mcl-faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .98rem;
  font-weight: 700;
  color: var(--mcl-forest);
  transition: background .15s;
}
.mcl-faq-item__q:hover { background: var(--mcl-bg); }
.mcl-faq-item.open .mcl-faq-item__q { background: rgba(35,119,56,.06); color: var(--mcl-green); }

.mcl-faq-item__icon { flex-shrink: 0; color: var(--mcl-green); }
.mcl-faq-icon-plus  { display: block; }
.mcl-faq-icon-minus { display: none; }
.mcl-faq-item.open .mcl-faq-icon-plus  { display: none; }
.mcl-faq-item.open .mcl-faq-icon-minus { display: block; }

.mcl-faq-item__a {
  display: none;
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--mcl-muted);
  line-height: 1.7;
  border-top: 1px solid var(--mcl-border);
}
.mcl-faq-item.open .mcl-faq-item__a {
  display: block;
  animation: mcl-faq-open .2s ease both;
}
@keyframes mcl-faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mcl-faq-item__a > div { padding-top: 16px; }

.mcl-faq__contact {
  text-align: center;
  margin-top: 36px;
  font-size: .92rem;
  color: var(--mcl-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.mcl-faq__contact a {
  color: var(--mcl-green);
  font-weight: 600;
  text-decoration: none;
}
.mcl-faq__contact a:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════════ */
.mcl-cta {
  position: relative;
  background: linear-gradient(135deg, var(--mcl-dark) 0%, var(--mcl-forest) 40%, #1e5832 100%);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.mcl-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(35,119,56,.4) 0%, transparent 70%);
  pointer-events: none;
}

.mcl-cta__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mcl-cta__particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(178,217,187,.25);
  animation: mcl-float linear infinite;
}
.mcl-cta__particles span:nth-child(1) { width: 14px; height: 14px; left: 15%; top: 30%; animation-duration: 9s;  }
.mcl-cta__particles span:nth-child(2) { width: 8px;  height: 8px;  left: 75%; top: 20%; animation-duration: 11s; animation-delay: 2s; }
.mcl-cta__particles span:nth-child(3) { width: 10px; height: 10px; left: 40%; top: 70%; animation-duration: 8s;  animation-delay: 1s; }
.mcl-cta__particles span:nth-child(4) { width: 6px;  height: 6px;  left: 85%; top: 60%; animation-duration: 13s; animation-delay: 3s; }

.mcl-cta__content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.mcl-cta__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--mcl-white);
  margin: 0 0 18px;
  line-height: 1.15;
}
.mcl-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin: 0 0 40px;
}

.mcl-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.mcl-cta__trust {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin: 0;
  letter-spacing: .03em;
}


/* ═══════════════════════════════════════════════════════════════
   ANIMACIÓN DE REVEAL (scroll)
   ═══════════════════════════════════════════════════════════════ */
[data-mcl-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-mcl-reveal].mcl-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mcl-pricing__layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .mcl-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .mcl-stat { border-bottom: 1px solid var(--mcl-border); }
  .mcl-stat:nth-child(2) { border-right: none; }
  .mcl-why__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mcl-section   { padding: 60px 0; }
  .mcl-hero      { padding: 70px 0 110px; }
  .mcl-hero__visual { display: none; }

  .mcl-steps { flex-direction: column; align-items: center; }
  .mcl-steps__connector { display: none; }
  .mcl-step { max-width: 100%; width: 100%; }

  .mcl-countries__grid { grid-template-columns: 1fr; }
  .mcl-features__grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .mcl-stats__grid    { grid-template-columns: 1fr 1fr; }
  .mcl-features__grid { grid-template-columns: 1fr; }
  .mcl-hero__ctas     { flex-direction: column; }
  .mcl-hero__ctas .mcl-btn { width: 100%; justify-content: center; }
  .mcl-cta__buttons   { flex-direction: column; align-items: center; }
  .mcl-cta__buttons .mcl-btn { width: 100%; max-width: 300px; justify-content: center; }
  .mcl-dp-row { grid-template-columns: 2fr 1fr; }
  .mcl-dp-row span:nth-child(3),
  .mcl-dp-row span:nth-child(4) { display: none; }
  .mcl-dp-row--head span:nth-child(3),
  .mcl-dp-row--head span:nth-child(4) { display: none; }
}

/* Accesibilidad: reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  [data-mcl-reveal]           { opacity: 1; transform: none; transition: none; }
  .mcl-hero__particles span,
  .mcl-cta__particles span    { animation: none; opacity: 0; }
  .mcl-dp-row--loading span   { animation: none; }
}
