:root {
  --fsp-bg: #f7f6fb;
  --fsp-surface: #ffffff;
  --fsp-ink: #10172a;
  --fsp-muted: #626b7d;
  --fsp-line: rgba(35, 27, 59, 0.12);
  --fsp-purple: #6c2bd9;
  --fsp-purple-dark: #42129f;
  --fsp-pink: #e31596;
  --fsp-blue: #3165ef;
  --fsp-dark: #0e182b;
  --fsp-shadow: 0 22px 60px rgba(28, 18, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.festara-pillar-template {
  margin: 0;
  background: var(--fsp-bg);
  color: var(--fsp-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.festara-pillar-template img {
  max-width: 100%;
  height: auto;
}

.fsp-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.fsp-skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #111;
}

.fsp-skip-link:focus {
  top: 16px;
}

.fsp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(34, 24, 55, 0.08);
  backdrop-filter: blur(16px);
}

.fsp-header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.fsp-logo {
  display: block;
  width: 154px;
}

.fsp-main-nav,
.fsp-footer-links,
.fsp-social-nav {
  display: flex;
  align-items: center;
}

.fsp-main-nav {
  gap: 25px;
}

.fsp-main-nav a,
.fsp-footer-links a,
.fsp-centered-link a {
  color: inherit;
  text-decoration: none;
}

.fsp-main-nav a {
  font-size: 14px;
  font-weight: 750;
}

.fsp-main-nav a:hover,
.fsp-main-nav a:focus-visible,
.fsp-footer-links a:hover,
.fsp-footer-links a:focus-visible,
.fsp-centered-link a:hover,
.fsp-centered-link a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fsp-nav-login {
  padding-left: 18px;
  border-left: 1px solid var(--fsp-line);
}

.fsp-nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--fsp-dark);
  color: #fff !important;
}

.fsp-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 84% 12%, rgba(224, 30, 156, 0.16), transparent 32%),
    radial-gradient(circle at 8% 10%, rgba(92, 46, 222, 0.18), transparent 34%),
    linear-gradient(135deg, #fbf9ff 0%, #f3efff 52%, #fff2f8 100%);
}

.fsp-hero-grid,
.fsp-calculator-grid,
.fsp-footer-grid {
  display: grid;
  align-items: center;
  gap: 70px;
}

.fsp-hero-grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
}

.fsp-eyebrow,
.fsp-kicker {
  margin: 0 0 14px;
  color: var(--fsp-purple);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fsp-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 5.25vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.fsp-lead {
  max-width: 730px;
  margin: 26px 0 0;
  color: #4e5667;
  font-size: clamp(18px, 2vw, 22px);
}

.fsp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.fsp-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.fsp-button:hover,
.fsp-button:focus-visible {
  transform: translateY(-1px);
}

.fsp-button-primary {
  background: var(--fsp-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 24, 43, 0.18);
}

.fsp-button-secondary {
  border-color: rgba(43, 31, 71, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--fsp-ink);
}

.fsp-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  color: #525b6d;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.fsp-proof-list li {
  position: relative;
  padding-left: 22px;
}

.fsp-proof-list li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  content: "✓";
  color: var(--fsp-purple);
  font-weight: 900;
}

.fsp-hero-visual {
  position: relative;
}

.fsp-summary-card,
.fsp-mini-calculator {
  border: 1px solid rgba(51, 35, 83, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--fsp-shadow);
}

.fsp-summary-card {
  padding: 28px;
  transform: rotate(1deg);
}

.fsp-summary-top,
.fsp-summary-row,
.fsp-margin-box,
.fsp-mini-calculator > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fsp-summary-top {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--fsp-line);
}

.fsp-summary-top span {
  font-size: 19px;
  font-weight: 850;
}

.fsp-summary-top strong {
  color: var(--fsp-purple);
  font-size: 13px;
}

.fsp-summary-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(40, 28, 67, 0.08);
}

.fsp-summary-row span,
.fsp-mini-calculator span {
  color: var(--fsp-muted);
}

.fsp-summary-row strong {
  font-size: 20px;
}

.fsp-margin-box,
.fsp-mini-result {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2eaff, #fff0fa);
}

.fsp-margin-box span,
.fsp-margin-box strong {
  color: var(--fsp-purple-dark);
  font-weight: 850;
}

.fsp-margin-box strong {
  font-size: 34px;
}

