﻿/* =============================================================
   OLISEARCH â€” Estilos del tema
   ============================================================= */

/* ---- Header ---- */
.site-header {
  position:      sticky;
  top:           0;
  z-index:       100;
  background:    #FFF0E8;
  border-bottom: 1px solid transparent;
  transition:    background .25s, box-shadow .25s, border-color .25s;
}
.site-header.is-scrolled {
  background:          var(--color-n0);
  border-bottom-color: var(--color-n100);
  box-shadow:          var(--shadow-low);
}

.site-header__inner {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  height:          72px;
  gap:             var(--space-6);
}

/* Logo */
.site-logo { text-decoration: none; flex-shrink: 0; }
.site-logo img { height: 36px; width: auto; }
.site-logo__wordmark {
  font-family:     var(--font-display);
  font-size:       18px;
  font-weight:     var(--weight-bold);
  color:           var(--color-text-primary);
  letter-spacing:  -0.3px;
  line-height:     1;
}
.site-logo__accent { color: var(--color-brand); }

/* Nav principal */
.primary-nav { flex: 1; display: flex; align-items: center; justify-content: center; }

.primary-nav__list {
  list-style: none;
  display:    flex;
  align-items: center;
  gap:        var(--space-6);
  padding:    0;
  margin:     0;
}

.nav-item {
  position:   relative;
  list-style: none;
}

.primary-nav .nav-item__link {
  display:         flex;
  justify-content: center;
  align-items:     center;
  gap:             var(--space-2);
  padding:         8px var(--space-4);
  border-radius:   6px;
  font-family:     var(--font-heading);
  font-size:       var(--text-cta);
  font-weight:     var(--weight-regular);
  color:           var(--color-text-primary);
  text-decoration: none;
  white-space:     nowrap;
  transition:      text-shadow .15s;
}
.primary-nav .nav-item__link:hover,
.primary-nav .nav-item.is-active > .nav-item__link {
  color:       var(--color-text-primary);
  /* background:  var(--color-brand-tint); */
  text-shadow: 0 0 0.4px currentColor, 0 0 0.4px currentColor;
}

.nav-item__chevron-btn {
  background:      none;
  border:          none;
  cursor:          pointer;
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  padding:         0 4px;
  color:           inherit;
  flex-shrink:     0;
  line-height:     1;
}
.nav-item__chevron-btn:focus-visible {
  outline:        2px solid var(--color-brand);
  outline-offset: 2px;
  border-radius:  var(--radius-s);
}

.nav-item--has-dropdown {
  display:     flex;
  align-items: center;
}

.nav-item__chevron {
  display:     inline-block;
  width:       12px;
  height:      12px;
  color:       currentColor;
  flex-shrink: 0;
  transition:  transform .2s;
}
.nav-item__chevron-btn[aria-expanded="true"] .nav-item__chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position:      absolute;
  top:           calc(100% + 4px);
  left:          0;
  transform:     translateY(-4px);
  min-width:     180px;
  background:    var(--color-n0);
  border:        1px solid var(--color-n100);
  border-radius: var(--radius-s);
  box-shadow:    var(--shadow-medium);
  padding:       var(--space-2) 0;
  list-style:    none;
  margin:        0;
  z-index:       200;
  pointer-events: none;
  opacity:       0;
  visibility:    hidden;
  transition:    opacity .15s, visibility .15s, transform .15s;
}
/* Puente invisible que cubre el gap de 4px entre trigger y panel,
   evita que el :hover se pierda al mover el ratón hacia abajo */
.nav-dropdown::before {
  content:  '';
  position: absolute;
  bottom:   100%;
  left:     0;
  right:    0;
  height:   8px;
}
.nav-item--has-dropdown:hover,
.nav-item--has-dropdown.is-open {
  z-index: 10;
}
.nav-item--has-dropdown:hover > .nav-dropdown,
.nav-item--has-dropdown.is-open > .nav-dropdown {
  pointer-events: auto;
  opacity:        1;
  visibility:     visible;
  transform:      translateY(0);
}
.nav-dropdown .nav-item { list-style: none; }
.nav-dropdown .nav-item__link {
  justify-content: flex-start;
  padding:         8px var(--space-4);
  font-size:       var(--text-cta);
  font-weight:     var(--weight-regular);
  color:           var(--color-text-secondary);
}
.nav-dropdown .nav-item__link:hover {
  background:  var(--color-brand-tint);
  color:       var(--color-text-primary);
  text-shadow: 0 0 0.4px currentColor, 0 0 0.4px currentColor;
}

/* CTAs del header */
.header-ctas {
  display:     flex;
  align-items: center;
  gap:         var(--space-4);
  flex-shrink: 0;
}

/* Header buttons → .oli-btn (design-system.css) */

/* Icono de login */
.header-login-icon {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  width:           36px;
  height:          36px;
  color:           var(--color-text-primary);
  border-radius:   50%;
  transition:      color 0.2s, background 0.2s;
  flex-shrink:     0;
}
.header-login-icon:hover {
  color:      var(--color-primary);
  background: rgba(0,0,0,.05);
}
.header-login-icon svg { display: block; }

.nav-mobile-cta          { display: none; }
.nav-mobile-cta--primary { display: none; }
.nav-mobile-login        { display: none; }

/* Hamburger (mÃ³vil) */
.nav-toggle {
  display:     none;
  background:  none;
  border:      none;
  cursor:      pointer;
  padding:     var(--space-2);
  color:       var(--color-text-primary);
  flex-shrink: 0;
}
.nav-toggle svg { width: 24px; height: 24px; flex-shrink: 0; }


/* ---- Footer ---- */
.site-footer {
  background:  var(--color-n70);
  padding-top: 64px;
}

.site-footer__inner {
  display:        flex;
  flex-direction: column;
  gap:            48px;
}

.site-footer__grid {
  display:               grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:                   var(--space-8);
}

/* Brand */
.footer-logo { display: inline-block; }
.footer-logo img { width: 175px; height: 40px; object-fit: contain; }
.footer-logo .site-logo__wordmark { font-size: 20px; }

.footer-tagline {
  font-family: 'Roboto', sans-serif;
  font-size:   16px;
  font-weight: 300;
  line-height: 24px;
  color:       #4c4e4b;
  margin-top:  0;
  width:       auto;
  max-width:   100%;
}

/* Columnas nav */
.footer-col__heading {
  font-family:   var(--font-heading);
  font-size:     var(--text-body-l);
  font-weight:   var(--weight-regular);
  line-height:   var(--lh-body-l);
  color:         var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.footer-col__list {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        var(--space-2);
  padding:    0;
  margin:     0;
}

.footer-col__list a {
  font-family: var(--font-heading);
  font-size:   var(--text-body-s);
  font-weight: var(--weight-regular);
  line-height: 1.4;
  color:       #656963;
}
.footer-col__list a:hover { color: var(--color-brand); }

/* Barra inferior */
.site-footer__bottom {
  display:    flex;
  align-items: center;
  padding:    24px 0 48px;
  border-top: 1px solid var(--color-n300);
}

.footer-copy {
  font-family: 'Roboto', sans-serif;
  font-size:   14px;
  font-weight: 300;
  line-height: 1.3;
  color:       #4c4e4b;
  margin:      0;
}

.footer-social {
  display:     flex;
  align-items: center;
  gap:         var(--space-4);
}

.footer-social__link {
  display:          flex;
  align-items:      center;
  justify-content:  center;
  width:            36px;
  height:           36px;
  border-radius:    var(--radius-full);
  background:       var(--color-n0);
  color:            var(--color-text-primary);
  transition:       color .2s, background-color .2s;
}
.footer-social__link:hover {
  color:      var(--color-brand);
  background: var(--color-brand-tint);
}


/* ---- Hero Block ---- */
.block-hero {
  background: var(--color-ink);
  color:      var(--color-text-on-dark);
  padding:    80px 0;
  overflow:   hidden;
  position:   relative;
}

.block-hero__inner {
  display:         grid;
  grid-template-columns: 1fr 1fr;
  align-items:     center;
  gap:             var(--space-8);
}

.block-hero__badge   { margin-bottom: var(--space-4); }
.block-hero__title   { font-size: var(--text-h2); font-weight: var(--weight-black); line-height: var(--lh-h2); letter-spacing: var(--ls-h2); margin-bottom: var(--space-6); }
.block-hero__excerpt { font-size: var(--text-body-l); color: var(--color-n300); margin-bottom: var(--space-8); max-width: 520px; }
.block-hero__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.block-hero__image   { border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-very-high); }
.block-hero__image img { width: 100%; height: auto; }


/* ---- Features Block ---- */
.block-features { padding: var(--space-10) 0; }

.block-features__header { text-align: center; margin-bottom: var(--space-8); }
.block-features__header h2 { margin-bottom: var(--space-4); }
.block-features__header p  { font-size: var(--text-body-l); color: var(--color-text-secondary); max-width: 600px; margin: 0 auto; }

.block-features__grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   var(--space-6);
}

.feature-card {
  background:    var(--color-n50);
  border-radius: var(--radius-m);
  padding:       var(--space-6);
  transition:    transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }

.feature-card__icon {
  width:            48px;
  height:           48px;
  border-radius:    var(--radius-s);
  background:       var(--color-brand-tint);
  display:          flex;
  align-items:      center;
  justify-content:  center;
  margin-bottom:    var(--space-4);
  color:            var(--color-brand);
}
.feature-card h3 { font-size: var(--text-h4); margin-bottom: var(--space-2); }
.feature-card p  { font-size: var(--text-body-m); color: var(--color-text-secondary); }


/* ---- Stats Block ---- */
.block-stats {
  background: var(--color-brand);
  color:      var(--color-text-on-dark);
  padding:    var(--space-10) 0;
}

.block-stats__grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   var(--space-6);
  text-align:            center;
}

.stat-item__number {
  font-family:    var(--font-mono);
  font-size:      var(--text-h2);
  font-weight:    var(--weight-black);
  line-height:    var(--lh-h1);
  display:        block;
  margin-bottom:  var(--space-2);
}
.stat-item__label { font-size: var(--text-body-m); opacity: .85; }


/* ---- CTA Banner Block ---- */
.block-cta-banner {
  background:    var(--color-n50);
  border-radius: var(--radius-m);
  padding:       var(--space-10) var(--space-8);
  text-align:    center;
  margin:        var(--space-10) 0;
}
.block-cta-banner h2 { margin-bottom: var(--space-4); }
.block-cta-banner p  { font-size: var(--text-body-l); color: var(--color-text-secondary); max-width: 560px; margin: 0 auto var(--space-6); }
.block-cta-banner__actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }


/* ---- FAQ Block ---- */
.block-faq { padding: var(--space-10) 0; }
.block-faq__header { text-align: center; margin-bottom: var(--space-8); }

.faq-item {
  border-bottom: 1px solid var(--color-n200);
  padding:       var(--space-4) 0;
}
.faq-item__question {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  cursor:          pointer;
  font-size:       var(--text-body-l);
  font-weight:     var(--weight-semibold);
  color:           var(--color-text-primary);
  gap:             var(--space-4);
  background:      none;
  border:          none;
  width:           100%;
  text-align:      left;
  padding:         0;
}
.faq-item__question svg { flex-shrink: 0; transition: transform .2s; color: var(--color-brand); }
.faq-item.is-open .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer {
  font-size:   var(--text-body-m);
  color:       var(--color-text-secondary);
  max-height:  0;
  overflow:    hidden;
  transition:  max-height .3s ease, padding .3s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 600px; padding-top: var(--space-4); }

/* ---- Home FAQ section ---- */
.home-faq { padding: 80px 0; }
.home-faq__header { text-align: center; margin-bottom: 56px; }
.home-faq__title {
  font-family:     'DM Sans', sans-serif;
  font-size:       44px;
  font-weight:     500;
  line-height:     48.4px;
  letter-spacing:  -0.88px;
  color:           #09090B;
  margin:          0;
}
.home-faq__list {
  width: 100%;
}
.home-faq__list .faq-item {
  border-bottom: 1px solid rgba(9,9,11,.1);
  border-top:    none;
  padding:       16px 0;
}
.home-faq__list .faq-item__question {
  font-size:   16px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}


/* ---- Wave dividers ---- */
.home-wave,
.agencia-wave { display: block; line-height: 0; background: #fff; }
.home-wave svg,
.agencia-wave svg { display: block; width: 100%; height: 40px; }

/* ---- Home CTA Final ---- */
.home-cta-final {
  position:   relative;
  overflow:   hidden;
  background: #eb650a;
  padding:    60px 0;
}
.home-cta-final__orb {
  position:       absolute;
  border-radius:  200px;
  filter:         blur(9.7px);
  background:     linear-gradient(233.18deg, rgba(255,255,255,0) 48.6%, rgba(255,255,255,.25) 88.4%);
  pointer-events: none;
}
.home-cta-final__orb--left {
  width:     304px;
  height:    304px;
  left:      -120px;
  bottom:    -60px;
  transform: rotate(150deg);
}
.home-cta-final__orb--right {
  width:     264px;
  height:    264px;
  right:     -120px;
  top:       -3px;
  transform: rotate(26.23deg);
}
.home-cta-final__inner {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            40px;
  text-align:     center;
  margin:         auto;
  max-width:      588px;
}
.home-cta-final__inner--form {
  max-width: 630px;
}
.home-cta-final__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    1.1;
  letter-spacing: -0.88px;
  color:          #fff;
  margin:         0;
}
.home-cta-final__subtitle {
  font-size:   20px;
  font-weight: 400;
  color:       rgba(255,255,255,.85);
  margin:      -16px 0 0;
}
.home-cta-final__actions {
  display:         flex;
  gap:             16px;
  align-items:     center;
  flex-wrap:       wrap;
  justify-content: center;
}
/* Buttons on orange bg — invert colors */
.home-cta-final .oli-btn--primary { background: #fff; color: #eb650a; box-shadow: none; filter: none; }
.home-cta-final .oli-btn--primary:hover { filter: none; opacity: .9; }
.home-cta-final .oli-btn--secondary { background: linear-gradient(180deg, rgba(9,9,11,.02) 0%, rgba(9,9,11,.04) 100%); border: 1px solid rgba(9,9,11,.2); color: #fff; box-shadow: none; }
.home-cta-final .oli-btn--secondary:hover { opacity: .8; box-shadow: none; }

/* ---- CTA Final — Contact Form 7 ---- */
.home-cta-final__form { width: 100%; }

.home-cta-final .wpcf7 { width: 100%; }

.home-cta-final .wpcf7-form {
  display:        flex;
  flex-direction: column;
  gap:            16px;
  text-align:     left;
}

/* Fila de dos columnas (Empresa | Persona de contacto) */
.home-cta-final .cta-form__row {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   16px;
}

.home-cta-final .wpcf7-form-control-wrap {
  display: block;
  width:   100%;
}

/* Inputs y textarea */
.home-cta-final .wpcf7-form input[type="text"],
.home-cta-final .wpcf7-form input[type="email"],
.home-cta-final .wpcf7-form input[type="tel"],
.home-cta-final .wpcf7-form textarea {
  width:       100%;
  padding:     14px 16px;
  border:      1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  background:  rgba(255,255,255,.1);
  color:       #fff;
  font-family: var(--font-heading);
  font-size:   16px;
  font-weight: 400;
  line-height: 1.3;
  box-sizing:  border-box;
  outline:     none;
  transition:  border-color .2s;
}
.home-cta-final .wpcf7-form input[type="text"]:focus,
.home-cta-final .wpcf7-form input[type="email"]:focus,
.home-cta-final .wpcf7-form input[type="tel"]:focus,
.home-cta-final .wpcf7-form textarea:focus {
  border-color: rgba(255,255,255,.7);
}
.home-cta-final .wpcf7-form input::placeholder,
.home-cta-final .wpcf7-form textarea::placeholder {
  color: rgba(255,255,255,.55);
}
.home-cta-final .wpcf7-form textarea {
  resize:     vertical;
  min-height: 53px;
}

/* Aceptación (checkbox privacidad) */
.home-cta-final .cta-form__acceptance { display: block; }
.home-cta-final .wpcf7-acceptance .wpcf7-list-item {
  display:     flex;
  align-items: flex-start;
  gap:         10px;
  margin:      0;
}
.home-cta-final .wpcf7-acceptance input[type="checkbox"] {
  width:       15px;
  height:      15px;
  flex-shrink: 0;
  margin-top:  2px;
  cursor:      pointer;
  accent-color:#fff;
}
.home-cta-final .wpcf7-acceptance .wpcf7-list-item-label {
  font-size:   10px;
  font-weight: 400;
  color:       rgba(255,255,255,.7);
  line-height: 1.5;
}
.home-cta-final .wpcf7-acceptance .wpcf7-list-item-label a {
  color:           rgba(255,255,255,.85);
  text-decoration: underline;
}

/* Botón submit */
.home-cta-final .wpcf7-submit {
  appearance:   none;
  display:      inline-flex;
  align-items:  center;
  padding:      12px 24px;
  background:   #fff;
  color:        #eb650a;
  border:       none;
  border-radius:8px;
  font-family:  var(--font-heading);
  font-size:    16px;
  font-weight:  500;
  cursor:       pointer;
  transition:   opacity .2s;
}
.home-cta-final .wpcf7-submit:hover { opacity: .9; }

/* Mensajes de validación y respuesta */
.home-cta-final .wpcf7-not-valid { border-color: rgba(255,80,80,.7) !important; }
.home-cta-final .wpcf7-not-valid-tip {
  color:      rgba(255,180,180,.9);
  font-size:  12px;
  margin-top: 4px;
  display:    block;
}
.home-cta-final .wpcf7-response-output {
  color:         rgba(255,255,255,.9);
  font-size:     14px;
  padding:       8px 12px;
  border-radius: 6px;
  border:        1px solid rgba(255,255,255,.3);
  margin:        0;
}

/* ---- Testimonials Block ---- */
.block-testimonials { background: var(--color-n50); padding: var(--space-10) 0; }
.block-testimonials__header { text-align: center; margin-bottom: var(--space-8); }

.testimonials-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   var(--space-6);
}

.testimonial-card {
  background:    var(--color-n0);
  border-radius: var(--radius-m);
  padding:       var(--space-6);
  box-shadow:    var(--shadow-low);
}
.testimonial-card__quote {
  font-size:     var(--text-body-l);
  color:         var(--color-text-secondary);
  margin-bottom: var(--space-6);
  line-height:   var(--lh-body-l);
}
.testimonial-card__author { display: flex; align-items: center; gap: var(--space-4); }
.testimonial-card__avatar { width: 48px; height: 48px; border-radius: var(--radius-full); object-fit: cover; }
.testimonial-card__name   { font-weight: var(--weight-semibold); font-size: var(--text-body-m); }
.testimonial-card__role   { font-size: var(--text-body-xs); color: var(--color-text-tertiary); }


/* ---- PÃ¡gina de Contacto ---- */

/* Hero */
.contact-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 80px;
  padding-bottom: 0;
}