.fsp-flow-badge {
  position: relative;
  width: max-content;
  max-width: calc(100% - 24px);
  margin: -2px 0 0 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--fsp-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(10, 18, 34, 0.2);
}

.fsp-clarifier {
  padding: 24px 0 0;
  background: #fff;
}

.fsp-clarifier-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 22px;
  border: 1px solid rgba(108, 43, 217, 0.16);
  border-radius: 16px;
  background: #faf7ff;
  color: #3f3452;
  text-align: center;
}

.fsp-section {
  padding: 96px 0;
  background: #fff;
}

.fsp-section-soft {
  background: var(--fsp-bg);
}

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

.fsp-section-heading {
  max-width: 800px;
  margin: 0 auto 46px;
  text-align: center;
}

.fsp-section-heading h2,
.fsp-calculator-grid h2,
.fsp-final-box h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.fsp-section-heading p:not(.fsp-kicker),
.fsp-calculator-grid > div > p {
  margin: 18px 0 0;
  color: var(--fsp-muted);
  font-size: 18px;
}

.fsp-section-heading-light p:not(.fsp-kicker) {
  color: #b7c1d5;
}

.fsp-card-grid,
.fsp-feature-grid {
  display: grid;
  gap: 20px;
}

.fsp-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fsp-card {
  padding: 30px;
  border: 1px solid var(--fsp-line);
  border-radius: 22px;
  background: var(--fsp-surface);
  box-shadow: 0 14px 40px rgba(32, 21, 59, 0.06);
}

.fsp-card-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 13px;
  background: #f1eaff;
  color: var(--fsp-purple);
  font-size: 13px;
  font-weight: 900;
}

.fsp-card h3,
.fsp-steps h3,
.fsp-feature-grid h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.fsp-card p,
.fsp-steps p,
.fsp-feature-grid p {
  margin: 10px 0 0;
  color: var(--fsp-muted);
}

.fsp-audience-card {
  min-height: 210px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(108, 43, 217, 0.28), rgba(227, 21, 150, 0.24)) border-box;
  border: 1px solid transparent;
}

.fsp-steps {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.fsp-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--fsp-line);
}

.fsp-steps li > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--fsp-purple);
  color: #fff;
  font-weight: 900;
}

.fsp-centered-link {
  margin-top: 34px;
  text-align: center;
}

.fsp-centered-link a {
  color: var(--fsp-purple);
  font-weight: 850;
}

.fsp-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fsp-feature-grid article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.fsp-feature-grid p {
  color: #b8c1d3;
}

.fsp-comparison {
  overflow-x: auto;
  border: 1px solid var(--fsp-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(29, 20, 54, 0.07);
}

.fsp-comparison table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
}

.fsp-comparison th,
.fsp-comparison td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--fsp-line);
  text-align: left;
  vertical-align: top;
}

.fsp-comparison thead th {
  background: #f4f1fa;
  font-size: 14px;
}

.fsp-comparison tbody th {
  width: 23%;
}

.fsp-comparison tbody td:last-child {
  color: var(--fsp-purple-dark);
  font-weight: 750;
}

.fsp-calculator-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(227, 21, 150, 0.13), transparent 30%),
    linear-gradient(135deg, #faf8ff, #fff);
}

.fsp-calculator-grid {
  grid-template-columns: 1fr minmax(340px, 0.72fr);
}

.fsp-calculator-grid .fsp-button {
  margin-top: 28px;
}

.fsp-mini-calculator {
  padding: 26px;
}

.fsp-mini-calculator > div {
  padding: 15px 0;
  border-bottom: 1px solid var(--fsp-line);
}

.fsp-mini-calculator strong {
  font-size: 19px;
}

.fsp-mini-calculator .fsp-mini-result {
  margin-top: 18px;
  border: 0;
}

.fsp-mini-result strong {
  color: var(--fsp-purple);
  font-size: 32px;
}

.fsp-faq-shell {
  max-width: 900px;
}

.fsp-faq-list {
  display: grid;
  gap: 12px;
}

.fsp-faq-list details {
  border: 1px solid var(--fsp-line);
  border-radius: 16px;
  background: #fff;
}

.fsp-faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
  list-style: none;
}

.fsp-faq-list summary::-webkit-details-marker {
  display: none;
}

.fsp-faq-list summary::after {
  float: right;
  content: "+";
  color: var(--fsp-purple);
  font-size: 22px;
}

.fsp-faq-list details[open] summary::after {
  content: "–";
}

.fsp-faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--fsp-muted);
}

.fsp-final-cta {
  padding: 92px 0;
  background: #fff;
}

.fsp-final-box {
  padding: 68px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 8%, rgba(232, 36, 153, 0.26), transparent 32%),
    linear-gradient(135deg, #6b35e6, #265fee);
  color: #fff;
  text-align: center;
  box-shadow: 0 26px 65px rgba(63, 37, 161, 0.25);
}

.fsp-final-box .fsp-kicker {
  color: #e9ddff;
}

.fsp-final-box p:not(.fsp-kicker) {
  margin: 16px 0 0;
  color: #e8ecff;
  font-size: 18px;
}

.fsp-actions-center {
  justify-content: center;
}

.fsp-final-box .fsp-button-primary {
  background: #10182b;
}

.fsp-final-box .fsp-button-secondary {
  background: #fff;
}

.fsp-footer {
  padding: 58px 0;
  background: var(--fsp-dark);
  color: #aeb9cf;
}

.fsp-footer-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.fsp-footer-logo {
  display: block;
  width: 160px;
  margin-bottom: 12px;
}

.fsp-footer p {
  max-width: 560px;
  margin: 0;
}

.fsp-social-nav {
  gap: 12px;
  margin-top: 22px;
}

.fsp-social-nav a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #b9c4d8;
}

.fsp-social-nav svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.fsp-social-nav a:hover,
.fsp-social-nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.fsp-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 12px 24px;
}

.fsp-footer-links a {
  color: #c0cadb;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .fsp-main-nav a:not(.fsp-nav-login):not(.fsp-nav-cta) {
    display: none;
  }

  .fsp-hero-grid,
  .fsp-calculator-grid,
  .fsp-footer-grid {
    grid-template-columns: 1fr;
  }

  .fsp-hero-visual {
    max-width: 620px;
  }

  .fsp-card-grid-three,
  .fsp-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fsp-footer-grid {
    gap: 42px;
  }
}

@media (max-width: 680px) {
  .fsp-shell {
    width: min(100% - 28px, 1160px);
  }

  .fsp-header-inner {
    min-height: 66px;
  }

  .fsp-logo {
    width: 136px;
  }

  .fsp-main-nav {
    gap: 10px;
  }

  .fsp-nav-login {
    display: none;
  }

  .fsp-nav-cta {
    padding: 9px 13px;
    font-size: 13px !important;
  }

  .fsp-hero {
    padding: 68px 0 60px;
  }

  .fsp-hero-grid {
    gap: 46px;
  }

  .fsp-hero h1 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .fsp-actions,
  .fsp-actions .fsp-button {
    width: 100%;
  }

  .fsp-button {
    min-height: 54px;
  }

  .fsp-proof-list {
    display: grid;
    gap: 9px;
  }

  .fsp-summary-card {
    padding: 22px;
    transform: none;
  }

  .fsp-flow-badge {
    width: auto;
    margin: 10px 10px 0;
    border-radius: 15px;
    text-align: center;
  }

  .fsp-clarifier-box {
    display: grid;
    gap: 5px;
    text-align: left;
  }

  .fsp-section,
  .fsp-final-cta {
    padding: 72px 0;
  }

  .fsp-section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .fsp-card-grid-three,
  .fsp-feature-grid {
    grid-template-columns: 1fr;
  }

  .fsp-card {
    padding: 24px;
  }

  .fsp-steps li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .fsp-steps li > span {
    width: 36px;
    height: 36px;
  }

  .fsp-final-box {
    padding: 50px 20px;
  }

  .fsp-footer-links {
    grid-template-columns: 1fr;
  }
}

/* FESTARA_BLOCK_10_45_A4_R2_VISUAL_START
 * Refuerzo visual comercial de la página pilar.
 * Mantiene contenido, SEO, canonical, schema y arquitectura.
 */

body.festara-pillar-template {
  background: #ffffff;
}

.fsp-header {
  box-shadow: 0 10px 30px rgba(30, 20, 62, 0.08);
}

.fsp-header-inner {
  min-height: 82px;
}

.fsp-logo {
  width: 166px;
}

.fsp-nav-cta {
  box-shadow: 0 10px 24px rgba(15, 24, 43, 0.16);
}