.contact-hero__badge {
  display: inline-flex;
  padding: 6px 16px;
  align-items: flex-start;
  border-radius: 28px;
  background: #F4E8FC;
  color: #9052A8;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
}

.contact-hero__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 500;
  line-height: 61.6px;
  color: var(--color-text-primary);
  text-align: center;
  max-width: 936px;
  margin: 0;
  letter-spacing: normal;
}

.contact-hero__subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-body-m);
  font-weight: var(--weight-regular);
  line-height: 20.8px;
  color: #4C4E4B;
  text-align: center;
  max-width: 636px;
  margin: 0;
}

/* Content */
.contact-content {
  padding: 80px 0;
}
.contact-grid {
  display: flex;
  gap: 52px;
  align-items: center;
  justify-content: center;
}
/* Formulario */
.contact-form-card {
  display: flex;
  width: 704px;
  flex-shrink: 0;
  padding: 36px 60px;
  flex-direction: column;
  gap: 28px;
  border-radius: var(--radius-m);
  border: 1px solid var(--color-n300);
  background: var(--color-n0);
  box-shadow: none;
}
.contact-form-card:hover { box-shadow: none; }

.contact-form-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-card__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-text-primary);
}

.contact-form-card__subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-body-m);
  font-weight: var(--weight-regular);
  line-height: 20.8px;
  color: #4C4E4B;
  margin: 0;
}

.contact-form {
  display:        flex;
  flex-direction: column;
  gap:            36px;
}

.contact-form__fields {
  display:        flex;
  flex-direction: column;
  gap:            18px;
}

.contact-form__row {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   16px;
}

.contact-form__field {
  display:        flex;
  flex-direction: column;
  gap:            8px;
}

.contact-form__label {
  font-family: var(--font-heading);
  font-size: var(--text-body-s);
  font-weight: var(--weight-regular);
  line-height: 1.4;
  color: var(--color-text-primary);
}

.contact-form__required {
  color: var(--color-brand);
  margin-left: 2px;
}

.contact-form-card .input {
  display: flex;
  padding: 16px 13px;
  align-items: center;
  border-radius: 12px;
  border: 1px solid var(--color-n300);
  font-family: var(--font-heading);
  font-size: var(--text-body-s);
  font-weight: var(--weight-regular);
  line-height: 1.4;
  color: #4c4e4b;
  background: var(--color-n0);
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: none;
}
.contact-form-card .input::placeholder { color: #4c4e4b; }
.contact-form-card .input:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-brand-tint);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__gdpr {
  display:        flex;
  flex-direction: column;
  gap:            12px;
}

.contact-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.contact-form__checkbox {
  width:        15px;
  height:       15px;
  flex-shrink:  0;
  margin-top:   1px;
  border-radius: 4px;
  accent-color: var(--color-brand);
  cursor: pointer;
}

.contact-form__check-text,
.contact-form__legal {
  font-family: var(--font-heading);
  font-size:   var(--text-body-xs);
  font-weight: var(--weight-regular);
  line-height: 1.1;
  color:       #656963;
}
.contact-form__legal { margin: 0; }

.contact-form__feedback {
  font-size: var(--text-body-s);
  padding: var(--space-2) var(--space-4);
  border-radius: 14px;
  display: none;
}
.contact-form__feedback.is-success { display: block; background: var(--color-success-bg); color: var(--color-success-text); }
.contact-form__feedback.is-error   { display: block; background: var(--color-error-bg);   color: var(--color-error-text); }

.contact-form__submit {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 100%;
  border-radius: var(--radius-m);
  background: var(--gradient-btn);
  box-shadow: 0 1px 2px -1px rgba(0,0,0,.10), 0 1px 3px 0 rgba(0,0,0,.10);
  color: var(--color-n0);
  font-family: var(--font-heading);
  font-size: var(--text-body-m);
  font-weight: var(--weight-medium);
  border: none;
  cursor: pointer;
  transition: filter .2s;
}
.contact-form__submit:hover    { filter: brightness(.93); color: var(--color-n0); }
.contact-form__submit:disabled { opacity: .7; cursor: not-allowed; }

/* ---- Contact Form 7 â€” integraciÃ³n de estilos ---- */

/* Ocultar fieldset de inputs ocultos (CF7 6.x) */
.wpcf7 .hidden-fields-container { display: none; }

/* Layout del formulario: columna con gap */
.wpcf7 form {
  margin:         0;
  display:        flex;
  flex-direction: column;
  gap:            18px;
}

/* PÃ¡rrafo del submit y response (directos del form) */
.wpcf7 form > p { margin: 0; }

/* Cada campo CF7: label encima del input, sin margen extra */
.contact-form__field p {
  margin:         0;
  display:        flex;
  flex-direction: column;
  gap:            6px;
}

/* PÃ¡rrafo contenedor del gdpr */
.contact-form__gdpr p { margin: 0; }

/* El wrap de CF7 debe ser bloque para que width:100% del input funcione */
.wpcf7-form-control-wrap { display: block; }

/* Eliminar <br> generados por CF7 en el template */
.contact-form__field br,
.contact-form__gdpr br { display: none; }


/* Checkbox acceptance: hacer transparentes los wrappers para que el flex
   de .contact-form__check-label coloque el checkbox y el texto en lÃ­nea */
.contact-form__gdpr .wpcf7-form-control-wrap,
.contact-form__gdpr .wpcf7-acceptance,
.contact-form__gdpr .wpcf7-list-item { display: contents; }

/* Ocultar spinner de CF7 */
.wpcf7-spinner { display: none !important; }

/* Mensajes de respuesta */
.wpcf7-response-output {
  font-size:     var(--text-body-s);
  padding:       var(--space-2) var(--space-4);
  border-radius: var(--radius-s);
  margin:        0;
  border:        none;
}
.wpcf7 form.sent    .wpcf7-response-output { background: var(--color-success-bg); color: var(--color-success-text); }
.wpcf7 form.failed  .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output { background: var(--color-error-bg);   color: var(--color-error-text);   }

/* Errores de campo */
.wpcf7-not-valid-tip {
  font-size:  var(--text-body-s);
  color:      var(--color-error-text);
  margin-top: 4px;
  display:    block;
}
.wpcf7-form-control.wpcf7-not-valid { border-color: var(--color-error-text); }
.wpcf7 .ajax-loader { display: none; }

/* Info columna derecha */
.contact-info {
  display: flex;
  width: 422px;
  flex-shrink: 0;
  flex-direction: column;
  gap: 24px;
}

.contact-info__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__card {
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 16px;
  border-radius: var(--radius-m);
  background: #F6F7F9;
  box-shadow: var(--shadow-low);
}

.contact-info__icon {
  display: flex;
  width: 44px;
  height: 44px;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ef5e3a 0%, #f47a42 100%);
  color: var(--color-n0);
}

.contact-info__label {
  font-family: var(--font-heading);
  font-size: var(--text-body-m);
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.contact-info__value {
  font-family: var(--font-heading);
  font-size: var(--text-body-s);
  font-weight: var(--weight-regular);
  line-height: 1.4;
  color: #4c4e4b;
  text-decoration: none;
}
a.contact-info__value:hover { color: var(--color-brand); }

/* Banner CTA */
.contact-cta-card {
  display: flex;
  padding: 20px;
  align-items: center;
  border-radius: 22px;
  background: #eb650a;
  overflow: hidden;
  position: relative;
}

.contact-cta-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: auto;
}

.contact-cta-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  color: var(--color-n0);
  margin: 0;
}

.contact-cta-card__text {
  font-family: var(--font-heading);
  font-size: var(--text-body-s);
  font-weight: var(--weight-regular);
  line-height: 1.4;
  color: rgba(255,255,255,.85);
  margin: 0;
}

.contact-cta-card__btn {
  display: inline-flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  background: #fff;
  color: #eb650a;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: filter .2s;
}
.contact-cta-card__btn:hover { filter: brightness(.96); color: #eb650a; }

.contact-cta-card__deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  border-radius: 9999px;
  background: rgba(255,255,255,.15);
  filter: blur(20px);
  pointer-events: none;
}

/* ---- Home Hero ---- */
.home-hero {
  background: #FFF0E8;
  position:   relative;
  overflow:   hidden;
  padding:    142px 0 80px;
}

.home-hero__bg-deco {
  position:       absolute;
  top:            50%;
  right:          max(0px, calc((100vw - 1320px) / 2));
  transform:      translateY(-50%);
  width:          688px;
  pointer-events: none;
  z-index:        0;
}

.home-hero__bg-deco img {
  display: block;
  width:   100%;
  height:  auto;
}

.home-hero__inner {
  display:     flex;
  align-items: center;
  gap:         68px;
  position:    relative;
  z-index:     1;
}

.home-hero__text {
  flex:           1 1 0;
  min-width:      0;
  max-width:      644px;
  display:        flex;
  flex-direction: column;
  gap:            32px;
}

.home-hero__text-top {
  display:        flex;
  flex-direction: column;
  gap:            24px;
}

.home-hero__title {
  font-family: var(--font-heading);
  font-size:   56px;
  font-weight: 500;
  line-height: 110%;
  color:       var(--color-text-primary);
  max-width:   608px;
}

.home-hero__subtitle {
  font-family: var(--font-heading);
  font-size:   20px;
  font-weight: var(--weight-regular);
  line-height: 28px;
  color:       var(--color-text-tertiary);
  max-width:   624px;
  margin:      0;
}

.home-hero__platforms {
  display:     flex;
  align-items: center;
  gap:         12px;
  flex-wrap:   wrap;
}

.home-hero__platforms-label {
  font-family: var(--font-heading);
  font-size:   14px;
  font-weight: 500;
  color:       var(--color-text-tertiary);
}

.home-hero__platforms-list {
  display:     flex;
  align-items: center;
  gap:         24px;
}

.home-hero__platform-item {
  display:     inline-flex;
  align-items: center;
  gap:         8px;
}

.home-hero__platform-name {
  font-family: var(--font-heading);
  font-size:   14px;
  font-weight: 500;
  line-height: 1.4;
  color:       var(--color-text-tertiary);
}

.home-hero__ctas {
  display:     flex;
  align-items: center;
  gap:         16px;
  flex-wrap:   wrap;
}

/* Marco / browser */
.home-hero__browser {
  flex:          0 0 532px;
  width:         532px;
  height:        420px;
  border-radius: 17px;
  background:    rgba(157, 160, 155, 0.2);
  border:        1.18px solid #E0E4DF;
  box-shadow:    0 1.71px 3.41px 0 rgba(0, 0, 0, 0.2);
  position:      relative;
  overflow:      hidden;
}

.home-hero__browser-dots {
  position:    absolute;
  left:        27px;
  top:         14px;
  display:     flex;
  align-items: center;
  gap:         9px;
  z-index:     3;
}