.fsp-hero {
  isolation: isolate;
  min-height: 680px;
  padding: 112px 0 104px;
  background:
    radial-gradient(circle at 82% 16%, rgba(244, 66, 183, 0.42), transparent 31%),
    radial-gradient(circle at 12% 4%, rgba(155, 107, 255, 0.5), transparent 35%),
    linear-gradient(135deg, #7146f4 0%, #4c50f1 48%, #1767ed 100%);
  color: #ffffff;
}

.fsp-hero::before,
.fsp-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.fsp-hero::before {
  width: 440px;
  height: 440px;
  right: -180px;
  top: -190px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 0 44px rgba(255, 255, 255, 0.035),
    0 0 0 92px rgba(255, 255, 255, 0.025);
}

.fsp-hero::after {
  width: 360px;
  height: 360px;
  left: -210px;
  bottom: -220px;
  background: rgba(255, 255, 255, 0.07);
}

.fsp-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: 76px;
}

.fsp-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.fsp-hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(50px, 5.7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.057em;
  text-wrap: balance;
  text-shadow: 0 12px 40px rgba(28, 19, 92, 0.18);
}

.fsp-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(19px, 2vw, 23px);
}

.fsp-hero .fsp-button-primary {
  background: #10182b;
  box-shadow: 0 16px 36px rgba(8, 16, 34, 0.26);
}

.fsp-hero .fsp-button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.95);
  color: #121a2f;
  box-shadow: 0 14px 32px rgba(31, 28, 91, 0.17);
}

.fsp-proof-list {
  color: rgba(255, 255, 255, 0.9);
}

.fsp-proof-list li::before {
  color: #ffffff;
}

.fsp-hero-visual {
  padding: 18px;
}

.fsp-summary-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 34px 80px rgba(22, 20, 86, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: rotate(1.8deg);
}

.fsp-summary-top span {
  color: #111a2e;
  font-size: 21px;
}

.fsp-summary-top strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: #f0e9ff;
  color: #6a2ed4;
}

.fsp-summary-row {
  color: #111a2e;
}

.fsp-summary-row strong {
  color: #111a2e;
  font-size: 22px;
}

.fsp-margin-box {
  background: linear-gradient(135deg, #efe5ff, #ffeaf6);
}

.fsp-margin-box strong {
  font-size: 42px;
}

.fsp-flow-badge {
  margin: 4px auto 0;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(14, 24, 43, 0.94);
  box-shadow: 0 18px 38px rgba(8, 16, 34, 0.25);
  text-align: center;
}

.fsp-clarifier {
  padding: 0;
  background: #ffffff;
}

.fsp-clarifier .fsp-shell {
  width: 100%;
  max-width: none;
}

.fsp-clarifier-box {
  min-height: 84px;
  padding: 24px 7vw;
  border: 0;
  border-radius: 0;
  background: #10182b;
  color: #ffffff;
  font-size: 17px;
  box-shadow: 0 16px 45px rgba(15, 24, 43, 0.12);
}

.fsp-clarifier-box span {
  color: #cbd4e5;
}

.fsp-section {
  padding: 112px 0;
}

.fsp-section-heading {
  max-width: 900px;
  margin-bottom: 54px;
}

.fsp-section-heading h2,
.fsp-calculator-grid h2,
.fsp-final-box h2 {
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.04;
  text-wrap: balance;
}

.fsp-section-heading p:not(.fsp-kicker),
.fsp-calculator-grid > div > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 19px;
}

.fsp-kicker {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1eaff;
  color: #6226ca;
}

.fsp-card-grid {
  gap: 26px;
}

.fsp-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 26px;
  box-shadow: 0 22px 56px rgba(34, 22, 67, 0.09);
}

.fsp-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #7441ed, #e51b9d, #2f67ee);
}

.fsp-card-number {
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  border-radius: 15px;
  background: linear-gradient(135deg, #6d36df, #8a51f4);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(108, 43, 217, 0.2);
}

.fsp-card h3,
.fsp-steps h3,
.fsp-feature-grid h3 {
  font-size: 23px;
}

.fsp-card p,
.fsp-steps p,
.fsp-feature-grid p {
  font-size: 16px;
}

.fsp-section-soft {
  background:
    radial-gradient(circle at 92% 8%, rgba(226, 37, 155, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f5fc 0%, #f3f0fa 100%);
}

.fsp-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: none;
  gap: 18px;
}

.fsp-steps li {
  position: relative;
  display: block;
  min-height: 284px;
  padding: 28px 24px;
  border: 1px solid rgba(41, 28, 70, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 48px rgba(32, 21, 59, 0.08);
}

.fsp-steps li::after {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  content: "";
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #6e37df, #e4239f);
}

.fsp-steps li > span {
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #692dd5, #3669ef);
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(90, 45, 200, 0.25);
}

.fsp-centered-link {
  margin-top: 44px;
}

.fsp-centered-link a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 11px 20px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(32, 21, 59, 0.1);
}

.fsp-audience-card {
  min-height: 260px;
  padding-top: 42px;
}

.fsp-audience-card:nth-child(1) {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #7441ed, #e51b9d) border-box;
}

.fsp-audience-card:nth-child(2) {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #2f67ee, #7441ed) border-box;
}

.fsp-audience-card:nth-child(3) {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #e51b9d, #f2863f) border-box;
}

.fsp-section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(103, 55, 224, 0.3), transparent 28%),
    radial-gradient(circle at 8% 94%, rgba(226, 32, 153, 0.18), transparent 30%),
    #0d172a;
}

.fsp-section-dark .fsp-kicker {
  background: rgba(255, 255, 255, 0.09);
  color: #dfd5ff;
}

.fsp-feature-grid {
  gap: 18px;
}

.fsp-feature-grid article {
  min-height: 178px;
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fsp-feature-grid article:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.fsp-comparison {
  border: 0;
  box-shadow: 0 28px 70px rgba(29, 20, 54, 0.12);
}

.fsp-comparison th,
.fsp-comparison td {
  padding: 24px 26px;
}

.fsp-comparison thead th {
  background: #10182b;
  color: #ffffff;
}

.fsp-comparison thead th:last-child {
  background: linear-gradient(135deg, #6a31dc, #3768ef);
}

.fsp-comparison tbody td:last-child {
  background: #f4eeff;
  color: #4c1ea8;
  font-weight: 850;
}

.fsp-comparison tbody tr:last-child th,
.fsp-comparison tbody tr:last-child td {
  border-bottom: 0;
}

.fsp-calculator-section {
  background:
    radial-gradient(circle at 85% 14%, rgba(238, 49, 165, 0.21), transparent 31%),
    linear-gradient(135deg, #f1ecff 0%, #f8f4ff 52%, #fff4fa 100%);
}

.fsp-calculator-grid {
  gap: 86px;
}

.fsp-mini-calculator {
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(53, 28, 94, 0.15);
}

.fsp-mini-result {
  background: linear-gradient(135deg, #6e37df, #3768ef) !important;
}

.fsp-mini-result span,
.fsp-mini-result strong {
  color: #ffffff;
}

.fsp-faq-list {
  gap: 15px;
}

.fsp-faq-list details {
  border: 0;
  border-radius: 19px;
  box-shadow: 0 14px 34px rgba(29, 20, 54, 0.07);
}

.fsp-faq-list summary {
  padding: 23px 25px;
  font-size: 17px;
}

.fsp-final-cta {
  padding: 110px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f3fb 100%);
}

.fsp-final-box {
  position: relative;
  overflow: hidden;
  padding: 84px 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 12%, rgba(244, 79, 185, 0.38), transparent 31%),
    radial-gradient(circle at 8% 88%, rgba(155, 103, 255, 0.38), transparent 34%),
    linear-gradient(135deg, #6e36e5 0%, #4652ef 52%, #1d65ec 100%);
  box-shadow: 0 34px 80px rgba(59, 39, 170, 0.32);
}

.fsp-final-box h2 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.fsp-final-box p:not(.fsp-kicker) {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
}

@media (max-width: 1100px) {
  .fsp-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fsp-steps li {
    min-height: 250px;
  }
}

@media (max-width: 960px) {
  .fsp-hero {
    min-height: auto;
  }

  .fsp-hero-grid {
    gap: 58px;
  }

  .fsp-hero-visual {
    max-width: 660px;
    padding: 0;
  }
}

@media (max-width: 760px) {
  .fsp-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .fsp-header-inner {
    min-height: 70px;
  }

  .fsp-hero {
    padding: 76px 0 68px;
  }

  .fsp-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .fsp-summary-card {
    padding: 24px;
    border-radius: 24px;
    transform: none;
  }

  .fsp-clarifier-box {
    padding: 22px 20px;
  }

  .fsp-section {
    padding: 82px 0;
  }

  .fsp-section-heading {
    margin-bottom: 38px;
  }

  .fsp-section-heading h2,
  .fsp-calculator-grid h2,
  .fsp-final-box h2 {
    font-size: clamp(34px, 10.4vw, 48px);
  }

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

  .fsp-steps li {
    min-height: 0;
    padding: 25px 22px;
  }

  .fsp-steps li > span {
    margin-bottom: 22px;
  }

  .fsp-audience-card {
    min-height: 0;
  }

  .fsp-feature-grid article {
    min-height: 0;
  }

  .fsp-final-cta {
    padding: 78px 0;
  }

  .fsp-final-box {
    padding: 58px 22px;
    border-radius: 28px;
  }
}

/* FESTARA_BLOCK_10_45_A4_R2_VISUAL_END */


/* FESTARA_BLOCK_10_45_A4_R3_R1_VISUAL_START
 * Contraste final, jerarquía de etiquetas, CTA interno y alineación.
 */

.fsp-hero h1 {
  font-weight: 950;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fff8ff 42%,
      #dce8ff 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(
      0 18px 40px rgba(18, 22, 70, 0.22)
    );
}

.fsp-eyebrow {
  min-height: 40px;
  padding: 9px 17px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.20),
      rgba(255, 255, 255, 0.09)
    );
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow:
    0 12px 28px rgba(25, 20, 91, 0.18);
}