.home-hero__browser-dot {
  width:         14px;
  height:        14px;
  border-radius: 100%;
  flex-shrink:   0;
}
.home-hero__browser-dot--red    { background: #ec6a5e; }
.home-hero__browser-dot--yellow { background: #f5be4f; }
.home-hero__browser-dot--green  { background: #62c554; }

.home-hero__browser-content {
  position: absolute;
  top:      37px;
  left:     0;
  right:    0;
  bottom:   0;
  overflow: hidden;
}

.home-hero__browser-content img,
.home-hero__browser-content video {
  display:         block;
  width:           100%;
  height:          100%;
  object-fit:      cover;
  object-position: top left;
}

/* ---- Página de Gracias ---- */
.gracias-hero .container {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  text-align:      center;
  gap:             24px;
  padding-top:     120px;
  padding-bottom:  120px;
}
.gracias-hero__icon {
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           72px;
  height:          72px;
  border-radius:   50%;
  background:      var(--color-primary, #f36402);
  flex-shrink:     0;
}
.gracias-hero__title {
  font-family:    var(--font-ui);
  font-size:      clamp(36px, 6vw, 56px);
  font-weight:    var(--weight-bold);
  line-height:    1.15;
  color:          var(--color-text-primary);
  margin:         0;
  max-width:      640px;
}
.gracias-hero__subtitle {
  font-family: var(--font-heading);
  font-size:   var(--text-body-m);
  font-weight: var(--weight-regular);
  line-height: 1.5;
  color:       #4c4e4b;
  margin:      0;
  max-width:   520px;
}
.gracias-hero__cta {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  margin-top:      8px;
  padding:         14px 32px;
  background:      var(--color-primary, #f36402);
  color:           #fff;
  font-family:     var(--font-heading);
  font-size:       16px;
  font-weight:     700;
  line-height:     1.4;
  border-radius:   100px;
  text-decoration: none;
  transition:      background .2s;
}
.gracias-hero__cta:hover { background: #d45500; }

@media (max-width: 767px) {
  .gracias-hero .container { padding-top: 72px; padding-bottom: 72px; }
}

/* ---- 404 ---- */
.error-404 { text-align: center; padding: 120px 0; }
.error-404 .error-code { font-family: var(--font-mono); font-size: 160px; font-weight: var(--weight-black); color: var(--color-n200); line-height: 1; }
.error-404 h1 { margin-bottom: var(--space-4); }
.error-404 p  { font-size: var(--text-body-l); color: var(--color-text-secondary); margin-bottom: var(--space-8); }


/* ---- Responsive ---- */

/* ================================================================
   LOGOS SECTION (home-logos)
   ================================================================ */

.home-logos {
  background: #F6F7F9;
  padding:    48px 0;
  overflow:   hidden;
}

.home-logos .container {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            24px;
}

.home-logos__text {
  font-family: var(--font-heading);
  font-size:   16px;
  font-weight: var(--weight-regular);
  line-height: 1.5;
  color:       var(--color-text-tertiary);
  text-align:  center;
  margin:      0;
}

.home-logos__track-wrap {
  width:    100%;
  overflow: hidden;
  position: relative;
}

/* Fade masks on both sides */
.home-logos__track-wrap::before,
.home-logos__track-wrap::after {
  content:    '';
  position:   absolute;
  top:        0;
  bottom:     0;
  width:      80px;
  z-index:    2;
  pointer-events: none;
}
.home-logos__track-wrap::before {
  left:       0;
  background: linear-gradient(to right, #F6F7F9, transparent);
}
.home-logos__track-wrap::after {
  right:      0;
  background: linear-gradient(to left, #F6F7F9, transparent);
}

.home-logos__track {
  display:         flex;
  align-items:     center;
  gap:             48px;
  width:           max-content;
  animation:       logos-scroll 30s linear infinite;
}

.home-logos__track:hover { animation-play-state: paused; }

.home-logos__item {
  display:     flex;
  align-items: center;
  flex-shrink: 0;
  opacity:     0.6;
  transition:  opacity 0.2s ease;
}

.home-logos__item:hover { opacity: 1; }

.home-logos__item img {
  display:    block;
  height:     40px;
  width:      auto;
  max-width:  200px;
  object-fit: contain;
}

@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .home-logos             { padding: 32px 0; }
  .home-logos .container  { gap: 16px; }
  .home-logos__track-wrap::before,
  .home-logos__track-wrap::after { width: 40px; }
}

/* ================================================================
   FEATURES SECTION (home-features / feat-card)
   ================================================================ */

/* Etiqueta de sección — color configurable via CSS vars (override con inline style) */
.section-tag,
.home-features__tag {
  display:        inline-flex;
  align-items:    center;
  padding:        6px 16px;
  border-radius:  28px;
  background:     var(--tag-bg, #F4E8FC);
  color:          var(--tag-color, #9052A8);
  font-family:    var(--font-heading);
  font-size:      14px;
  font-weight:    500;
  line-height:    19.6px;
  letter-spacing: 0;
}

/* Texto resaltado naranja — usado globalmente via oli_hl() */
.home-features__title-hl {
  background: linear-gradient(90deg, #E43C11 0%, #E95D18 64.42%, #F08A22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
  padding-right: 0.08em;
  display: inline;
}

/* btn-cta → .oli-btn (design-system.css) */

/* Sección */
.home-features { background: var(--color-n0); }

/* Cabeceras de sección: patrón compartido */
.home-features__header,
.home-steps__header,
.home-usecases__header,
.home-analytics__header,
.home-compatibility__header {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
}

.home-features__header { gap: 16px; margin-bottom: 48px; }

.home-features__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    48.4px;
  letter-spacing: -0.88px;
  color:          var(--color-text-primary);
  margin:         0;
  max-width:      650px;
}

/* Grid 3×2 */
.home-features__grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   30px;
}

/* Card base */
.feat-card {
  display:         flex;
  flex-direction:  column;
  justify-content: space-between;
  background:      #f9fafb;
  border:          0.5px solid var(--color-n300);
  border-radius:   var(--radius-m);
  box-shadow:      var(--shadow-low);
  overflow:        hidden;
  min-height:      380px;
  padding:         32px 0;
}

.feat-card__text {
  display:        flex;
  flex-direction: column;
  gap:            12px;
  padding:        0 32px;
}

.feat-card__label {
  font-family:    var(--font-heading);
  font-size:      14px;
  font-weight:    var(--weight-black);
  color:          var(--color-brand);
  letter-spacing: .04em;
}

.feat-card__title {
  font-family: var(--font-heading);
  font-size:   24px;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  color:       var(--color-text-primary);
  margin:      0;
}

.feat-card__desc {
  font-family: var(--font-heading);
  font-size:   16px;
  font-weight: var(--weight-regular);
  line-height: 1.3;
  color:       var(--color-text-tertiary);
  margin:      0;
  max-width:   312px;
}

.feat-card__illus {
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         24px 32px 0;
  flex:            1;
}

.feat-card__img {
  display:      block;
  max-width:    100%;
  max-height:   180px;
  object-fit:   contain;
  border-radius: 8px;
}

/* CTA inferior */
.home-features__cta {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            9px;
  margin-top:     48px;
}

.home-features__cta-note {
  font-family: var(--font-heading);
  font-size:   14px;
  font-weight: var(--weight-regular);
  color:       #4c4e4b;
  margin:      0;
  text-align:  center;
  line-height: 19.6px;
}

@media (max-width: 1024px) {
  .home-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .home-features__grid { grid-template-columns: 1fr; }
}


/* ================================================================
   STEPS SECTION (home-steps / step-card)
   ================================================================ */

.home-steps { background: #f9fafb; padding-top: 64px; padding-bottom: 64px;}

.home-steps__header { gap: 12px; margin-bottom: 40px; }

.home-steps__title {
  font-family:    var(--font-heading);
  font-size:      48px;
  font-weight:    var(--weight-black);
  line-height:    var(--lh-h2);
  letter-spacing: var(--ls-h2);
  color:          var(--color-text-primary);
  margin:         0;
}

.home-steps__subtitle {
  font-family: var(--font-heading);
  font-size:   20px;
  font-weight: var(--weight-regular);
  line-height: 1.4;
  color:       #4c4e4b;
  margin:      0;
  max-width:   578px;
  text-align:  center;
  padding-top: 12px;
}

/* Pills de plataforma */
.home-steps__platforms {
  display:         flex;
  flex-wrap:       wrap;
  gap:             15px;
  justify-content: center;
  margin-bottom:   32px;
}

.steps-pill {
  display:       inline-flex;
  align-items:   center;
  gap:           4px;
  padding:       9px 17px;
  border:        1px solid var(--color-n300);
  border-radius: 30px;
  font-family:   var(--font-heading);
  font-size:     14px;
  font-weight:   var(--weight-regular);
  color:         #4c4e4b;
  line-height:   1.4;
}

.steps-pill--dim {
  border-color: #E0E4DF;
  color:        var(--color-n300);
}

.steps-pill__soon {
  font-style:  italic;
  font-family: var(--font-heading);
  font-size:   12px;
  font-weight: 200;
  color:       var(--color-n300);
}

/* Cards 3 pasos */
.home-steps__cards {
  display:               flex;
  justify-content:       center;
  gap:                   30px;
  margin-bottom:         24px;
}

.step-card {
  display:         flex;
  flex-direction:  column;
  gap:             12px;
  align-items:     center;
  justify-content: center;
  text-align:      center;
  padding:         32px;
  background:      var(--color-n0);
  border:          0.5px solid var(--color-n300);
  border-radius:   var(--radius-m);
  box-shadow:      var(--shadow-low);
  min-height:      250px;
  max-width:       335px;
}

.step-card__top {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            12px;
}

.step-card__num {
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           56px;
  height:          56px;
  border-radius:   50%;
  background:      var(--color-brand);
  font-family:     var(--font-heading);
  font-size:       24px;
  font-weight:     var(--weight-semibold);
  color:           #fff;
  line-height:     1;
}

.step-card__title {
  font-family: var(--font-heading);
  font-size:   18px;
  font-weight: var(--weight-semibold);
  line-height: 28px;
  color:       var(--color-text-primary);
  margin:      0;
}

.step-card__desc {
  font-family: var(--font-heading);
  font-size:   16px;
  font-weight: var(--weight-regular);
  line-height: 1.3;
  color:       #4c4e4b;
  margin:      0;
}

/* Nota API */
.home-steps__api-note {
  display:         flex;
  justify-content: center;
  margin-bottom:   24px;
}

.home-steps__api-note p {
  background:    var(--color-success-bg);
  border-radius: var(--radius-m);
  padding:       24px 32px;
  font-family:   var(--font-heading);
  font-size:     14px;
  font-weight:   var(--weight-regular);
  line-height:   1.4;
  color:         #4c4e4b;
  text-align:    center;
  max-width:     506px;
  margin:        0;
}

/* CTA */
.home-steps__cta {
  display:         flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .home-steps__cards { flex-direction: column; align-items: center;}
}

/* ================================================================
   USE-CASES SECTION (home-usecases / use-card)
   ================================================================ */

.home-usecases {
  background:     var(--color-n0);
  padding-top:    80px;
  padding-bottom: 80px;
}

.home-usecases__header { gap: 12px; margin-bottom: 48px; }

.home-usecases__title {
  font-size:   40px;
  font-weight: var(--weight-bold);
  line-height: 1.15;
  color:       var(--color-n900);
  margin:      0;
}

.home-usecases__subtitle {
  font-size: 20px;
  color:     var(--color-text-secondary);
  margin:    0;
}

.home-usecases__cards {
  display:     flex;
  gap:         30px;
  align-items: stretch;
}

.use-card {
  flex:           1;
  position:       relative;
  display:        flex;
  flex-direction: column;
  border-radius:  24px;
  border:         1.5px solid var(--color-n200);
  background:     var(--color-n0);
  overflow:       hidden;
  /* height:         512px; */
}

.use-card--featured {
  border:     2px solid #f36402;
  box-shadow: 0px 20px 50px -20px rgba(255, 99, 17, 0.70);
}

.use-card__popular {
  position:        absolute;
  top:             0;
  left:            50%;
  transform:       translateX(-50%);
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  background:      #f36402;
  color:           #fff;
  font-family:     var(--font-heading);
  font-size:       14px;
  font-weight:     800;
  padding:         8px 20px;
  border-radius:   0 0 18px 18px;
  white-space:     nowrap;
}

.use-card__body {
  display:         flex;
  flex-direction:  column;
  justify-content: space-between;
  padding:         56px 34px;
  flex:            1;
}

.use-card--featured .use-card__body {
  padding-top: 56px;
}

.use-card__top {
  display:        flex;
  flex-direction: column;
  gap:            auto;
}

.use-card__badge {
  display:        inline-flex;
  align-self:     flex-start;
  padding:        6px 16px;
  border-radius:  100px;
  background:     #FFF0E8;
  color:          #f36402;
  font-size:      14px;
  font-weight:    800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.use-card__title {
  font-size:   24px;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  color:       var(--color-n900);
  margin:      0;
  padding: 4px 0;
}

.use-card__desc {
  font-size:   16px;
  color:       #4c4e4b;
  line-height: 1.3;
  margin:      0;
  padding: 20px 0 40px 0;
}

.use-card__bullets {
  list-style:     none;
  margin:         0;
  padding:        16px 20px 32px 0px;;
  display:        flex;
  flex-direction: column;
  gap:            16px;
}

.use-card__bullet {
  display:     flex;
  align-items: flex-start;
  gap:         8px;
  font-size:   16px;
  color:       #4c4e4b;
  line-height: 1.3;
}

.use-card__bullet svg { flex-shrink: 0; }

.pricing-section .use-card__bullet {
  font-family: var(--font-heading);
  font-size:   14px;
  font-weight: var(--weight-medium);
  line-height: 20px;
  color:       #656963;
}

.use-card__check {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  width:           20px;
  height:          20px;
  min-width:       20px;
  background:      rgba(243, 100, 2, 0.10);
  border-radius:   50%;
  flex-shrink:     0;
  margin-top:      1px;
}

.use-card__cta {
  margin-top:      auto;
  align-self:      stretch;
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             8px;
  padding:         12px 24px;
  border-radius:   24px;
  border:          none;
  background:      var(--gradient-btn);
  box-shadow:      0 1px 2px -1px rgba(0,0,0,.10), 0 1px 3px 0 rgba(0,0,0,.10);
  color:           #fff;
  font-family:     var(--font-heading);
  font-size:       15px;
  font-weight:     var(--weight-semibold);
  text-decoration: none;
  cursor:          pointer;
  transition:      filter .2s;
}

.use-card__cta:hover { color: #fff; filter: brightness(.93); }

.use-card__cta--secondary {
  background: var(--color-n0);
  color:      var(--color-text-primary);
  box-shadow: 0 0 4px 0 rgba(0,0,0,.10) inset;
}
.use-card__cta--secondary:hover {
  color:      var(--color-text-primary);
  filter:     none;
  box-shadow: 0 0 6px 0 rgba(0,0,0,.18) inset;
}

@media (max-width: 900px) {
  .home-usecases__cards { flex-direction: column; }
}

@media (max-width: 768px) {
  .home-usecases__title { font-size: 32px; }
}

/* ================================================================
   CTA BANNER (home-cta-banner)
   ================================================================ */

.home-cta-banner {
  background: #eb650a;
  position:   relative;
  overflow:   hidden;
  padding:    122px 0;
}

/* Blob decorativo izquierdo (844×844, parcialmente fuera del borde superior-izquierdo) */
.home-cta-banner::before {
  content:        '';
  position:       absolute;
  width:          844px;
  height:         844px;
  left:           -89px;
  top:            -511px;
  border-radius:  344px;
  background:     linear-gradient(233deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  opacity:        0.25;
  filter:         blur(9.7px);
  pointer-events: none;
  transform:      rotate(0.3deg);
}

/* Blob decorativo derecho (689×689, alineado al borde derecho) */
.home-cta-banner::after {
  content:        '';
  position:       absolute;
  width:          689px;
  height:         689px;
  right:          0;
  top:            116px;
  border-radius:  344px;
  background:     linear-gradient(233deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  opacity:        0.25;
  filter:         blur(9.7px);
  pointer-events: none;
  transform:      rotate(-3.1deg);
}

/* Asegurar que el contenido queda por encima de los blobs decorativos */
.home-cta-banner .container {
  position: relative;
  z-index:  1;
}

.home-cta-banner__inner {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  gap:            24px;
}

.home-cta-banner__title {
  font-family:     var(--font-heading);
  font-size:       44px;
  font-weight:     500;
  line-height:     48.4px;
  letter-spacing:  -0.88px;
  color:           #fff;
  margin:          0;
}

.home-cta-banner__subtitle {
  font-size:   20px;
  font-weight: var(--weight-regular);
  line-height: 1.4;
  color:       #fff;
  margin:      0;
}

/* Buttons on orange bg (home-cta-banner) — invert colors */
.home-cta-banner .oli-btn { flex-shrink: 0; }
.home-cta-banner .oli-btn--primary { background: #fff; color: #eb650a; box-shadow: none; filter: none; }
.home-cta-banner .oli-btn--primary:hover { filter: none; opacity: .88; color: #eb650a; }
.home-cta-banner .oli-btn--secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); box-shadow: none; }
.home-cta-banner .oli-btn--secondary:hover { opacity: .85; box-shadow: none; color: #fff; }

@media (max-width: 768px) {
  .home-cta-banner { padding: 32px 0; }
  .home-cta-banner__title { font-size: 32px; line-height: 120%; }
}

/* ================================================================
   COMPATIBILITY SECTION (home-compatibility / compat-card)
   ================================================================ */

.home-compatibility { background: var(--color-n50); }

.home-compatibility__header { gap: 16px; margin-bottom: 48px; }

.home-compatibility__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    48.4px;
  letter-spacing: -0.88px;
  color:          var(--color-text-primary);
  margin:         0;
  max-width:      700px;
}

.home-compatibility__subtitle {
  font-size:   20px;
  font-weight: var(--weight-regular);
  line-height: 1.4;
  color:       var(--color-text-tertiary);
  margin:      0;
  max-width:   600px;
}

.home-compatibility__grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   24px;
  margin-bottom:         48px;
}

.compat-card {
  background:    var(--color-n0);
  border:        1px solid var(--color-n200);
  border-radius: var(--radius-m);
  padding:       28px 24px;
  display:       flex;
  flex-direction: column;
  gap:           16px;
}

.compat-card__head {
  display:     flex;
  align-items: center;
  gap:         10px;
}

.compat-card__icon {
  width:       28px;
  height:      28px;
  flex-shrink: 0;
  object-fit:  contain;
}

.compat-card__title {
  font-family: var(--font-heading);
  font-size:   15px;
  font-weight: 600;
  color:       var(--color-text-primary);
  margin:      0;
  line-height: 1.2;
}

.compat-card__divider {
  border:     none;
  border-top: 1px solid var(--color-n200);
  margin:     0;
}

.compat-card__desc {
  font-size:   var(--text-body-m);
  font-weight: var(--weight-regular);
  line-height: 1.5;
  color:       var(--color-text-tertiary);
  margin:      0;
}

.home-compatibility__cta {
  display:         flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .home-compatibility__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .home-compatibility__grid { grid-template-columns: 1fr; }
  .home-compatibility__title { font-size: 32px; }
}

/* ================================================================
   ANALYTICS SECTION (home-analytics / analytics-dashboard)
   ================================================================ */

.home-analytics {
  padding-top:    80px;
  padding-bottom: 80px;
  background:     var(--color-n0);
}

.home-analytics__header { gap: 12px; margin-bottom: 48px; }

.home-analytics__tag {
  display:        inline-flex;
  padding:        6px 16px;
  border-radius:  28px;
  background:     var(--tag-bg, #F4E8FC);
  color:          var(--tag-color, #9052A8);
  font-family:    var(--font-heading);
  font-size:      14px;
  font-weight:    500;
  letter-spacing: 0;
}

.home-analytics__title {
  font-family:     var(--font-heading);
  font-size:       44px;
  font-weight:     500;
  line-height:     48.4px;
  letter-spacing:  -0.88px;
  color:           var(--color-n900);
  margin:          0;
}

.home-analytics__subtitle {
  font-size:   20px;
  font-weight: var(--weight-regular);
  line-height: 1.4;
  color:       #4c4e4b;
  max-width:   578px;
  margin:      0;
}

.home-analytics__img-wrap {
  text-align: center;
}

.home-analytics__img {
  width:         100%;
  height:        auto;
  border-radius: 24px;
  border:        none;
  display:       block;
}

.home-analytics__pills {
  display: none;
}

@media (max-width: 767px) {
  .home-analytics__title    { font-size: 32px; }
  .home-analytics__subtitle { font-size: 16px; }

  .home-analytics__pills {
    display:        flex;
    flex-direction: column;
    align-items:    center;
    gap:            25px;
    margin-bottom:  24px;
    width:          100%;
  }

  .home-analytics__pills-grid {
    display: flex;
    gap:     8px;
    width:   100%;
  }

  .home-analytics__pills-col {
    flex:           1;
    display:        flex;
    flex-direction: column;
    gap:            20px;
  }

  .home-analytics__pill {
    display:       flex;
    align-items:   center;
    gap:           12px;
    padding:       11px 16px;
    background:    #f6f7f9;
    border-radius: 12px;
    box-shadow:    0 1px 1px rgba(0,0,0,.04);
    font-size:     14px;
    font-weight:   400;
    line-height:   1.4;
    color:         #111210;
  }

  .home-analytics__pill--center {
    width:           167px;
    justify-content: center;
  }

  .home-analytics__pill-icon {
    display:    block;
    flex-shrink: 0;
    width:       12px;
    height:      12px;
    object-fit:  contain;
  }
}

/* ================================================================
   CONTACT (responsive)
   ================================================================ */

@media (max-width: 1200px) {
  .contact-grid { flex-direction: column; align-items: center; }
  .contact-form-card { width: 100%; max-width: 704px; }
  .contact-info { width: 100%; max-width: 704px; }
  .contact-info__cards { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1199px) {
  /* Header â†’ versiÃ³n mÃ³vil */
  .primary-nav {
    display:       none;
    position:      absolute;
    top:           72px;
    left:          0;
    right:         0;
    background:    var(--color-n0);
    border-bottom: 1px solid var(--color-n200);
    padding:       var(--space-6);
    z-index:       99;
  }
  .primary-nav.is-open { display: flex; flex-direction: column; align-items: flex-start; }
  .primary-nav__list {
    flex-direction: column;
    align-items:    flex-start;
    gap:            var(--space-4);
    width:          100%;
    overflow:       visible;
  }
  .primary-nav__list > .nav-item {
    width:    100%;
    overflow: visible;
  }
  .primary-nav .nav-item__link {
    justify-content: flex-start;
  }
  /* Dropdown en mobile: estÃ¡tico, inline bajo el padre */
  .nav-item--has-dropdown {
    flex-wrap: wrap;
  }
  .nav-dropdown {
    position:   static;
    transform:  none !important;
    box-shadow: none;
    border:     none;
    margin-top: var(--space-3);
    padding:    var(--space-1) 0 var(--space-1) var(--space-8);
    opacity:    1;
    visibility: visible;
    display:    none;
    min-width:  unset;
    flex-basis: 100%;
    width:      100%;
  }
  .nav-item--has-dropdown.is-open > .nav-dropdown {
    display:        flex;
    flex-direction: column;
    gap:            var(--space-1);
    margin:         8px 40px;
  }
  .nav-dropdown .nav-item__link {
    font-size:     var(--text-body-s);
    color:         var(--color-text-tertiary);
    padding:       8px 16px;
    border-radius: var(--radius-s);
  }
  .nav-dropdown .nav-item__link:hover {
    color:      var(--color-brand);
    background: var(--color-brand-tint);
  }

  /* Link + chevron en items desplegables */
  .nav-item--has-dropdown > .nav-item__link {
    flex:      1;
    min-width: 0;
  }
  .nav-item__chevron-btn {
    padding: 10px 12px;
    color:   var(--color-text-secondary);
  }
  .nav-item__chevron-btn:focus {
    outline: none;
  }

  /* Reordenar header mÃ³vil: hamburger | logo | botÃ³n naranja */
  .site-header__inner {
    justify-content: space-between;
    height:          auto;
    padding:         var(--space-4) 20px;
  }
  .nav-toggle  { order: -1; display: flex; flex-shrink: 0; min-width: 20px; min-height: 16px; }
  .site-logo   { order: 0; }
  .primary-nav { order: 1; }
  .header-ctas { order: 2; display: flex; }
  .header-ctas .oli-btn--secondary { display: none; }
  .header-ctas .header-login-icon  { display: none; }
  .header-ctas .oli-btn--primary {
    display:         flex;
    padding:         6px 16px;
    justify-content: center;
    align-items:     center;
    gap:             8px;
    border-radius:   24px;
    background:      var(--gradient-btn);
    box-shadow:      0 1px 2px -1px rgba(0,0,0,.10), 0 1px 3px 0 rgba(0,0,0,.10);
    width:           137px;
    white-space:     nowrap;
  }

  /* Botón secundario dentro del menú desplegable */
  .nav-mobile-cta:not(.nav-mobile-cta--primary) {
    display:    inline-flex;
    margin-top: var(--space-6);
    max-width:  300px;
  }

  /* Icono de login en el menú móvil */
  .nav-mobile-login {
    display:    inline-flex;
    margin-top: var(--space-4);
    color:      var(--color-text-primary);
  }

  /* Bloques de contenido */
  .block-hero__inner    { grid-template-columns: 1fr; }
  .block-hero__image    { display: none; }
  .block-features__grid { grid-template-columns: repeat(2, 1fr); }
  .block-stats__grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid    { grid-template-columns: repeat(2, 1fr); }
  .posts-grid           { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid    { grid-template-columns: 1fr 1fr; }
  .footer-tagline       { font-size: var(--text-body-m); }
}

@media (max-width: 389px) {
  /* BotÃ³n naranja pasa al menÃº desplegable */
  .header-ctas .oli-btn--primary { display: none; }
  .nav-mobile-cta--primary          { display: inline-flex; margin-top: 24px;}
}

/* ================================================================
   RESPONSIVE (max-width: 988px) — Hero layout stacking
   ================================================================ */

@media (max-width: 988px) {
  .home-hero              { padding: 80px 0 56px; }
  .home-hero__bg-deco     { display: none; }
  .home-hero__inner       { flex-direction: column; gap: 40px; align-items: flex-start; }
  .home-hero__browser     { flex: none; width: 100%; height: auto; aspect-ratio: 532 / 420; border-radius: 12px; }
}

/* ================================================================
   RESPONSIVE (max-width: 768px)
   ================================================================ */

@media (max-width: 768px) {
  h1 { font-size: clamp(48px, 8vw, 96px); }
  h2 { font-size: clamp(32px, 6vw, 48px); }
  .contact-hero .container { padding-top: 20px; }
  .contact-hero__title  { font-size: clamp(32px, 7vw, 56px); line-height: 1.1; }
  .contact-content      { padding: 36px 0; }
  .contact-grid         { gap: 36px; }
  .contact-form-card    { padding: 36px 24px; }
  .contact-form__row    { grid-template-columns: 1fr; }
  .contact-info__cards  { grid-template-columns: 1fr; }
  .contact-cta-card     { flex-direction: column; align-items: flex-start; }

  .site-footer__inner  { gap: 36px; }
  .block-features__grid { grid-template-columns: 1fr; }
  .block-stats__grid    { grid-template-columns: 1fr 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .posts-grid           { grid-template-columns: 1fr; }
  .site-footer__grid    { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand         { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .footer-social        { justify-content: center; }
  .footer-col           { text-align: center; }
  .site-footer__bottom  { flex-direction: column-reverse; gap: var(--space-4); align-items: center; }
  .footer-tagline       { max-width: 191px; }

  /* Utility section padding */
  .section { padding: 48px 0; }

  /* --- Hero --- */
  .home-hero                 { padding: 64px 0 48px; }
  .home-hero__title          { font-size: clamp(32px, 8vw, 48px); line-height: 1.15; max-width: none; }
  .home-hero__subtitle       { font-size: 16px; max-width: none; }
  .home-hero__platforms      { flex-direction: column; align-items: center; gap: 8px; }
  .home-hero__platforms-list { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .home-hero__platform-name  { display: none; }
  .home-hero__ctas           { flex-direction: column; width: 100%; }
  .home-hero__ctas .oli-btn  { display: flex; width: 100%; justify-content: center; }

  /* --- Compatibility: slider horizontal --- */
  .home-compatibility__grid {
    display:          flex;
    flex-direction:   row;
    flex-wrap:        nowrap;
    overflow-x:       auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width:  none;
    gap:              12px;
    margin:           0 -20px;
    padding:          4px 20px 16px;
  }
  .home-compatibility__grid::-webkit-scrollbar { display: none; }
  .compat-card {
    flex:              0 0 82%;
    scroll-snap-align: start;
  }

  /* --- Features / Steps: títulos --- */
  .home-features__title,
  .home-steps__title {
    font-family: "DM Sans";
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.64px;
    color: #111210;
    text-align: center;
  }
  .home-steps__subtitle {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #4c4e4b;
    text-align: center;
  }
  .use-card__body         { gap: 40px; }
  .home-features__header  { margin-bottom: 32px; }
  .feat-card__desc        { max-width: none; }

  /* --- FAQ --- */
  .home-faq                { padding: 48px 0; }
  .page-precios .home-faq  { padding-top: 80px; }
  .home-faq__header        { margin-bottom: 32px; }
  .home-faq__title         { font-size: 32px; letter-spacing: -0.64px; }
  .home-faq__list          { max-width: 100%; }

  /* --- CTA Final --- */
  .home-cta-final              { padding: 48px 0; }
  .home-cta-final__inner       { gap: 24px; }
  .home-cta-final__title       { font-size: 28px; letter-spacing: -0.84px; }
  .home-cta-final__subtitle    { font-size: 16px; }
  .home-cta-final .oli-btn--secondary { display: none; }
  .home-cta-final .cta-form__row { grid-template-columns: 1fr; }
}

/* =============================================================
   AGENCIA — Página de Partners
   ============================================================= */

/* --- Shared --- */
.agencia-section-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #cbcccd;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #494d50;
  line-height: 1;
}

/* --- Hero --- */
.agencia-hero {
  background: #fff0e8;
  padding: 192px 0 582px;
  overflow: hidden;
  position: relative;
}
.agencia-hero__cols {
  display: flex;
  gap: 111px;
  align-items: center;
  padding-bottom: 40px;
}
.agencia-hero__left { flex: 0 0 auto; width: 54%; max-width: 718px; }
.agencia-hero__right {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.agencia-hero__badge { display: flex; align-items: center; margin-bottom: 20px; }
.agencia-hero__badge-icon {
  flex-shrink: 0;
  background: #f36402;
  border-radius: 15px;
  padding: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.agencia-hero__badge-icon img { display: block; }
.agencia-hero__badge-text { font-size: 24px; font-weight: 600; color: #111210; line-height: 1.2; }
.agencia-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  color: #111210;
  margin: 0;
}
.agencia-hero__title-hl { display: block; color: #f36402; }
.agencia-hero__partners { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
.agencia-hero__partners-img { height: 46px; width: 160px; display: block; }
.agencia-hero__partners-text { font-size: 20px; font-weight: 700; color: #111210; line-height: 28px; }
.agencia-hero__subtitle { font-size: 18px; font-weight: 600; color: #4c4e4b; line-height: 28px; margin-bottom: 30px; }
.agencia-hero__subtitle p { margin: 0; }
/* agencia-hero__cta → .oli-btn (design-system.css) */
.agencia-hero__demo { width: 108%; margin-left: -4%; margin-top: 40px; line-height: 0; }
.agencia-hero__demo-img { width: 100%; display: block; border-radius: 12px 12px 0 0; }

/* Todos los orbs convergen en el centro (1035, 610) del contenedor 2070×542 */
.agencia-hero__orbs {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2070px;
  height: 542px;
  pointer-events: none;
}
.agencia-hero__orb { position: absolute; }

/* Orb A — 1102px, center(1035,610), rotate 45deg */
.agencia-hero__orb--a {
  width: 1102px; height: 1102px;
  left: 484px; top: 59px;
  border-radius: 663px;
  filter: blur(8px);
  background: linear-gradient(187deg, rgba(255,255,255,0) 20.055%, rgb(235,101,10) 105.16%);
  transform: rotate(45deg);
}
/* Orb B — 1374px, center(1035,610), rotate -27.28deg */
.agencia-hero__orb--b {
  width: 1374px; height: 1374px;
  left: 348px; top: -77px;
  border-radius: 773px;
  filter: blur(8px);
  background: linear-gradient(187deg, rgba(255,255,255,0) 20.055%, rgb(235,101,10) 105.16%);
  transform: rotate(-27.28deg);
}
/* Orb C — 826px circle, center(1035,610), rotate -89.73deg */
.agencia-hero__orb--c {
  width: 826px; height: 826px;
  left: 622px; top: 197px;
  border-radius: 543px;
  filter: blur(8px);
  background: linear-gradient(to bottom, rgba(255,255,255,0), #eb650a);
  transform: rotate(-89.73deg);
}
/* Orb D — 532px circle, center(1035,610), rotate 85.35deg */
.agencia-hero__orb--d {
  width: 532px; height: 532px;
  left: 769px; top: 344px;
  border-radius: 543px;
  filter: blur(8px);
  background: linear-gradient(to bottom, rgba(255,255,255,0), #eb650a);
  transform: rotate(85.35deg);
}
/* Shimmer 1 — 265px, center(922,441), rotate -160.95deg */
.agencia-hero__orb--s1 {
  width: 265px; height: 265px;
  left: 790px; top: 309px;
  border-radius: 200px;
  filter: blur(8px);
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.25));
  transform: rotate(-160.95deg);
}
/* Shimmer 2 — 49px, center(1126,375), rotate 163.3deg */
.agencia-hero__orb--s2 {
  width: 49px; height: 49px;
  left: 1102px; top: 351px;
  border-radius: 200px;
  filter: blur(7px);
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.25));
  transform: rotate(163.3deg);
}
/* Fade — cubre la parte superior del área de orbs */
.agencia-hero__orbs-fade {
  position: absolute;
  left: 68px; top: 0;
  width: 1935px; height: 512px;
  background: linear-gradient(to bottom, #fff0e8 0%, rgba(255,240,232,0) 62.21%);
}

/* --- Perfiles --- */
.agencia-perfiles {
  background: #fff;
  border-radius: 80px 80px 0 0;
  padding: 80px 0;
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: -80px auto 0;
}
.agencia-perfiles__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}
/* Títulos de sección agencia: patrón compartido */
.agencia-perfiles__title,
.agencia-descuento__title,
.agencia-pasos__title,
.agencia-form__left-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #111210;
  line-height: 1.1;
  margin: 0;
}
.agencia-perfiles__title  { letter-spacing: -0.96px; text-align: center; max-width: 704px; }
.agencia-perfiles__cards { display: flex; flex-direction: column; gap: 48px; }
.agencia-perfil-card {
  display: flex;
  height: 372px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #e0e4df;
  box-shadow: var(--shadow-low);
  background: #f9fafb;
}
.agencia-perfil-card--reversed { flex-direction: row-reverse; }
.agencia-perfil-card__image { flex: 0 0 57%; min-width: 0; overflow: hidden; }
.agencia-perfil-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.agencia-perfil-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  margin: auto;
  max-width: 400px;
}
.agencia-perfil-card__title {
  font-family: 'Wix Madefor Display', 'DM Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #161a1d;
  margin: 0;
}
.agencia-perfil-card__desc { font-size: 16px; line-height: 1.3; color: #4c4e4b; }
.agencia-perfil-card__desc p { margin: 0; }

/* --- Descuento --- */
.agencia-descuento { background: #f9fafb; padding: 80px 0; }
.agencia-descuento__card {
  background: #fff;
  border: 1px solid #e0e4df;
  border-radius: 14px;
  box-shadow: var(--shadow-low);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 140px;
  height: 479px;
  overflow: hidden;
}
/* Orb containers — 600×600, overflow the card height → clipped */
.agencia-descuento__orbs {
  flex: 0 0 600px;
  height: 600px;
  position: relative;
}
.agencia-descuento__orb {
  position: absolute;
  border-radius: 290px;
  filter: blur(8px);
}
/* Orb A — 539px, center(300,300) en el box de 600×600 */
.agencia-descuento__orb--a {
  width: 539px; height: 539px;
  left: 30px; top: 30px;
  background: linear-gradient(187deg, rgba(255,255,255,0) 20.055%, rgb(235,101,10) 105.16%);
}
.agencia-descuento__orbs:not(.agencia-descuento__orbs--right) .agencia-descuento__orb--a {
  transform: rotate(123.66deg);
}
.agencia-descuento__orbs--right .agencia-descuento__orb--a {
  transform: rotate(-155.39deg);
}
/* Orb B — 404px, center(300,300), rotate 8.07deg */
.agencia-descuento__orb--b {
  width: 404px; height: 404px;
  left: 98px; top: 98px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #eb650a);
  transform: rotate(8.07deg);
}
/* Orb C — 261px, center(300,300), rotate -155.34deg */
.agencia-descuento__orb--c {
  width: 261px; height: 261px;
  left: 170px; top: 170px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #eb650a);
  transform: rotate(-155.34deg);
}
/* Contenido central */
.agencia-descuento__content {
  flex: 0 0 646px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.agencia-descuento__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.agencia-descuento__title { letter-spacing: -0.96px; }
.agencia-descuento__desc { font-size: 16px; line-height: 1.3; color: #4c4e4b; max-width: 540px; }
.agencia-descuento__desc p { margin: 0; }

/* --- Pasos --- */
.agencia-pasos { background: #fff; padding: 80px 0; }
.agencia-pasos__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 62px;
}
.agencia-pasos__title { letter-spacing: -2px; text-align: center; }
.agencia-pasos__cards { display: flex; justify-content: center; gap: 32px; }
.agencia-paso-card {
  background: #f9fafb;
  border: 0.5px solid #c2c6c0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-low);
  flex: 1;
  max-width: 336px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.agencia-paso-card__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e43c11 25.4%, #f36402 54%, #f08a22 114.2%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.agencia-paso-card__title { font-size: 20px; font-weight: 700; color: #111210; margin: 0; line-height: 28px; }
.agencia-paso-card__desc  { font-size: 16px; line-height: 1.3; color: #4c4e4b; }
.agencia-paso-card__desc p { margin: 0; }

/* --- Formulario --- */
.agencia-form { background: #fff; padding: 80px 0; }
.agencia-form__card {
  background: #fff;
  border: 1px solid #e0e4df;
  border-radius: 14px;
  box-shadow: 0 4px 4px rgba(22,22,35,.12);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.agencia-form__left {
  background: #fff0e8;
  flex: 0 0 40%;
  max-width: 451px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}
.agencia-form__left .home-features__title-hl {
  background: none;
  -webkit-text-fill-color: #eb650a;
  color: #eb650a;
  padding-right: 0;
}
.agencia-form__left-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.agencia-form__left-orb {
  position: absolute;
  border-radius: 290px;
  filter: blur(8px);
}
.agencia-form__left-orb--a { width: 590px; height: 590px; left: 147px; top: 268px; background: linear-gradient(187deg, rgba(255,255,255,0) 20.055%, rgb(235,101,10) 105.16%); transform: rotate(-155.39deg); }
.agencia-form__left-orb--b { width: 465px; height: 465px; left: -157px; top: 380px; background: linear-gradient(to bottom, rgba(255,255,255,0), #eb650a); transform: rotate(4.6deg); }
.agencia-form__left-orb--c { width: 285px; height: 285px; left: 211px; top: 445px; background: linear-gradient(to bottom, rgba(255,255,255,0), #eb650a); transform: rotate(16.65deg); }
.agencia-form__left-title { letter-spacing: -0.96px; position: relative; }
.agencia-form__left-text { font-size: 16px; line-height: 1.4; color: #4c4e4b; position: relative; }
.agencia-form__left-text p { margin: 0; }
.agencia-form__right {
  flex: 1;
  min-width: 0;
  padding: 40px 40px 40px 70px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.agencia-form__legal { font-size: 10px; line-height: 1.4; color: #656963; }
.agencia-form__legal p { margin: 0; }

/* --- CTA --- */
.agencia-cta {
  background: #eb650a;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.agencia-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
  pointer-events: none;
  background: linear-gradient(233deg, rgba(255,255,255,0) 48%, rgba(255,255,255,.25) 88%);
}
.agencia-cta__orb--left  { width: 300px; height: 300px; left: -80px; top: 120px; }
.agencia-cta__orb--right { width: 260px; height: 260px; right: -40px; top: -20px; }
.agencia-cta__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.agencia-cta__header { display: flex; flex-direction: column; gap: 24px; align-items: center; width: 100%; }
.agencia-cta__title {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.32px;
  color: #fff;
  margin: 0;
  line-height: 1.12;
  text-align: center;
}
.agencia-cta__subtitle { font-size: 18px; color: rgba(255,255,255,.85); line-height: 1.6; text-align: center; }
.agencia-cta__subtitle p { margin: 0; }
.agencia-cta__actions { display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; }
/* Buttons on orange bg (agencia-cta) — invert colors */
.agencia-cta .oli-btn--primary { background: #fff; color: #d94420; box-shadow: none; filter: none; }
.agencia-cta .oli-btn--primary:hover { filter: none; opacity: .85; }
.agencia-cta .oli-btn--secondary { background: transparent; color: #fff; border: 1px solid rgba(9,9,11,.2); box-shadow: none; }
.agencia-cta .oli-btn--secondary:hover { color: #fff; opacity: .8; box-shadow: none; }

@media (max-width: 767px) {
  /* --- Agencia Mobile --- */
  .agencia-hero { padding: 40px 0 154px; }
  .agencia-hero__cols { flex-direction: column; gap: 32px; }
  .agencia-hero__left { width: 100%; max-width: 100%; z-index: 9999; }
  .agencia-hero__right { gap: 16px;  z-index: 999;}
  .agencia-hero__badge-text { font-size: 16px; }
  .agencia-hero__title { font-size: 36px; }
  .agencia-hero__partners-text { font-size: 16px; }
  .agencia-hero__subtitle { font-size: 16px; }

  .agencia-section-badge { font-size: 15px; padding: 10px 18px; }

  .agencia-perfiles { border-radius: 40px 40px 0 0; margin-top: -40px; padding: 80px 0; }
  .agencia-perfiles__header { margin-bottom: 40px; }
  .agencia-perfiles__title { font-size: 32px; letter-spacing: -1px; }
  .agencia-perfil-card { flex-direction: column; height: auto; }
  .agencia-perfil-card--reversed { flex-direction: column; }
  .agencia-perfil-card__image { flex: 0 0 200px; width: 100%; }
  .agencia-perfil-card__body { padding: 24px; gap: 16px; }
  .agencia-perfil-card__title { font-size: 26px; }

  .agencia-descuento { padding: 48px 0; }
  .agencia-descuento__card { flex-direction: column; gap: 0; height: auto; padding: 40px 24px; }
  .agencia-descuento__orbs { display: none; }
  .agencia-descuento__content { flex: none; gap: 24px; }
  .agencia-descuento__title { font-size: 28px; letter-spacing: -1px; }

  .agencia-pasos { padding: 56px 0; }
  .agencia-pasos__header { margin-bottom: 40px; }
  .agencia-pasos__title { font-size: 32px; letter-spacing: -1px; }
  .agencia-pasos__cards { flex-direction: column; align-items: center; }
  .agencia-paso-card { max-width: 100%; width: 100%; }

  .agencia-form { padding: 48px 0; }
  .agencia-form__card { flex-direction: column; }
  .agencia-form__left { flex: 0 0 auto; max-width: 100%; padding: 32px 24px; }
  .agencia-form__left-title { font-size: 28px; letter-spacing: -1px; }
  .agencia-form__right { padding: 32px 24px; }

  .agencia-cta { padding: 64px 0; }
  .agencia-cta__inner { gap: 32px; }
  .agencia-cta__title { font-size: 32px; letter-spacing: -0.8px; }
  .agencia-cta .oli-btn--secondary { display: none; }
}

/* =============================================================
   SINGLE POST  — Figma node 886:31624
   Columna de contenido: 1096px centrada
   ============================================================= */

/* Wrapper article */
.single-article {
  padding: 40px 0 100px;
  background: #fff;
}

/* Columna centrada 1096px */
.single-col {
  max-width: 1096px;
  margin:    0 auto;
  padding:   0 24px;
}

/* ---- Breadcrumb ---- */
.single-breadcrumb {
  display:     flex;
  align-items: center;
  flex-wrap:   wrap;
  gap:         6px;
  margin-bottom: 34px;
  font-family: var(--font-ui);
  font-size:   14px;
  font-weight: 400;
  line-height: 20px;
}

.single-breadcrumb__link {
  color:           #6c6058;
  text-decoration: none;
  white-space:     nowrap;
}

.single-breadcrumb__link:hover { color: #f36402; }

.single-breadcrumb__sep {
  color: #6c6058;
  flex-shrink: 0;
}

.single-breadcrumb__current {
  color:       #180f09;
  white-space: nowrap;
  overflow:    hidden;
  text-overflow: ellipsis;
  max-width:   260px;
}

/* ---- Header del artículo ---- */
.single-header {
  display:        flex;
  flex-direction: column;
  gap:            20px;
  padding-bottom: 40px;
}

.single-header__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    48.4px;
  letter-spacing: -.44px;
  color:          #111210;
  margin:         0;
}

.single-header__excerpt {
  font-family: var(--font-ui);
  font-size:   18px;
  font-weight: 400;
  line-height: 28px;
  color:       #4b4e4a;
  margin:      0;
}

/* Meta row: fecha + tiempo + compartir */
.single-header__meta {
  display:     flex;
  align-items: center;
  flex-wrap:   wrap;
  gap:         16px;
  padding-top: 12px;
}

.single-meta__item {
  display:     flex;
  align-items: center;
  gap:         6px;
  font-family: var(--font-heading);
  font-size:   14px;
  font-weight: 400;
  line-height: 19.6px;
  color:       #4b4e4a;
}

/* Botón compartir */
.single-share {
  position:    relative;
  margin-left: auto;
}

.single-share__btn {
  display:       inline-flex;
  align-items:   center;
  gap:           4px;
  padding:       6px 12px;
  border:        1px solid #d9dbd8;
  border-radius: 8px;
  background:    #fff;
  font-family:   var(--font-heading);
  font-size:     14px;
  font-weight:   500;
  line-height:   19.6px;
  color:         #4b4e4a;
  cursor:        pointer;
  transition:    border-color .15s, background .15s;
}

.single-share__btn:hover {
  border-color: #f36402;
  color:        #f36402;
}

.single-share__dropdown {
  position:      absolute;
  top:           calc(100% + 6px);
  right:         0;
  background:    #fff;
  border:        1px solid #e8e9e8;
  border-radius: 10px;
  box-shadow:    0 4px 16px rgba(0,0,0,.1);
  min-width:     160px;
  z-index:       100;
  overflow:      hidden;
}

.single-share__option {
  display:         flex;
  align-items:     center;
  gap:             8px;
  padding:         10px 16px;
  font-family:     var(--font-heading);
  font-size:       14px;
  font-weight:     400;
  color:           #111210;
  text-decoration: none;
  transition:      background .1s;
}

.single-share__option:hover { background: #f6f7f9; }

.single-share__copy {
  width:      100%;
  border:     none;
  background: transparent;
  cursor:     pointer;
  text-align: left;
}

/* ---- Imagen destacada ---- */
.single-image {
  width:         100%;
  height:        548px;
  border-radius: 16px;
  overflow:      hidden;
  margin-bottom: 0;
}

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

/* ---- Cuerpo / prose ---- */
.single-body {
  padding-top: 64px;
}

.single-content.prose {
  font-family: var(--font-ui);
  font-size:   18px;
  font-weight: 400;
  line-height: 28px;
  color:       #4b4e4a;
}

.single-content.prose > * + * { margin-top: 24px; }

.single-content.prose h2 {
  font-family:    var(--font-heading);
  font-size:      32px;
  font-weight:    500;
  line-height:    32px;
  color:          #111210;
  letter-spacing: -.32px;
  margin-top:     40px;
  margin-bottom:  0;
  padding-top:    16px;
}

.single-content.prose h3 {
  font-family: var(--font-heading);
  font-size:   24px;
  font-weight: 500;
  line-height: 28px;
  color:       #111210;
  margin-top:  32px;
  margin-bottom: 0;
}

.single-content.prose p  { margin: 0; }
.single-content.prose a  {
  color:                  #f36402;
  text-decoration:        underline;
  text-underline-offset:  3px;
}
.single-content.prose a:hover { color: #e05800; }
.single-content.prose strong {
  font-weight: 600;
  color:       #111210;
}

.single-content.prose ul,
.single-content.prose ol {
  padding-left: 1.5em;
  margin:       0;
}
.single-content.prose li { margin-bottom: .5em; }

.single-content.prose img {
  width:      100%;
  height:     auto;
  display:    block;
  border-radius: 12px;
}

.single-content.prose figure {
  margin:         0;
  padding-top:    16px;
  display:        flex;
  flex-direction: column;
  gap:            12px;
}

.single-content.prose figcaption {
  font-family: var(--font-ui);
  font-size:   14px;
  font-weight: 400;
  line-height: 20px;
  color:       #6c6058;
}

.single-content.prose blockquote {
  background:    #fff0e8;
  border:        none;
  border-radius: 12px;
  padding:       20px 24px;
  margin:        0;
  display:       flex;
  flex-direction: column;
  gap:           8px;
  font-style:    normal;
  color:         #4b4e4a;
}
.single-content.prose blockquote p { margin: 0; }

.single-content.prose pre {
  background:   #1a1a1a;
  color:        #e2e8f0;
  border-radius: 12px;
  padding:      24px;
  overflow-x:   auto;
  font-family:  var(--font-mono);
  font-size:    14px;
  line-height:  1.6;
  margin:       0;
}
.single-content.prose code {
  font-family: var(--font-mono);
  font-size:   .9em;
  background:  #f3f4f6;
  padding:     2px 6px;
  border-radius: 4px;
}
.single-content.prose pre code { background: none; padding: 0; font-size: inherit; }
.single-content.prose hr {
  border:     none;
  border-top: 1px solid #e8e9e8;
  margin:     0;
}

/* Tags */
.single-tags {
  margin-top: 48px;
  display:    flex;
  flex-wrap:  wrap;
  gap:        8px;
}
.single-tag {
  display:        inline-flex;
  font-size:      13px;
  font-weight:    500;
  color:          #4b4e4a;
  background:     #f6f7f9;
  border:         1px solid #e8e9e8;
  border-radius:  20px;
  padding:        4px 12px;
  text-decoration: none;
  transition:     background .2s, border-color .2s, color .2s;
}
.single-tag:hover {
  background:   rgba(243,100,2,.08);
  border-color: #f36402;
  color:        #f36402;
}

/* ---- Posts relacionados ---- */
.related-posts {
  background: #f9fafb;
  padding:    80px 0;
}

.related-posts__header {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-bottom:   40px;
}

.related-posts__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    48.4px;
  letter-spacing: -.44px;
  color:          #111210;
  margin:         0;
}

.related-posts__link {
  font-family:     var(--font-heading);
  font-size:       16px;
  font-weight:     500;
  line-height:     20.8px;
  color:           #f36402;
  text-decoration: none;
  white-space:     nowrap;
}
.related-posts__link:hover { text-decoration: underline; }

/* ---- Navegación prev/next ---- */
.single-nav {
  border-top: 1px solid #e8e9e8;
  padding:    56px 0;
  background: #f6f7f9;
}
.single-nav__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:     24px;
}
.single-nav__item {
  display:        flex;
  flex-direction: column;
  gap:            8px;
  padding:        24px;
  background:     #fff;
  border:         1px solid #e8e9e8;
  border-radius:  12px;
  text-decoration: none;
  transition:     border-color .2s, box-shadow .2s;
}
.single-nav__item:hover {
  border-color: #f36402;
  box-shadow:   0 4px 12px rgba(0,0,0,.08);
}
.single-nav__item--next { text-align: right; align-items: flex-end; }
.single-nav__label {
  display:     flex;
  align-items: center;
  gap:         6px;
  font-size:   12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color:       #f36402;
}
.single-nav__item--next .single-nav__label { justify-content: flex-end; }
.single-nav__post-title {
  font-size:   16px;
  font-weight: 600;
  color:       #111210;
  line-height: 1.4;
  display:     -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:    hidden;
}

/* Comentarios */
.single-comments { padding: 64px 0 80px; }

/* Mobile single */
@media (max-width: 767px) {
  .single-article    { padding: 24px 0 64px; }
  .single-header__title { font-size: 28px; line-height: 34px; }
  .single-header__excerpt { font-size: 16px; }
  .single-image      { height: 220px; border-radius: 10px; }
  .single-body       { padding-top: 40px; }
  .single-content.prose { font-size: 16px; line-height: 26px; }
  .single-content.prose h2 { font-size: 22px; }
  .single-content.prose h3 { font-size: 18px; }
  .related-posts     { padding: 48px 0; }
  .related-posts__title { font-size: 28px; line-height: 34px; }
  .related-posts__header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .single-nav__inner { grid-template-columns: 1fr; }
  .single-nav__item--next { text-align: left; align-items: flex-start; }
  .single-nav__item--next .single-nav__label { justify-content: flex-start; }
}

/* --- Blog listing legacy (archive.php) --- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  padding: 80px 0;
}
.post-card {
  background: var(--color-n0);
  border: 1px solid var(--color-n100);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
}
.post-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--color-n200);
}
.post-card > a { line-height: 0; }
.post-card > a img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.post-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  flex: 1;
}
.post-card__cat {
  font-size: var(--text-body-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--color-text-brand);
}
.post-card__title {
  font-size: var(--text-body-l);
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  color: var(--color-text-primary);
  margin: 0;
}
.post-card__title a { text-decoration: none; }
.post-card__title a:hover { color: var(--color-text-brand); }
.post-card__body time {
  font-size: var(--text-body-xs);
  color: var(--color-text-tertiary);
}
.post-card__excerpt {
  font-size: var(--text-body-s);
  color: var(--color-text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 48px 0 80px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: var(--radius-full);
  font-size: var(--text-body-s);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  background: var(--color-n0);
  border: 1px solid var(--color-n100);
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.blog-pagination .page-numbers:hover {
  background: var(--color-brand-tint);
  border-color: var(--color-text-brand);
  color: var(--color-text-brand);
}
.blog-pagination .page-numbers.current {
  background: linear-gradient(180deg, #e43c11 25%, #f36402 54%, #f08a22 114%);
  border-color: transparent;
  color: #fff;
  font-weight: var(--weight-semibold);
}
.blog-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  pointer-events: none;
}
.blog-empty {
  text-align: center;
  color: var(--color-text-tertiary);
  padding: 80px 0;
  font-size: var(--text-body-l);
}

/* Mobile single */
@media (max-width: 767px) {
  .single-hero { padding: 48px 0 40px; }
  .single-hero__title { font-size: 28px; letter-spacing: -.5px; }
  .single-thumbnail { padding-bottom: 40px; }
  .single-thumbnail__img { border-radius: var(--radius-s); }
  .single-body { padding: 48px 0 56px; }
  .single-content.prose { font-size: var(--text-body-m); }
  .single-content.prose h2 { font-size: 22px; }
  .single-nav__inner { grid-template-columns: 1fr; }
  .single-nav__item--next { text-align: left; align-items: flex-start; }
  .single-nav__item--next .single-nav__label { justify-content: flex-start; }
  .posts-grid { grid-template-columns: 1fr; padding: 40px 0; gap: 20px; }
}


/* ---- Páginas legales ---- */
.legal-hero .container {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            20px;
  padding-top:    80px;
  padding-bottom: 64px;
}
.legal-hero__badge {
  display:       inline-flex;
  padding:       6px 16px;
  align-items:   flex-start;
  border-radius: 30px;
  background:    var(--color-brand-tint);
  color:         var(--color-brand);
  font-family:   var(--font-heading);
  font-size:     var(--text-body-xs);
  font-weight:   var(--weight-bold);
  line-height:   20px;
}
.legal-hero__title {
  font-family:    var(--font-ui);
  font-size:      64px;
  font-weight:    var(--weight-bold);
  line-height:    1.2;
  color:          var(--color-text-primary);
  text-align:     center;
  max-width:      780px;
  margin:         0;
  letter-spacing: normal;
}
.legal-hero__fecha {
  font-family: var(--font-heading);
  font-size:   var(--text-body-m);
  font-weight: var(--weight-regular);
  line-height: 1.3;
  color:       #4c4e4b;
  text-align:  center;
  margin:      0;
}

.legal-body {
  border-top: 1px solid var(--color-n100);
  padding:    80px 0 96px;
}
.legal-content {
  max-width:   720px;
  margin:      0 auto;
  font-size:   var(--text-body-l);
  line-height: 1.75;
  color:       var(--color-text-secondary);
}

.legal-intro {
  margin-bottom:  2.5em;
  padding-bottom: 2.5em;
  border-bottom:  1px solid var(--color-n100);
}
.legal-intro p { margin: 0 0 1.25em; }
.legal-intro p:last-child { margin-bottom: 0; }

.legal-section + .legal-section { margin-top: 2.5em; }
.legal-section__title {
  font-family:    var(--font-heading);
  font-size:      28px;
  font-weight:    var(--weight-black);
  line-height:    1.2;
  letter-spacing: -.5px;
  color:          var(--color-text-primary);
  margin-bottom:  .6em;
}
.legal-section__body > * + * { margin-top: 1.5em; }
.legal-section__body p { margin: 0 0 1.25em; }
.legal-section__body p:last-child { margin-bottom: 0; }
.legal-section__body a {
  color:                 var(--color-text-brand);
  text-decoration:       underline;
  text-underline-offset: 3px;
}
.legal-section__body a:hover { color: var(--color-brand-dark); }
.legal-section__body strong { font-weight: var(--weight-semibold); color: var(--color-text-primary); }
.legal-section__body ul,
.legal-section__body ol {
  padding-left: 1.5em;
  margin:       1em 0 1.25em;
}
.legal-section__body li { margin-bottom: .5em; }
.legal-section__body blockquote {
  border-left:   4px solid var(--color-text-brand);
  padding:       16px 24px;
  background:    var(--color-n50);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  font-style:    italic;
}

@media (max-width: 767px) {
  .legal-hero .container { padding-top: 20px; padding-bottom: 40px; }
  .legal-hero__title     { font-size: clamp(36px, 7vw, 64px); }
  .legal-body            { padding: 48px 0 64px; }
  .legal-section__title  { font-size: 22px; }
}



/* ---- Precios page ---- */

/* Hero */
.precios-hero { text-align: center; padding: 90px 0 48px 0;}
.precios-hero__inner {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            18px;
  max-width:      1096px;
  margin:         0 auto;
}
.precios-hero__badge {
  display:        inline-flex;
  align-items:    center;
  background:     #F4E8FC;
  color:          #9052A8;
  font-family:    var(--font-heading);
  font-size:      14px;
  font-weight:    500;
  line-height:    19.6px;
  padding:        6px 16px;
  border-radius:  28px;
  letter-spacing: 0;
}
.precios-hero__title {
  font-family:    var(--font-heading);
  font-size:      56px;
  font-weight:    500;
  line-height:    61.6px;
  color:          var(--color-text-primary);
  letter-spacing: 0;
  margin:         0;
}
.precios-hero__title-hl { color: #eb650a; }
.precios-hero__subtitle {
  font-family: var(--font-heading);
  font-size:   18px;
  font-weight: 600;
  line-height: 28px;
  color:       #4c4e4b;
  margin:      0;
}

/* Section wrapper */
.pricing-section { padding-bottom: 0; }

.pricing-section .use-card { height: 704px; }

/* Cards laterales (Starter / Enterprise) */
.pricing-section .use-card:not(.pricing-calc-card) .use-card__body         { padding: 32px; }
.pricing-section .use-card:not(.pricing-calc-card) .use-card__top          { gap: 40px; }
.pricing-section .use-card:not(.pricing-calc-card) .use-card__plan-details { display: flex; flex-direction: column; gap: 24px; }
.pricing-section .use-card:not(.pricing-calc-card) .use-card__desc         { padding: 0; }
.pricing-section .use-card:not(.pricing-calc-card) .use-card__bullets      { gap: 14px; padding: 0; }
.pricing-section .use-card:not(.pricing-calc-card) .use-card__bullet       { gap: 12px; }

/* Card central */
.pricing-section .use-card--featured .use-card__body { padding: 56px 32px 32px; }

/* Plan header (nombre + precio) */
.pricing-plan {
  display:        flex;
  flex-direction: column;
}
.pricing-plan__names {
  display:        flex;
  flex-direction: column;
  gap:            4px;
}
.pricing-plan__name {
  display:     block;
  font-family: var(--font-heading);
  font-size:   32px;
  font-weight: 600;
  line-height: 1.2;
  color:       #eb650a;
}
.pricing-plan__sub {
  display:     block;
  font-family: var(--font-heading);
  font-size:   14px;
  font-weight: 500;
  line-height: 20px;
  color:       #4c4e4b;
}
.pricing-price {
  font-family:    var(--font-heading);
  font-size:      48px;
  font-weight:    900;
  line-height:    1.1;
  letter-spacing: -0.96px;
  color:          var(--color-text-primary);
  margin:         0;
  padding:        0;
}
.pricing-calc-card .use-card__cta-group       { display: flex; flex-direction: column; gap: 32px; }
.pricing-calc-card .use-card__price-container { display: flex; flex-direction: column; gap: 20px; }
.pricing-calc-card .pricing-price             { margin: 0; padding: 0; }
.pricing-calc-card .use-card__bullets         { gap: 14px; padding: 0; }
.pricing-calc-card .use-card__bullet          { gap: 12px; }
.pricing-price__period {
  font-family:  var(--font-heading);
  font-size:    14px;
  font-weight:  400;
  letter-spacing: 0;
  color:        #4c4e4b;
  margin-left:  2px;
}
.pricing-price__subtitle {
  font-family:  var(--font-heading);
  font-size:    var(--text-body-s);
  font-weight:  var(--weight-regular);
  line-height:  1.4;
  color:        var(--color-text-tertiary);
}
.pricing-price__subtitle strong,
.pricing-price__subtitle b {
  font-weight: var(--weight-black);
  color:       var(--color-text-primary);
}

/* Calculator slider */
.pricing-calc-slider {
  -webkit-appearance: none;
  appearance:         none;
  width:              100%;
  height:             6px;
  border-radius:      9999px;
  background:         linear-gradient(to right, #f36402 var(--pct, 0%), rgba(255,99,17,.2) var(--pct, 0%));
  outline:            none;
  cursor:             pointer;
  border:             none;
}
.pricing-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width:              16px;
  height:             16px;
  border-radius:      50%;
  background:         #fff;
  border:             1px solid rgba(255,99,17,.5);
  box-shadow:         0 1px 3px rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1);
  cursor:             pointer;
}
.pricing-calc-slider::-moz-range-thumb {
  width:         16px;
  height:        16px;
  border-radius: 50%;
  border:        1px solid rgba(255,99,17,.5);
  background:    #fff;
  box-shadow:    0 1px 3px rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1);
  cursor:        pointer;
}
.pricing-calc-slider::-moz-range-progress { background: #f36402; height: 6px; border-radius: 9999px; }
.pricing-calc-slider::-moz-range-track    { background: rgba(255,99,17,.2); height: 6px; border-radius: 9999px; }
.pricing-calc-slider:focus { outline: none; }
.pricing-calc-slider:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 3px rgba(243,100,2,.3); }

/* Responsive */
@media (max-width: 1023px) {
  .precios-hero__title { font-size: 48px; }
}
@media (max-width: 1100px) {
  .pricing-section .home-usecases__cards { flex-direction: column; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 767px) {
  .precios-hero                          { padding: 66px 0 52px; }
  .precios-hero__title                   { font-size: 42px; letter-spacing: -0.84px; }
  .pricing-plan__name                    { font-size: 24px; }
  .pricing-section .home-usecases__cards { gap: 24px; }
}

/* =============================================================
   CASOS DE ÉXITO
   ============================================================= */

/* Shared */
.section-badge {
  display:        inline-flex;
  align-items:    center;
  background:     rgba(235,101,10,.1);
  border:         1px solid rgba(235,101,10,.25);
  border-radius:  999px;
  padding:        6px 16px;
  font-family:    var(--font-heading);
  font-size:      12px;
  font-weight:    500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color:          #eb650a;
  line-height:    1;
}

.section-badge--lilac {
  background:     #f4e8fc;
  border:         none;
  color:          #9052a8;
  font-family:    'DM Sans', sans-serif;
  font-size:      14px;
  letter-spacing: 0;
  line-height:    1.4;
  text-transform: none;
}

/* --- B1 Hero --- */
.casos-hero {
  background:  #fff0e8;
  min-height:  779px;
  padding:     120px 0 80px;
  position:    relative;
  overflow:    hidden;
}
/* Todos los orbs convergen en la esquina inferior-derecha de la sección */
.casos-hero__orbs {
  position:       absolute;
  right:          300px;
  bottom:         0px;
  width:          2100px;
  height:         900px;
  pointer-events: none;
}
.casos-hero__orb { position: absolute; filter: blur(8px); opacity: .6; }
/* Orb A — 1102px, rotate 45deg */
.casos-hero__orb--a {
  left: 1549px; top: 349px;
  width: 1102px; height: 1102px;
  border-radius: 663px;
  background: linear-gradient(187deg, rgba(255,255,255,0) 20%, rgb(235,101,10) 105%);
  transform: rotate(45deg);
}
/* Orb B — 1374px, rotate -27.28deg */
.casos-hero__orb--b {
  left: 1413px; top: 213px;
  width: 1374px; height: 1374px;
  border-radius: 773px;
  background: linear-gradient(187deg, rgba(255,255,255,0) 20%, rgb(235,101,10) 105%);
  transform: rotate(-27.28deg);
}
/* Orb C — 826×900, rotate -89.73deg */
.casos-hero__orb--c {
  left: 1687px; top: 450px;
  width: 826px; height: 900px;
  border-radius: 543px;
  background: linear-gradient(187deg, rgba(255,255,255,0) 20%, rgb(235,101,10) 105%);
  transform: rotate(-89.73deg);
}
/* Orb D — 532px, rotate 85.35deg */
.casos-hero__orb--d {
  left: 1834px; top: 634px;
  width: 532px; height: 532px;
  border-radius: 543px;
  background: linear-gradient(187deg, rgba(255,255,255,0) 20%, rgb(235,101,10) 105%);
  transform: rotate(85.35deg);
}
.casos-hero__inner {
  position:       relative;
  z-index:        1;
  max-width:      852px;
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  gap:            24px;
}
.casos-hero__title {
  font-family:    var(--font-heading);
  font-size:      56px;
  font-weight:    500;
  line-height:    1.1;
  letter-spacing: 0;
  color:          #111210;
  margin:         0;
}
.casos-hero__subtitle {
  font-family: var(--font-body);
  font-size:   20px;
  font-weight: 400;
  line-height: 1.4;
  color:       #4c4e4b;
  margin:      0;
  max-width:   640px;
}
.casos-hero__subtitle p { margin: 0; }
.casos-hero__social {
  display:     flex;
  align-items: center;
  gap:         12px;
  flex-wrap:   wrap;
}
.casos-hero__avatars { display: flex; align-items: center; }
.casos-hero__avatar {
  width:         46px;
  height:        46px;
  border-radius: 50%;
  border:        2px solid #fff;
  object-fit:    cover;
  margin-left:   -8px;
}
.casos-hero__avatars .casos-hero__avatar:first-child { margin-left: 0; }
.casos-hero__social-text {
  font-family: var(--font-body);
  font-size:   14px;
  font-weight: 600;
  color:       #111210;
  margin:      0;
}

/* --- B2 Clientes --- */
.casos-clientes { padding: 80px 0; }
.casos-clientes__header {
  text-align:      center;
  margin-bottom:   48px;
  max-width:       1096px;
  margin-left:     auto;
  margin-right:    auto;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             18px;
}
.casos-clientes__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    1.1;
  letter-spacing: -.88px;
  color:          #111210;
  margin:         0;
}
.casos-clientes__subtitle { font-size: 16px; font-weight: 400; color: #717182; line-height: 1.3; max-width: 754px; }
.casos-clientes__subtitle p { margin: 0; }
.casos-clientes__grid {
  display:               grid;
  grid-template-columns: repeat(4,1fr);
  gap:                   30px;
}
.client-card {
  background:     #f9fafb;
  border-radius:  16px;
  padding:        32px;
  height:         172px;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  justify-content: center;
  gap:            12px;
  text-align:     center;
  box-shadow:     0 4px 4px rgba(22,22,35,.12);
}
.client-card__logo {
  width:         56px;
  height:        56px;
  border-radius: 14px;
  overflow:      hidden;
  flex-shrink:   0;
  display:       flex;
  align-items:   center;
  justify-content: center;
}
.client-card__logo img { width: 56px; height: 56px; object-fit: cover; display: block; }
.client-card__name { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: #111210; margin: 0; }

/* --- B3 Sectores --- */
.casos-sectores { padding: 80px 0 144px; background: #f9fafb; }
.casos-sectores__header {
  text-align:    center;
  margin-bottom: 48px;
  max-width:     824px;
  margin-left:   auto;
  margin-right:  auto;
  display:       flex;
  flex-direction: column;
  align-items:   center;
  gap:           18px;
}
.casos-sectores__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    1.1;
  letter-spacing: -.88px;
  color:          #111210;
  margin:         0;
}
.casos-sectores__subtitle { font-size: 16px; font-weight: 400; color: #717182; line-height: 1.3; }
.casos-sectores__subtitle p { margin: 0; }
.casos-sectores__grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   30px;
}
.sector-card {
  display:        flex;
  align-items:    center;
  gap:            16px;
  background:     #fff;
  border:         0.5px solid #c2c6c0;
  border-radius:  18px;
  padding:        24px 32px;
  box-shadow:     0 4px 4px rgba(22,22,35,.12);
}
.sector-card__icon {
  flex-shrink:  0;
  width:        44px;
  height:       44px;
  border-radius: 30px;
  padding:      12px;
  background:   linear-gradient(180deg, #e43c11 25.356%, #f36402 54%, #f08a22 114.2%);
  box-shadow:   0 1px 1.5px rgba(0,0,0,.1), 0 1px 1px rgba(0,0,0,.1);
  display:      flex;
  align-items:  flex-start;
}
.sector-card__icon img { width: 20px; height: 20px; display: block; filter: brightness(0) invert(1); }
.sector-card__name {
  font-family: var(--font-body);
  font-size:   16px;
  font-weight: 500;
  color:       #111210;
  line-height: 1.5;
}

/* --- B4 Stats --- */
.casos-stats {
  background:      #eb650a;
  height:          400px;
  position:        relative;
  overflow:        hidden;
  text-align:      center;
  display:         flex;
  align-items:     center;
}
.casos-stats .container { width: 100%; padding: 0; }
.casos-stats__orb {
  position:       absolute;
  filter:         blur(9.7px);
  opacity:        .8;
  background:     linear-gradient(233.18deg, rgba(255,255,255,0) 48.6%, rgba(255,255,255,.25) 88.4%);
  pointer-events: none;
}
/* Blob izquierdo: 844×844, parcialmente fuera del borde superior-izquierdo */
.casos-stats__orb--left {
  width:         844px;
  height:        844px;
  border-radius: 422px;
  left:          -89px;
  top:           -511px;
  transform:     rotate(15deg);
}
/* Blob derecho: 689×689, alineado al borde derecho */
.casos-stats__orb--right {
  width:         689px;
  height:        689px;
  border-radius: 344.627px;
  right:         0;
  top:           116px;
  transform:     rotate(180deg);
}
.casos-stats__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    1.1;
  letter-spacing: -.88px;
  color:          #fff;
  margin:         0 0 18px;
  position:       relative;
}
.casos-stats__title:last-child { margin-bottom: 0; }
.casos-stats__row { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; position: relative; }
.stat-card { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 200px; flex: 1; }
.stat-card__number {
  font-family: var(--font-heading);
  font-size:   56px;
  font-weight: 700;
  line-height: 1;
  color:       #fff;
}
.stat-card__label { font-family: var(--font-body); font-size: 20px; font-weight: 700; color: #f9fafb; line-height: 28px; text-align: center; }

/* --- B5 Casos de uso --- */
.casos-uso { padding: 64px 0; background: #f9fafb; }
.casos-uso__header {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  gap:            24px;
  margin-bottom:  48px;
}
.casos-uso__header-top { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.casos-uso__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    1.1;
  letter-spacing: -.88px;
  color:          #111210;
  margin:         0;
}
.casos-uso__subtitle { font-size: 20px; font-weight: 400; color: #4c4e4b; line-height: 28px; max-width: 654px; }
.casos-uso__subtitle p { margin: 0; }
.casos-uso__cards {
  display:               flex;
  gap:                   30px;
  margin-bottom:         40px;
  justify-content:       center;
  flex-wrap:             wrap; 
}
.uso-card {
  background:     #fff;
  border:         0.5px solid #c2c6c0;
  border-radius:  24px;
  padding:        32.5px;
  min-height:     278px;
  max-width:      336px;
  width:          100%;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  gap:            12px;
  box-shadow:     0 4px 8px rgba(22,22,35,.12);
}
.uso-card__icon {
  flex-shrink: 0;
  width:       56px;
  height:      56px;
  border-radius: 30px;
  padding:     12px;
  background:  linear-gradient(180deg, #e43c11 25.356%, #f36402 54%, #f08a22 114.2%);
  box-shadow:  0 1px 1.5px rgba(0,0,0,.1), 0 1px 1px rgba(0,0,0,.1);
  display:     flex;
  align-items: center;
  justify-content: center;
}
.uso-card__icon img { width: 32px; height: 32px; display: block; filter: brightness(0) invert(1); }
.uso-card__title { font-family: var(--font-body); font-size: 18px; font-weight: 600; line-height: 28px; color: #111210; margin: 0; }
.uso-card__desc  { font-size: 16px; font-weight: 400; color: #4c4e4b; line-height: 1.3; }
.uso-card__desc p { margin: 0; }
.casos-uso__cta { text-align: center; }

/* --- B6 FAQ --- */
.casos-faq { padding: 80px 0; background: #fff; }
.casos-faq__header { text-align: center; margin-bottom: 48px; }
.casos-faq__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    48.4px;
  letter-spacing: -.88px;
  color:          #09090b;
  margin:         0;
}
.casos-faq__list                { width: 100%; }
.casos-faq__list .faq-item      { border-bottom: 1px solid rgba(9,9,11,.1); border-top: none; padding: 16px 0; }
.casos-faq__list .faq-item__question { font-size: 16px; font-weight: 500; font-family: 'Inter', sans-serif; }

/* --- B7 CTA --- */
.casos-cta-wave { display: block; line-height: 0; margin-bottom: -1px; }
.casos-cta-wave svg { display: block; width: 100%; }
.casos-cta {
  background: #eb650a;
  padding:    96px 0;
  position:   relative;
  overflow:   hidden;
  text-align: center;
}
.casos-cta__orb {
  position:       absolute;
  border-radius:  200px;
  filter:         blur(9.7px);
  background:     linear-gradient(233.18deg, rgba(255,255,255,0) 48.6%, rgba(255,255,255,.25) 88.4%);
  pointer-events: none;
}
.casos-cta__orb--left  { width: 304px; height: 304px; left: -120px; bottom: -60px; transform: rotate(150deg); }
.casos-cta__orb--right { width: 264px; height: 264px; right: -120px; top: -3px; transform: rotate(26.23deg); }
.casos-cta__inner {
  position:        relative;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             36px;
  max-width:       640px;
  margin:          0 auto;
}
.casos-cta__header  { display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%; }
.casos-cta__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    800;
  line-height:    1.12;
  letter-spacing: -1.32px;
  color:          #fff;
  max-width:      504px;
  margin:         0 auto;
}
.casos-cta__subtitle { font-size: 18px; font-weight: 400; color: rgba(255,255,255,.85); line-height: 1.6; margin: 0; width: 100%; }
.casos-cta__subtitle p { margin: 0; }
.casos-cta__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
/* Botones sobre fondo naranja */
.casos-cta .casos-cta__btn--white,
.casos-cta .oli-btn--primary       { background: #fff; color: #d94420; box-shadow: none; filter: none; }
.casos-cta .casos-cta__btn--white:hover,
.casos-cta .oli-btn--primary:hover  { filter: none; opacity: .9; }
.casos-cta .oli-btn--secondary      { background: linear-gradient(180deg, rgba(9,9,11,.02) 0%, rgba(9,9,11,.04) 100%); border: 1px solid rgba(9,9,11,.2); color: #fff; box-shadow: none; }
.casos-cta .oli-btn--secondary:hover { opacity: .8; box-shadow: none; color: #fff; }

/* --- Responsive Casos de Éxito --- */
@media (max-width: 1023px) {
  .casos-clientes__grid  { grid-template-columns: repeat(3,1fr); }
  .casos-sectores__grid  { grid-template-columns: repeat(2,1fr); }
  .casos-uso__cards      { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 767px) {
  .casos-hero               { padding: 80px 0 56px; }
  .casos-hero__title        { font-size: 36px; }
  .casos-clientes__grid {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; gap: 16px; padding-bottom: 6px;
  }
  .casos-clientes__grid::-webkit-scrollbar { display: none; }
  .client-card { flex: 0 0 78vw; max-width: 300px; height: auto; min-height: 140px; scroll-snap-align: start; }
  .casos-slider__dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
  .casos-slider__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #c2c6c0; border: none; padding: 0; cursor: pointer;
    transition: background .2s, transform .2s; flex-shrink: 0;
  }
  .casos-slider__dot.is-active { background: #eb650a; transform: scale(1.3); }
  .casos-sectores__grid     { grid-template-columns: 1fr; }
  .casos-clientes__title,
  .casos-sectores__title,
  .casos-uso__title,
  .casos-faq__title         { font-size: 28px; }
  .casos-stats__title       { font-size: 28px; margin-bottom: 32px; }
  .stat-card__number        { font-size: 40px; }
  .casos-stats__row         { gap: 24px; }
  .casos-uso__cards         { grid-template-columns: 1fr; }
  .casos-cta__title         { font-size: 28px; letter-spacing: -.84px; }
}

/* =====================
   Página Soluciones
===================== */

/* --- B1 Hero --- */
.sol-hero {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fff0e8, #fff);
}
.sol-hero .container { padding: 0; }  /* imagen ocupa los 1320px completos */
.sol-hero__wrapper {
  position: relative;
  height: 640px;
}
.sol-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;          /* 1320px — ancho completo del container */
  height: 100%;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: #f3ede7;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
}
.sol-hero__card {
  position: absolute;
  top: 350px;
  left: 30px;
  z-index: 1;
  max-width: 668px;
  background: #f9fafb;
  border: 1px solid #c2c6c0;
  border-radius: 24px;
  box-shadow: 0 4px 4px rgba(22,22,35,.12);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sol-hero__content { display: flex; flex-direction: column; gap: 16px; }
.sol-hero__title {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.96px;
  color: #161a1d;
  margin: 0;
}
.sol-hero__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: #494d50;
  line-height: 1.4;
  margin: 0;
}
.sol-hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* --- B2 Funcionalidades --- */
.sol-funcionalidades { background: #fff; padding: 60px 0; }
.sol-funcionalidades .container { padding: 0; }   /* grid ocupa los 1320px completos */
.sol-funcionalidades__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 48px;
}
.sol-funcionalidades__title {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.96px;
  color: #09090b;
  max-width: 870px;
  margin: 0;
}
.sol-gradient-text {
  background: linear-gradient(to right, #e43c11, #e95d18 64%, #f08a22);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sol-funcionalidades__grid { display: grid; grid-template-columns: repeat(3, 419px); gap: 30px; justify-content: center; }
.sol-card-img {
  background: #fff;
  border: 0.5px solid #c2c6c0;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(22,22,35,.12);
}
.sol-card-img__body {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.sol-card-img__title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: #111210;
  margin: 0;
  line-height: 1.2;
}
.sol-card-img__desc  { font-size: 16px; font-weight: 400; color: #4c4e4b; line-height: 1.3; margin: 0; }
.sol-card-img__media { width: 100%; height: 281px; overflow: hidden; border-radius: 20px; }
.sol-card-img__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- B3 Experiencia --- */
.sol-experiencia { background: #f6f7f9; padding: 60px 0; }
.sol-experiencia .container { padding: 0; }
.sol-experiencia__header { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; padding: 0 20px; }
.sol-experiencia__quote {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #111210;
  max-width: 1095px;
  margin: 0;
}
.sol-orange-text { color: #eb650a; }
.sol-experiencia__image {
  width: 100%;
  height: 640px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
}
.sol-experiencia__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- B4 FAQ --- */
.sol-faq { background: #fff; padding: 60px 0; }
.sol-faq__header     { text-align: center; margin-bottom: 48px; }
.sol-faq__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.96px;
  color: #111210;
  margin: 0;
}
.sol-faq__list { width: 100%; }
.sol-faq__list .faq-item          { border-bottom: 1px solid rgba(9,9,11,.1); border-top: none; padding: 16px 0; }
.sol-faq__list .faq-item__question { font-size: 16px; font-weight: 500; font-family: 'Inter', sans-serif; line-height: 1.5; color: #111210; }

/* --- B5 Partner --- */
.sol-partner { background: #fff; padding: 80px 0; }
.sol-partner__card {
  display: flex;
  align-items: stretch;
  border: 1px solid #e0e4df;
  border-radius: 14px;
  box-shadow: 0 4px 4px rgba(22,22,35,.12);
  overflow: hidden;
}
.sol-partner__left {
  position: relative;
  width: 531px;
  flex-shrink: 0;
  background: #fff0e8;
  padding: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 652px;
}
.sol-partner__orbs { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.sol-partner__orb  { position: absolute; border-radius: 290px; filter: blur(8px); }
.sol-partner__orb--1 { width: 590px; height: 590px; left: 147px; top: 268px; background: linear-gradient(187deg, rgba(255,255,255,0) 20.055%, rgb(235,101,10) 105.16%); transform: rotate(-155.39deg); }
.sol-partner__orb--2 { width: 465px; height: 465px; left: -157px; top: 380px; background: linear-gradient(to bottom, rgba(255,255,255,0), #eb650a); transform: rotate(4.6deg); }
.sol-partner__orb--3 { width: 285px; height: 285px; left: 211px; top: 445px; background: linear-gradient(to bottom, rgba(255,255,255,0), #eb650a); transform: rotate(16.65deg); }
.sol-partner__title {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.96px;
  color: #111210;
  margin: 0;
  position: relative;
  z-index: 1;
}
.sol-partner__right {
  flex: 1;
  padding: 40px 40px 40px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* CF7 form dentro de B5 Partner */
.sol-partner__right .wpcf7-form { display: flex; flex-direction: column; gap: 27px; }
.sol-partner__right .wpcf7-form p { margin: 0; }
.sol-partner__right .wpcf7-form .form-row { display: flex; gap: 15px; }
.sol-partner__right .wpcf7-form .form-field { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.sol-partner__right label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #656963;
  line-height: 1.3;
}
.sol-partner__right .wpcf7-form-control.wpcf7-text,
.sol-partner__right .wpcf7-form-control.wpcf7-email,
.sol-partner__right .wpcf7-form-control.wpcf7-tel,
.sol-partner__right .wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #eeeeed;
  border-radius: 10px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #4c4e4b;
  line-height: 1.3;
  box-sizing: border-box;
  outline: none;
  transition: border-color .2s;
}
.sol-partner__right .wpcf7-form-control.wpcf7-text:focus,
.sol-partner__right .wpcf7-form-control.wpcf7-email:focus,
.sol-partner__right .wpcf7-form-control.wpcf7-tel:focus,
.sol-partner__right .wpcf7-form-control.wpcf7-textarea:focus { border-color: #eb650a; }
.sol-partner__right .wpcf7-form-control.wpcf7-textarea { resize: vertical; min-height: 100px; }
.sol-partner__right .wpcf7-form-control.wpcf7-submit {
  background: linear-gradient(180deg, #e43c11 25%, #f36402 54%, #f08a22 114%);
  border: none;
  border-radius: 24px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 1px 1px rgba(0,0,0,.1), 0 1px 1.5px rgba(0,0,0,.1);
  align-self: flex-start;
  line-height: 1.3;
}
.sol-partner__right .wpcf7-form-control.wpcf7-submit:hover { opacity: .9; }
.sol-partner__right .wpcf7-acceptance { font-family: var(--font-body); font-size: 10px; color: #656963; line-height: 1.4; }
.sol-partner__right .wpcf7-acceptance .wpcf7-list-item { margin: 0; }

/* --- B6 CTA --- */
.sol-cta-wave         { line-height: 0; }
.sol-cta-wave svg     { display: block; width: 100%; height: 40px; }
.sol-cta {
  background: #eb650a;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.sol-cta__orb { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.sol-cta__orb--left  { width: 304px; height: 304px; left: -120px; top: 50%; transform: translateY(-50%); background: radial-gradient(circle, rgba(255,255,255,.25), rgba(255,255,255,0) 70%); }
.sol-cta__orb--right { width: 264px; height: 264px; right: -40px; top: -3px; background: radial-gradient(circle, rgba(255,255,255,.25), rgba(255,255,255,0) 70%); }
.sol-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 640px;
  margin: 0 auto;
}
.sol-cta__header  { display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%; }
.sol-cta__title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.32px;
  color: #fff;
  max-width: 504px;
  margin: 0 auto;
}
.sol-cta__subtitle   { font-size: 18px; font-weight: 400; color: rgba(255,255,255,.85); line-height: 1.6; margin: 0; width: 100%; }
.sol-cta__subtitle p { margin: 0; }
.sol-cta__actions    { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.sol-cta .sol-cta__btn--white,
.sol-cta .oli-btn--primary        { background: #fff; color: #d94420; box-shadow: none; filter: none; }
.sol-cta .sol-cta__btn--white:hover,
.sol-cta .oli-btn--primary:hover  { filter: none; opacity: .9; }
.sol-cta .oli-btn--secondary      { background: linear-gradient(180deg, rgba(9,9,11,.02) 0%, rgba(9,9,11,.04) 100%); border: 1px solid rgba(9,9,11,.2); color: #fff; box-shadow: none; }
.sol-cta .oli-btn--secondary:hover { opacity: .8; box-shadow: none; color: #fff; }

/* =============================================================
   ABOUT
   ============================================================= */

/* ---- B1 Hero ---- */
.about-hero {
  position: relative;
  background: #fff0e8;
  padding: 120px 0 130px;
  overflow: hidden;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero__content { max-width: 851px; }
.about-hero__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.8px;
  color: #111210;
  margin: 0 0 29px;
}
.about-orange-text { color: #eb650a; }
.about-hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: -0.32px;
  color: #4c4e4b;
  margin: 0 0 29px;
}
.about-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 7px 10px;
  background: #fff;
  border: 1px solid rgba(250,110,29,.2);
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(250,110,29,.1), 0 2px 4px -2px rgba(250,110,29,.1);
  text-decoration: none;
}
.about-hero__link-inner {
  display: flex;
  align-items: center;
  gap: 9px;
}
.about-hero__link-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #656963;
  white-space: nowrap;
}
.about-hero__link-logo { height: 15px; width: auto; }
.about-hero__link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: #f36402;
  border: 1px solid #eb650a;
  font-size: 10px;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}
.about-hero__link-arrow img { width: 8px; height: 8px; display: block; }

/* Orbs hero */
.about-hero__orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.about-hero__orb { position: absolute; border-radius: 9999px; }
.about-hero__orb--1 {
  width: 406px; height: 406px;
  right: -165px; top: -103px;
  background: radial-gradient(circle, rgba(243,100,2,.6) 0%, rgba(240,138,34,0) 100%);
  filter: blur(20px);
  opacity: .6;
}
.about-hero__orb--2 {
  width: 761px; height: 761px;
  right: 0; bottom: -285px;
  background: radial-gradient(circle, rgba(243,100,2,.6) 0%, rgba(240,138,34,0) 100%);
  filter: blur(20px);
  opacity: .5;
}
.about-hero__orb--3 {
  width: 250px; height: 250px;
  left: -63px; top: calc(50% + 294.5px);
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(243,100,2,.6) 0%, rgba(240,138,34,0) 100%);
  filter: blur(20px);
  opacity: .7;
}

/* ---- B2 El Problema ---- */
.about-problema { background: #fff; padding: 64px 0; }
.about-problema__inner {
  display: flex;
  align-items: center;
  gap: 146px;
}
.about-problema__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 0 0 622px;
}
.about-problema__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.about-problema__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.96px;
  color: #111210;
  margin: 0;
}
.about-problema__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #4c4e4b;
  margin: 0;
}
.about-problema__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.about-problema__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f9fafb;
  border: .5px solid #c2c6c0;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 4px 4px rgba(22,22,35,.12);
}
.about-problema__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 30px;
  background: linear-gradient(180deg, #e43c11 25%, #f36402 54%, #f08a22 114%);
  box-shadow: 0 1px 1.5px rgba(0,0,0,.1), 0 1px 1px rgba(0,0,0,.1);
  flex-shrink: 0;
}
.about-problema__card-body { display: flex; flex-direction: column; gap: 10px; }
.about-problema__card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -.32px;
  color: #111210;
  margin: 0;
}
.about-problema__card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: -.154px;
  color: #4c4e4b;
  margin: 0;
}

/* ---- B3 Origen ---- */
.about-origen { background: #f9fafb; padding: 124px 0; }
.about-origen__inner {
  display: flex;
  align-items: flex-start;
  gap: 146px;
}
.about-origen__timeline-wrap { flex: 0 0 467px; }
.about-origen__timeline-card {
  background: #fff;
  border: .5px solid #c2c6c0;
  border-radius: 22px;
  box-shadow: 0 4px 8px rgba(22,22,35,.12);
  padding: 41px 48px 41px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 90px;
}
.about-origen__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-origen__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.about-origen__step + .about-origen__step::before {
  content: '';
  position: absolute;
  left: 15px;
  top: -22px;
  height: 22px;
  width: 1px;
  background: #f2e5db;
}
.about-origen__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #e43c11 25%, #f36402 54%, #f08a22 114%);
  font-family: 'DM Sans', sans-serif;
  font-size: 13.7px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.about-origen__step-body { display: flex; flex-direction: column; gap: 4px; }
.about-origen__step-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  color: #eb650a;
  display: block;
}
.about-origen__step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #111210;
  display: block;
}
.about-origen__step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #4c4e4b;
  margin: 0;
}
.about-origen__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid rgba(9,9,11,.2);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9,9,11,.04) 0%, rgba(9,9,11,.02) 100%);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #111210;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: inset 0 0 4px rgba(0,0,0,.1);
  transition: background .2s;
}
.about-origen__btn:hover { background: rgba(9,9,11,.06); }

.about-origen__story {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-origen__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.96px;
  color: #111210;
  margin: 0;
}
.about-origen__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #111210;
  margin: 0;
}
.about-origen__quote {
  background: #eeeeed;
  border-radius: 24px;
  padding: 24px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #4c4e4b;
  text-align: center;
  margin: 12px 0 0;
  max-width: 473px;
}

/* ---- B4 Misión ---- */
.about-mision {
  position: relative;
  background: #eb650a;
  padding: 62px 0;
  overflow: hidden;
}
.about-mision .container { position: relative; z-index: 1; }
.about-mision__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.96px;
  color: #fff;
  text-align: center;
  margin: 0;
}
.about-mision__orb {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(10px);
  opacity: .8;
}
.about-mision__orb--right {
  width: 689px; height: 689px;
  right: -230px; top: 116px;
  background: linear-gradient(233deg, rgba(255,255,255,0) 48.6%, rgba(255,255,255,.25) 88.4%);
  transform: rotate(180deg);
}
.about-mision__orb--left {
  width: 689px; height: 689px;
  left: -89px; top: -511px;
  background: linear-gradient(233deg, rgba(255,255,255,0) 48.6%, rgba(255,255,255,.25) 88.4%);
  transform: rotate(15deg);
}

/* ---- B5 Equipo ---- */
.about-equipo { background: #f9fafb; padding: 60px 0; }
.about-equipo__card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #f9fafb;
  border: 1px solid #e0e4df;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(22,22,35,.12);
}
.about-equipo__image {
  flex: 0 0 758px;
  height: 577px;
  overflow: hidden;
  border-radius: 20px;
  flex-shrink: 0;
}
.about-equipo__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-equipo__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 52px;
}
.about-equipo__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #161a1d;
  margin: 0;
}
.about-equipo__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #111210;
  margin: 16px 0 0;
}

/* ---- B6 Features ---- */
.about-features { background: #f9fafb; padding: 64px 0; }
.about-features__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  text-align: center;
}
.about-features__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.96px;
  color: #09090b;
  margin: 0;
}
.about-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.about-features__card {
  background: #fff;
  border: .5px solid #c2c6c0;
  border-radius: 24px;
  padding: 32.5px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 8px rgba(22,22,35,.12);
  min-height: 199px;
}
.about-features__card-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  color: #f36402;
}
.about-features__card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #111210;
  margin: 0;
}
.about-features__card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #6b6e69;
  margin: 0;
}

/* ---- B7 Cómo trabajamos ---- */
.about-como { background: #fff; padding: 60px 0; }
.about-como__inner {
  display: flex;
  align-items: flex-end;
  gap: 62px;
}
.about-como__left {
  flex: 0 0 698px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-como__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.96px;
  color: #111210;
  margin: 0;
}
.about-como__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #4c4e4b;
  margin: 8px 0;
}
.about-como__faq {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.about-faq-item .faq-item__question {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #111210;
  text-align: left;
  border-bottom: 1px solid rgba(9,9,11,.1);
}
.about-faq-item__num {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #eb650a;
  flex-shrink: 0;
}
.about-faq-item .faq-item__question span[itemprop="name"] { flex: 1; }
.about-faq-item .faq-item__question svg { margin-left: auto; flex-shrink: 0; transition: transform .25s; }
.about-faq-item.is-open .faq-item__question svg { transform: rotate(180deg); }
.about-faq-item .faq-item__answer {
  padding: 0 0 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: -.32px;
  color: #4c4e4b;
  display: none;
  border-bottom: 1px solid rgba(9,9,11,.1);
}
.about-faq-item.is-open .faq-item__answer { display: block; }

/* ---- B8 Características ---- */
.about-carac { background: #f9fafb; padding: 64px 0 80px; }
.about-carac__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  text-align: center;
}
.about-carac__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.96px;
  color: #111210;
  margin: 0;
}
.about-carac__grid {
  display: grid;
  grid-template-columns: repeat(3, 335px);
  gap: 30px;
  justify-content: center;
}
.about-carac__card {
  background: #fff;
  border: .5px solid #c2c6c0;
  border-radius: 24px;
  padding: 32.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 8px rgba(22,22,35,.12);
  text-align: center;
}
.about-carac__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #e43c11 25%, #f36402 54%, #f08a22 114%);
  flex-shrink: 0;
}
.about-carac__card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.556;
  color: #111210;
  margin: 0;
}
.about-carac__card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #4c4e4b;
  margin: 0;
}

/* ---- B9 CTA ---- */
.about-cta-wave svg { display: block; width: 100%; height: 40px; }
.about-cta {
  position: relative;
  background: #eb650a;
  padding: 60px 0 80px;
  overflow: hidden;
}
.about-cta .container { position: relative; z-index: 1; }
.about-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.about-cta__header { display: flex; flex-direction: column; gap: 16px; }
.about-cta__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.96px;
  color: #fff;
  margin: 0;
}
.about-cta__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}
.about-cta__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.about-cta__btn--white.oli-btn--primary {
  background: #fff;
  color: #eb650a;
  box-shadow: none;
}
.about-cta__btn--white.oli-btn--primary:hover { background: #f5f5f5; }
.about-cta__orb {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(10px);
  opacity: .8;
}
.about-cta__orb--left {
  width: 416px; height: 416px;
  left: 296px; bottom: -200px;
  background: linear-gradient(233deg, rgba(255,255,255,0) 48.6%, rgba(255,255,255,.25) 88.4%);
}
.about-cta__orb--right {
  width: 354px; height: 354px;
  right: -60px; top: -3px;
  background: linear-gradient(233deg, rgba(255,255,255,0) 48.6%, rgba(255,255,255,.25) 88.4%);
}

/* --- Responsive About --- */
@media (max-width: 1319px) {
  .about-equipo__image { flex: 0 0 50%; }
}

@media (max-width: 1023px) {
  .about-origen__inner { gap: 48px; }
  .about-origen__timeline-wrap { flex: 0 0 380px; }
  .about-como__inner  { flex-direction: column; align-items: stretch; gap: 40px; }
  .about-como__left   { flex: none; }
  .about-carac__grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  /* B1 Hero */
  .about-hero         { padding: 60px 0 80px; }
  .about-hero__title  { font-size: 36px; letter-spacing: -.72px; }

  /* B2 Problema */
  .about-problema                 { padding: 40px 0; }
  .about-problema__inner          { flex-direction: column; gap: 32px; }
  .about-problema__left           { flex: none; }
  .about-problema__title          { font-size: 32px; letter-spacing: -.64px; }

  /* B3 Origen */
  .about-origen                   { padding: 48px 0; }
  .about-origen__inner            { flex-direction: column; gap: 32px; }
  .about-origen__timeline-wrap    { flex: none; width: 100%; }
  .about-origen__timeline-card    { position: static; }
  .about-origen__title            { font-size: 32px; letter-spacing: -.64px; }
  .about-origen__quote            { max-width: 100%; padding: 20px 24px; }

  /* B4 Misión */
  .about-mision       { padding: 40px 0; }
  .about-mision__text { font-size: 28px; letter-spacing: -.56px; }

  /* B5 Equipo */
  .about-equipo                   { padding: 40px 0; }
  .about-equipo__card             { flex-direction: column; border-radius: 16px; }
  .about-equipo__image            { flex: none; width: 100%; height: 240px; border-radius: 16px 16px 0 0; }
  .about-equipo__body             { padding: 24px 20px; }
  .about-equipo__title            { font-size: 28px; }

  /* B6 Features */
  .about-features                 { padding: 40px 0; }
  .about-features__title          { font-size: 32px; letter-spacing: -.64px; }
  .about-features__grid           { grid-template-columns: 1fr; }

  /* B7 Cómo trabajamos */
  .about-como                     { padding: 40px 0; }
  .about-como__title              { font-size: 32px; letter-spacing: -.64px; }

  /* B8 Características */
  .about-carac                    { padding: 40px 0 60px; }
  .about-carac__title             { font-size: 32px; letter-spacing: -.64px; }
  .about-carac__grid              { grid-template-columns: 1fr; }

  /* B9 CTA */
  .about-cta                      { padding: 40px 0 60px; }
  .about-cta__title               { font-size: 32px; letter-spacing: -.64px; }
  .about-cta-wave svg             { height: 24px; }
}

/* --- Responsive Soluciones --- */

/* Grid pasa a 2 columnas antes de que las 3×419px desborden el container */
@media (max-width: 1340px) {
  .sol-funcionalidades__grid { grid-template-columns: repeat(2, 1fr); justify-content: stretch; }
}

/* Restaurar padding en containers que se zerean en desktop para imágenes a 1320px */
@media (max-width: 1319px) {
  .sol-hero .container            { padding: 0 20px; }
  .sol-funcionalidades .container { padding: 0 20px; }
  .sol-experiencia .container     { padding: 0 20px; }
  .sol-experiencia__header        { padding: 0; }
}

@media (max-width: 1023px) {
  .sol-partner__card  { flex-direction: column; }
  .sol-partner__left  { width: 100%; }
  .sol-partner__right { padding: 24px 40px; }
}

@media (max-width: 767px) {
  /* B1 Hero — wrapper con margen para separar imagen del borde */
  .sol-hero                        { padding: 40px 0; }
  .sol-hero__wrapper               { height: auto; min-height: unset; }
  .sol-hero__photo                 { position: relative; inset: auto; height: 220px; border-radius: 16px; }
  .sol-hero__card                  { position: relative; top: auto; left: auto; max-width: 100%; margin: -40px 0 0; padding: 24px 20px; border-radius: 16px; gap: 16px; }
  .sol-hero__title                 { font-size: 32px; letter-spacing: -.64px; }
  .sol-hero__subtitle              { font-size: 16px; }

  /* B2 Funcionalidades */
  .sol-funcionalidades             { padding: 40px 0; }
  .sol-funcionalidades .container  { padding: 0 20px; }
  .sol-funcionalidades__header     { margin-bottom: 32px; }
  .sol-funcionalidades__title      { font-size: 32px; letter-spacing: -.64px; }
  .sol-funcionalidades__grid       { grid-template-columns: 1fr; }

  /* B3 Experiencia */
  .sol-experiencia                 { padding: 40px 0; }
  .sol-experiencia .container      { padding: 0 20px; }
  .sol-experiencia__header         { padding: 0; margin-bottom: 24px; }
  .sol-experiencia__quote          { font-size: 28px; }
  .sol-experiencia__image          { height: 220px; border-radius: 16px; }

  /* B4 FAQ */
  .sol-faq                         { padding: 40px 0; }
  .sol-faq__title                  { font-size: 32px; letter-spacing: -.64px; }

  /* B5 Partner */
  .sol-partner                     { padding: 40px 0; }
  .sol-partner__left               { height: 294px; min-height: unset; padding: 40px 20px; border-radius: 14px 14px 0 0; }
  .sol-partner__orb--1             { width: 418px; height: 418px; left: 50px;  top: 80px; }
  .sol-partner__orb--2             { width: 330px; height: 330px; left: -110px; top: 100px; }
  .sol-partner__orb--3             { width: 202px; height: 202px; left: 150px; top: 145px; }
  .sol-partner__title              { font-size: 32px; letter-spacing: -.64px; }
  .sol-partner__right              { padding: 24px 20px; }
  .sol-partner__right .wpcf7-form-control.wpcf7-submit { align-self: center; }

  /* B6 CTA */
  .sol-cta                         { padding: 60px 0; }
  .sol-cta__title                  { font-size: 32px; letter-spacing: -.64px; }
  .sol-cta__subtitle               { font-size: 16px; }
  .sol-cta-wave svg                { height: 24px; }
}

/* =====================================================
   Página Buscador WooCommerce
   ===================================================== */

/* ---- B1 Hero ---- */
.woo-hero {
  background:  var(--color-brand-tint);
  padding:     142px 0 80px;
  overflow:    hidden;
}

.woo-hero__inner {
  display:     flex;
  align-items: center;
  gap:         64px;
}

.woo-hero__text {
  flex:           1 1 0;
  min-width:      0;
  display:        flex;
  flex-direction: column;
  gap:            28px;
}

.woo-hero__title {
  font-family: var(--font-ui);
  font-size:   56px;
  font-weight: 500;
  line-height: 110%;
  color:       var(--color-text-primary);
  max-width:   580px;
}

.woo-hero__subtitle {
  font-family: var(--font-heading);
  font-size:   18px;
  font-weight: var(--weight-regular);
  line-height: 28px;
  color:       var(--color-text-tertiary);
  max-width:   560px;
  margin:      0;
}

.woo-hero__ctas {
  display:     flex;
  align-items: center;
  gap:         16px;
  flex-wrap:   wrap;
}

.woo-hero__image {
  flex:          0 0 500px;
  width:         500px;
}

.woo-hero__img {
  width:         100%;
  height:        auto;
  border-radius: 20px;
  display:       block;
  object-fit:    cover;
  aspect-ratio:  4 / 3;
}

/* ---- B2 Tabla comparativa ---- */
.woo-comparison { background: var(--color-n0); }

.woo-comparison__header {
  text-align:    center;
  max-width:     720px;
  margin:        0 auto 48px;
  display:       flex;
  flex-direction: column;
  gap:           16px;
}

.woo-comparison__title {
  font-family:    var(--font-heading);
  font-size:      var(--text-h2);
  font-weight:    var(--weight-black);
  line-height:    var(--lh-h2);
  letter-spacing: var(--ls-h2);
  color:          var(--color-text-primary);
}

.woo-comparison__subtitle {
  font-family: var(--font-heading);
  font-size:   var(--text-body-l);
  color:       var(--color-text-tertiary);
  line-height: var(--lh-body-l);
  margin:      0;
}

.woo-comparison__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-m);
  border: 1px solid var(--color-n200);
}

.woo-comparison__table {
  width:           100%;
  border-collapse: collapse;
  font-family:     var(--font-heading);
  font-size:       var(--text-body-m);
}

.woo-comparison__th {
  padding:    16px 20px;
  text-align: left;
  font-weight: var(--weight-semibold);
  font-size:   var(--text-body-s);
  color:       var(--color-text-secondary);
  background:  var(--color-n70);
  border-bottom: 1px solid var(--color-n200);
  white-space: nowrap;
}

.woo-comparison__th--aspect {
  width:          30%;
  border-radius:  var(--radius-m) 0 0 0;
}

.woo-comparison__th--native {
  width: 35%;
}

.woo-comparison__th--oli {
  width:           35%;
  background:      var(--color-brand-tint);
  color:           var(--color-brand);
  border-radius:   0 var(--radius-m) 0 0;
}

.woo-comparison__oli-logo {
  display:     inline-flex;
  align-items: center;
  gap:         6px;
  font-weight: var(--weight-bold);
  color:       var(--color-brand);
}

.woo-comparison__row:nth-child(even) .woo-comparison__td { background: var(--color-n50); }
.woo-comparison__row:nth-child(even) .woo-comparison__td--oli { background: #fdf4ec; }

.woo-comparison__td {
  padding:       14px 20px;
  vertical-align: middle;
  color:         var(--color-text-secondary);
  border-bottom: 1px solid var(--color-n100);
}

.woo-comparison__row:last-child .woo-comparison__td { border-bottom: none; }

.woo-comparison__td--aspect {
  font-weight: var(--weight-medium);
  color:       var(--color-text-primary);
}

.woo-comparison__td--oli {
  display:     flex;
  align-items: center;
  gap:         8px;
  color:       var(--color-text-brand);
  font-weight: var(--weight-medium);
}

.woo-comparison__check {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  width:           20px;
  height:          20px;
  background:      var(--color-brand-tint);
  border-radius:   50%;
  color:           var(--color-brand);
}

.woo-comparison__cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- CTA banner — segunda fila de botones ---- */
.home-cta-banner__ctas {
  display:     flex;
  align-items: center;
  justify-content: center;
  gap:         16px;
  flex-wrap:   wrap;
}

/* ---- Responsive WooCommerce page ---- */
@media (max-width: 1024px) {
  .woo-hero__inner      { gap: 40px; }
  .woo-hero__image      { flex: 0 0 420px; width: 420px; }
  .woo-hero__title      { font-size: 44px; }
}

@media (max-width: 768px) {
  .woo-hero             { padding: 100px 0 56px; }
  .woo-hero__inner      { flex-direction: column; gap: 32px; }
  .woo-hero__image      { flex: none; width: 100%; }
  .woo-hero__title      { font-size: 36px; }
  .woo-comparison__td--oli { display: table-cell; }
  .woo-comparison__th,
  .woo-comparison__td   { padding: 12px 14px; font-size: 13px; }
}


/* =====================================================
   BLOG PAGE (template-blog.php)
   Figma node: 886:15744
===================================================== */

/* ---- Hero ---- */
.blog-hero {
  position:   relative;
  overflow:   hidden;
  padding:    100px 0;
  background: #fff;
}

.blog-hero__blobs {
  position: absolute;
  inset:    0;
  pointer-events: none;
  z-index:  0;
}

.blog-hero__blob {
  position:      absolute;
  border-radius: 50%;
  filter:        blur(60px);
  opacity:       .45;
}

.blog-hero__blob--1 {
  width:      600px;
  height:     600px;
  background: radial-gradient(circle, #e8d8f8 0%, #f4e8fc 60%, transparent 100%);
  top:        -200px;
  right:      -100px;
}

.blog-hero__blob--2 {
  width:      400px;
  height:     400px;
  background: radial-gradient(circle, #fde8f0 0%, #f9d4e8 60%, transparent 100%);
  bottom:     -100px;
  left:       -80px;
}

.blog-hero__blob--3 {
  width:      350px;
  height:     350px;
  background: radial-gradient(circle, #d4e8fc 0%, #e8f4ff 60%, transparent 100%);
  top:        60px;
  left:       30%;
}

.blog-hero__inner {
  position:       relative;
  z-index:        1;
  max-width:      848px;
  margin:         0 auto;
  padding:        0 24px;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  gap:            24px;
}

.blog-hero__title {
  font-family:    var(--font-heading);
  font-size:      56px;
  font-weight:    500;
  line-height:    1.1;
  color:          #180f09;
  margin:         0;
  letter-spacing: -.5px;
}

.blog-hero__subtitle {
  font-family: var(--font-heading);
  font-size:   20px;
  font-weight: 400;
  line-height: 28px;
  color:       #656863;
  margin:      0;
  max-width:   504px;
}

.blog-hero__ctas {
  display:     flex;
  align-items: center;
  gap:         16px;
  flex-wrap:   wrap;
}

/* ---- Noticias Destacadas ---- */
.blog-destacadas {
  padding: 80px 0;
}

.blog-destacadas__header {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  gap:            10px;
  margin-bottom:  40px;
}

.blog-destacadas__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    48.4px;
  letter-spacing: -.88px;
  color:          #111210;
  margin:         0;
}

.blog-destacadas__grid {
  display:               grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows:    260px 260px;
  column-gap:            21px;
  row-gap:               20px;
}

/* Tarjetas featured: base compartida */
.blog-feat {
  position:           relative;
  display:            block;
  text-decoration:    none;
  border-radius:      22px;
  overflow:           hidden;
  background-color:   #1a1209;
  background-size:    cover;
  background-position: center;
  color:              #fff;
}

.blog-feat--large {
  grid-row: 1 / 3;
}

.blog-feat__overlay {
  position: absolute;
  inset:    0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,0) 100%);
  z-index:  1;
}

.blog-feat__badge {
  position:      absolute;
  top:           20px;
  left:          20px;
  z-index:       2;
  background:    #fd591c;
  color:         #fff;
  font-family:   var(--font-ui);
  font-size:     10px;
  font-weight:   700;
  line-height:   15px;
  padding:       2.5px 12px;
  border-radius: 4px;
  white-space:   nowrap;
}

/* Cuerpo texto de la tarjeta grande */
.blog-feat__body--large {
  position:        absolute;
  bottom:          0;
  left:            0;
  right:           0;
  z-index:         2;
  padding:         28px 28px 12px;
  display:         flex;
  flex-direction:  column;
  gap:             11.5px;
}

.blog-feat__title--large {
  font-family:  var(--font-heading);
  font-size:    32px;
  font-weight:  500;
  line-height:  32px;
  color:        #fff;
  margin:       0;
}

.blog-feat__excerpt {
  font-family: var(--font-heading);
  font-size:   16px;
  font-weight: 400;
  line-height: 20.8px;
  color:       rgba(255,255,255,.95);
  margin:      0;
  display:     -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:    hidden;
}

/* Cuerpo texto de las tarjetas pequeñas */
.blog-feat__body--small {
  position:        absolute;
  bottom:          0;
  left:            0;
  right:           0;
  z-index:         2;
  padding:         20px;
  display:         flex;
  flex-direction:  column;
  gap:             11.5px;
}

.blog-feat__title--small {
  font-family:  var(--font-heading);
  font-size:    20px;
  font-weight:  700;
  line-height:  28px;
  color:        #fff;
  margin:       0;
  display:      -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:     hidden;
}

.blog-feat__meta {
  display:     flex;
  align-items: center;
  gap:         12px;
}

.blog-feat__date,
.blog-feat__readtime {
  font-family: var(--font-heading);
  font-size:   12px;
  font-weight: 600;
  line-height: 20px;
  color:       #e0e4df;
}

/* ---- Filtro por categoría ---- */
.blog-filter {
  padding: 48px 0 40px;
}

.blog-filter .container {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  gap:            10px;
}

.blog-filter__title {
  font-family:    var(--font-heading);
  font-size:      44px;
  font-weight:    500;
  line-height:    48.4px;
  letter-spacing: -.88px;
  color:          #180f09;
  margin:         0;
}

.blog-filter__pills {
  display:         flex;
  flex-wrap:       wrap;
  justify-content: center;
  gap:             10px;
  padding-top:     16px;
}

.blog-filter__pill {
  display:       inline-flex;
  align-items:   center;
  justify-content: center;
  height:        38px;
  padding:       0 16px;
  border-radius: 19px;
  border:        1px solid #d9dbd8;
  background:    #fff;
  color:         #4b4e4a;
  font-family:   var(--font-heading);
  font-size:     14px;
  font-weight:   500;
  line-height:   19.6px;
  cursor:        pointer;
  transition:    background .15s, color .15s, border-color .15s;
  white-space:   nowrap;
}

.blog-filter__pill:hover {
  background:   #fff5f0;
  border-color: #f36402;
  color:        #f36402;
}

.blog-filter__pill--active {
  background:   #f36402;
  border-color: #f36402;
  color:        #fff;
}

.blog-filter__pill--active:hover {
  background:   #e05800;
  border-color: #e05800;
  color:        #fff;
}

/* ---- Grid de artículos ---- */
.blog-grid-section {
  padding: 40px 0 96px;
}

.blog-grid-section .container {
  display:        flex;
  flex-direction: column;
  gap:            32px;
}

.blog-grid-section__header {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
}

.blog-grid-section__heading {
  font-family:  var(--font-ui);
  font-size:    36px;
  font-weight:  800;
  line-height:  40px;
  color:        #180f09;
  margin:       0;
}

.blog-grid-section__count {
  font-family: var(--font-ui);
  font-size:   14px;
  font-weight: 400;
  line-height: 20px;
  color:       #6c6058;
}

.blog-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   30px;
  position:              relative;
  min-height:            200px;
  transition:            opacity .2s;
}

.blog-grid.is-loading {
  opacity: .5;
  pointer-events: none;
}

/* Tarjeta del grid */
.blog-card {
  display:          flex;
  flex-direction:   column;
  background:       #fff;
  border-radius:    22px;
  overflow:         hidden;
  text-decoration:  none;
  box-shadow:       0 1px 4px rgba(0,0,0,.07);
  border:           1px solid #eceeed;
  transition:       box-shadow .2s, transform .15s;
}

.blog-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  transform:  translateY(-2px);
}

.blog-card__img {
  width:    100%;
  height:   176px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.blog-card__img--empty {
  background: linear-gradient(135deg, #f4e8fc 0%, #e8f0ff 100%);
}

.blog-card__body {
  display:        flex;
  flex-direction: column;
  justify-content: space-between;
  flex:           1;
  padding:        20px;
  gap:            16px;
}

.blog-card__text {
  display:        flex;
  flex-direction: column;
  gap:            8px;
}

.blog-card__cat {
  font-family:  var(--font-heading);
  font-size:    14px;
  font-weight:  500;
  line-height:  19.6px;
  color:        #f36402;
}

.blog-card__title {
  font-family:  var(--font-ui);
  font-size:    18px;
  font-weight:  600;
  line-height:  28px;
  color:        #111210;
  margin:       0;
  display:      -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow:     hidden;
}

.blog-card__excerpt {
  font-family:  var(--font-heading);
  font-size:    14px;
  font-weight:  400;
  line-height:  19.6px;
  color:        #4b4e4a;
  margin:       0;
  display:      -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:     hidden;
}

.blog-card__footer {
  display:     flex;
  align-items: center;
  gap:         12px;
}

.blog-card__date {
  font-family: var(--font-ui);
  font-size:   12px;
  font-weight: 400;
  line-height: 16px;
  color:       #656863;
}

.blog-card__readtime {
  font-family: var(--font-ui);
  font-size:   12px;
  font-weight: 400;
  line-height: 16px;
  color:       #656863;
}

/* ---- Paginación del blog ---- */
.blog-pagination {
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-wrap:       wrap;
  gap:             8px;
}

.blog-pagination .page-numbers {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  min-width:       40px;
  height:          40px;
  padding:         0 16px;
  border-radius:   20px;
  border:          1px solid #d9dbd8;
  background:      #fff;
  font-family:     var(--font-heading);
  font-size:       14px;
  font-weight:     500;
  line-height:     19.6px;
  color:           #111210;
  text-decoration: none;
  cursor:          pointer;
  transition:      background .15s, border-color .15s, color .15s;
  white-space:     nowrap;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  padding: 0 16px;
  font-family: var(--font-heading);
}

/* Números */
.blog-pagination a.page-numbers:not(.prev):not(.next) {
  font-family: var(--font-ui);
  font-size:   14px;
  font-weight: 600;
  line-height: 20px;
  min-width:   40px;
  padding:     0;
  color:       #180f09;
}

.blog-pagination .page-numbers:hover {
  background:   #fff5f0;
  border-color: #f36402;
  color:        #f36402;
}

.blog-pagination .page-numbers.current {
  background:   #fd591c;
  border-color: #fd591c;
  color:        #fff;
  font-family:  var(--font-ui);
  font-size:    14px;
  font-weight:  600;
  line-height:  20px;
  padding:      0;
  cursor:       default;
}

.blog-pagination .page-numbers.dots {
  border-color:  transparent;
  background:    transparent;
  pointer-events: none;
  color:         #aaa;
}

/* ---- Estado vacío del grid ---- */
.blog-empty {
  text-align:  center;
  color:       #656863;
  padding:     48px 0;
  font-size:   16px;
  font-family: var(--font-heading);
  grid-column: 1 / -1;
}

/* =====================================================
   BLOG — RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
  .blog-destacadas__grid {
    grid-template-columns: 3fr 2fr;
  }
}

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

  .blog-destacadas__grid {
    grid-template-columns: 1fr;
    grid-template-rows:    auto;
    row-gap:               20px;
  }

  .blog-feat--large {
    grid-row: auto;
    min-height: 340px;
  }

  .blog-feat--small {
    min-height: 220px;
  }
}

@media (max-width: 767px) {
  .blog-hero {
    padding: 64px 0 56px;
  }

  .blog-hero__title {
    font-size:   36px;
    line-height: 1.15;
  }

  .blog-hero__subtitle {
    font-size: 16px;
  }

  .blog-destacadas {
    padding: 48px 0;
  }

  .blog-destacadas__title,
  .blog-filter__title {
    font-size:   32px;
    line-height: 36px;
  }

  .blog-destacadas__grid {
    grid-template-columns: 1fr;
    grid-template-rows:    auto;
    row-gap:               16px;
  }

  .blog-feat--large {
    grid-row:   auto;
    min-height: 260px;
  }

  .blog-feat--small {
    min-height: 200px;
  }

  .blog-filter {
    padding: 32px 0 24px;
  }

  .blog-grid-section {
    padding: 32px 0 64px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-grid-section__heading {
    font-size:   26px;
    line-height: 32px;
  }

  .blog-grid-section__header {
    flex-direction: column;
    align-items:    flex-start;
    gap:            4px;
  }
}