.fsp-kicker {
  min-height: 36px;
  padding: 8px 15px;
  border: 0;
  background:
    linear-gradient(
      135deg,
      #6c31dc 0%,
      #3b66ef 100%
    );
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow:
    0 12px 28px rgba(76, 42, 173, 0.20);
}

.fsp-section-dark .fsp-kicker {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(
      135deg,
      rgba(236, 49, 170, 0.95),
      rgba(111, 55, 225, 0.95)
    );
  color: #ffffff !important;
}

.fsp-final-box .fsp-kicker {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.94);
  color: #5722c3 !important;
  box-shadow:
    0 12px 28px rgba(28, 22, 92, 0.18);
}

.fsp-centered-link {
  margin-top: 48px;
  text-align: center;
}

.fsp-centered-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 30px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      #692fd8 0%,
      #3768ef 100%
    );
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  box-shadow:
    0 22px 52px rgba(72, 38, 168, 0.28);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.fsp-centered-link a:hover,
.fsp-centered-link a:focus-visible {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow:
    0 26px 60px rgba(72, 38, 168, 0.34);
}

.fsp-mini-calculator {
  display: grid;
  gap: 0;
}

.fsp-mini-calculator > div {
  min-height: 72px;
  padding: 18px 4px;
  align-items: center;
}

.fsp-mini-calculator > div span,
.fsp-mini-calculator > div strong {
  display: block;
  margin: 0;
  line-height: 1.2;
}

.fsp-mini-calculator > div strong {
  text-align: right;
}

.fsp-mini-calculator > div.fsp-mini-result {
  min-height: 92px;
  margin-top: 18px;
  padding: 20px 22px !important;
  border: 0;
  align-items: center;
}

.fsp-mini-calculator > div.fsp-mini-result span,
.fsp-mini-calculator > div.fsp-mini-result strong {
  color: #ffffff;
}

@media (max-width: 680px) {
  .fsp-hero h1 {
    font-weight: 950;
  }

  .fsp-eyebrow {
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.10em;
  }

  .fsp-kicker {
    padding: 8px 13px;
    font-size: 10px;
    letter-spacing: 0.10em;
  }

  .fsp-centered-link a {
    width: 100%;
    min-height: 58px;
    padding: 15px 18px;
    font-size: 17px;
  }

  .fsp-mini-calculator > div {
    min-height: 68px;
    padding: 16px 4px;
  }

  .fsp-mini-calculator > div.fsp-mini-result {
    min-height: 86px;
    padding: 18px 20px !important;
  }
}

/* FESTARA_BLOCK_10_45_A4_R3_R1_VISUAL_END */


/* FESTARA_BLOCK_10_45_A4_R4_HERO_START
 * Degradado exclusivo para "cotizar eventos" y corrección de clipping.
 */

.fsp-hero-copy {
  min-width: 0;
  overflow: visible;
  padding-bottom: 14px;
}

.fsp-hero h1 {
  max-width: 880px;
  overflow: visible;
  padding: 0.07em 0 0.16em;
  background: none;
  color: #ffffff;
  -webkit-text-fill-color: currentColor;
  font-weight: 950;
  line-height: 1.07;
  letter-spacing: -0.052em;
  text-shadow:
    0 16px 42px rgba(18, 22, 70, 0.22);
  filter: none;
}

.fsp-hero-gradient-text {
  display: inline;
  background:
    linear-gradient(
      90deg,
      #f2a7ff 0%,
      #ff63b7 46%,
      #9bb8ff 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 950;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media (min-width: 961px) {
  .fsp-hero-grid {
    grid-template-columns:
      minmax(0, 1.26fr)
      minmax(350px, 0.74fr);
    gap: 52px;
  }

  .fsp-hero-gradient-text {
    white-space: nowrap;
  }
}

@media (min-width: 961px) and (max-width: 1120px) {
  .fsp-hero-grid {
    grid-template-columns:
      minmax(0, 1.34fr)
      minmax(330px, 0.66fr);
    gap: 38px;
  }

  .fsp-hero h1 {
    max-width: 720px;
    font-size: clamp(48px, 5.8vw, 67px);
    line-height: 1.08;
  }

  .fsp-summary-card {
    padding: 27px;
  }
}

@media (max-width: 680px) {
  .fsp-hero-copy {
    padding-bottom: 8px;
  }

  .fsp-hero h1 {
    padding-bottom: 0.14em;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.08;
  }

  .fsp-hero-gradient-text {
    white-space: normal;
  }
}

/* FESTARA_BLOCK_10_45_A4_R4_HERO_END */


/* FESTARA_BLOCK_10_45_A4_R5_R1_MOBILE_START
 * Remediación estructural móvil y protección del glifo final del degradado.
 */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.festara-pillar-template {
  overflow-x: hidden;
}

.fsp-hero-gradient-text {
  display: inline-block;
  position: relative;
  overflow: visible;
  padding-right: 0.11em;
  padding-bottom: 0.035em;
  margin-right: 0.08em;
  line-height: 1.02;
  vertical-align: baseline;
  letter-spacing: -0.045em;
}

@media (min-width: 961px) {
  .fsp-hero-gradient-text {
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .fsp-shell {
    width: calc(100% - 32px);
    max-width: none;
  }

  .fsp-header {
    position: sticky;
    top: 0;
  }

  .fsp-header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .fsp-logo {
    width: 150px;
  }

  .fsp-main-nav {
    flex: 0 0 auto;
    gap: 0;
  }

  .fsp-main-nav a:not(.fsp-nav-cta) {
    display: none !important;
  }

  .fsp-nav-cta {
    min-height: 46px;
    padding: 11px 17px;
    font-size: 14px !important;
    white-space: nowrap;
  }

  .fsp-hero {
    min-height: 0;
    padding: 64px 0 68px;
  }

  .fsp-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    gap: 42px !important;
  }

  .fsp-hero-copy,
  .fsp-hero-visual {
    width: 100%;
    min-width: 0;
    max-width: none;
    overflow: visible;
  }

  .fsp-eyebrow {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    min-height: 36px;
    padding: 8px 13px;
    white-space: normal;
    line-height: 1.25;
    text-align: left;
  }

  .fsp-hero h1 {
    width: 100%;
    max-width: none;
    margin-top: 20px;
    padding: 0.05em 0 0.16em;
    overflow: visible;
    font-size: clamp(42px, 11.2vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.047em;
    text-wrap: balance;
  }

  .fsp-hero-gradient-text {
    display: inline;
    padding-right: 0.06em;
    padding-bottom: 0;
    margin-right: 0.03em;
    white-space: normal;
    line-height: inherit;
    letter-spacing: inherit;
  }

  .fsp-lead {
    width: 100%;
    max-width: none;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.55;
  }

  .fsp-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
    margin-top: 28px;
  }

  .fsp-actions .fsp-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 999px;
    white-space: normal;
    text-align: center;
  }

  .fsp-proof-list {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
    margin-top: 24px;
  }

  .fsp-proof-list li {
    width: 100%;
    padding-left: 24px;
  }

  .fsp-hero-visual {
    margin-top: 4px;
    padding: 0;
  }

  .fsp-summary-card {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 23px;
    border-radius: 24px;
    transform: none;
  }

  .fsp-summary-top,
  .fsp-summary-row,
  .fsp-margin-box {
    min-width: 0;
  }

  .fsp-summary-top {
    align-items: flex-start;
  }

  .fsp-summary-top span {
    max-width: 62%;
    font-size: 19px;
    line-height: 1.2;
  }

  .fsp-summary-top strong {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .fsp-summary-row {
    gap: 12px;
  }

  .fsp-summary-row span,
  .fsp-summary-row strong {
    min-width: 0;
  }

  .fsp-summary-row strong {
    font-size: 18px;
    white-space: nowrap;
  }

  .fsp-margin-box {
    padding: 17px 18px;
  }

  .fsp-margin-box strong {
    font-size: 34px;
  }

  .fsp-flow-badge {
    width: 100%;
    max-width: none;
    margin: 12px 0 0;
    padding: 12px 15px;
    border-radius: 16px;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
  }

  .fsp-clarifier-box {
    display: grid;
    gap: 8px;
    min-height: 0;
    padding: 24px 20px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }

  .fsp-section,
  .fsp-final-cta {
    padding: 72px 0;
  }

  .fsp-section-heading {
    max-width: none;
    margin: 0 0 34px;
    text-align: left;
  }

  .fsp-section-heading h2,
  .fsp-calculator-grid h2,
  .fsp-final-box h2 {
    font-size: clamp(34px, 9.5vw, 43px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .fsp-section-heading p:not(.fsp-kicker),
  .fsp-calculator-grid > div > p {
    max-width: none;
    margin: 17px 0 0;
    font-size: 17px;
    line-height: 1.6;
  }

  .fsp-card-grid-three,
  .fsp-feature-grid,
  .fsp-steps,
  .fsp-calculator-grid,
  .fsp-footer-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .fsp-card,
  .fsp-audience-card,
  .fsp-feature-grid article,
  .fsp-steps li {
    width: 100%;
    min-width: 0;
    min-height: 0;
  }

  .fsp-steps {
    gap: 16px;
  }

  .fsp-centered-link a {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    white-space: normal;
    text-align: center;
  }

  .fsp-comparison {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .fsp-comparison table,
  .fsp-comparison tbody,
  .fsp-comparison tr,
  .fsp-comparison th,
  .fsp-comparison td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .fsp-comparison table {
    border-collapse: separate;
  }

  .fsp-comparison thead {
    display: none;
  }

  .fsp-comparison tbody {
    display: grid;
    gap: 16px;
  }

  .fsp-comparison tr {
    overflow: hidden;
    border: 1px solid rgba(35, 27, 59, 0.12);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(29, 20, 54, 0.08);
  }

  .fsp-comparison tbody th,
  .fsp-comparison tbody td {
    padding: 17px 19px;
    border: 0;
    border-bottom: 1px solid rgba(35, 27, 59, 0.10);
  }

  .fsp-comparison tbody th {
    background: #10182b;
    color: #ffffff;
    font-size: 18px;
  }

  .fsp-comparison tbody td {
    position: relative;
    padding-top: 42px;
    font-size: 16px;
    line-height: 1.5;
  }

  .fsp-comparison tbody td::before {
    position: absolute;
    top: 14px;
    left: 19px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
  }

  .fsp-comparison tbody td:nth-of-type(1)::before {
    content: "Planillas";
    color: #697286;
  }

  .fsp-comparison tbody td:nth-of-type(2)::before {
    content: "Festara";
    color: #5b27c8;
  }

  .fsp-comparison tbody td:last-child {
    border-bottom: 0;
    background: #f3ecff;
  }

  .fsp-mini-calculator {
    width: 100%;
    max-width: none;
    padding: 22px;
  }

  .fsp-mini-calculator > div {
    min-height: 64px;
    gap: 12px;
    padding: 14px 0;
  }

  .fsp-mini-calculator > div strong {
    white-space: nowrap;
  }

  .fsp-final-box {
    padding: 52px 20px;
    border-radius: 26px;
  }

  .fsp-footer {
    padding: 50px 0;
  }

  .fsp-footer-grid {
    gap: 34px;
  }

  .fsp-footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
  }

  .fsp-footer-links a {
    min-width: 0;
    font-size: 13px;
    line-height: 1.4;
  }
}

/* FESTARA_BLOCK_10_45_A4_R5_R1_MOBILE_END */
