/* =====================================================
   1. VARIABLES
===================================================== */

:root {
  --primary: #29265b;
  --primary-light: #3b377a;
  --primary-dark: #1c193f;
  --secondary: #6373b4;

  --gold: #c39a4b;
  --gold-light: #e1bf75;

  --white: #fff;
  --ink: #17152e;
  --text: #35334a;
  --muted: #6d6b7c;

  --soft: #f6f7fb;
  --surface: #fff;
  --surface-alt: #f0f1f7;
  --line: #e5e6ee;

  --dark-line: rgba(255, 255, 255, 0.16);
  --success: #16865c;

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;

  --shadow-sm: 0 14px 34px rgba(22, 20, 55, 0.08);
  --shadow-md: 0 24px 70px rgba(22, 20, 55, 0.13);
  --shadow-lg: 0 35px 100px rgba(22, 20, 55, 0.18);

  --container: 1320px;
  --section-space: clamp(88px, 10vw, 150px);
  --transition: 0.25s ease;
}


/* =====================================================
   2. RESET Y ESTILOS GENERALES
===================================================== */

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;

  color: var(--ink);
  background: var(--white);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 16px;
  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;

  color: var(--ink);

  font-family: Manrope, Inter, sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 5.1rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

h4 {
  font-size: 1.15rem;
  line-height: 1.35;
}

p {
  margin: 0;

  color: var(--text);

  font-size: 1rem;
  line-height: 1.75;
}

main {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  padding-block: var(--section-space);
}

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


/* =====================================================
   3. ELEMENTOS GENERALES
===================================================== */

.eyebrow,
.mobile-menu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 22px;

  color: var(--primary);

  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";

  width: 28px;
  height: 1px;

  background: currentColor;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--primary);
  font-weight: 700;

  transition:
    gap var(--transition),
    color var(--transition);
}

.text-link:hover {
  gap: 15px;
  color: var(--primary-light);
}


/* =====================================================
   4. FONDO Y PROGRESO DE SCROLL
===================================================== */

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2000;

  height: 3px;

  background: transparent;
}

.scroll-progress span {
  display: block;

  width: 0;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--gold)
    );
}

.site-background {
  position: fixed;
  inset: 0;
  z-index: -2;

  overflow: hidden;

  background: #fff;

  pointer-events: none;
}

.site-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(41, 38, 91, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(41, 38, 91, 0.035) 1px,
      transparent 1px
    );

  background-size: 64px 64px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 48%
    );
}

.ambient {
  position: absolute;

  border-radius: 50%;

  filter: blur(90px);
  opacity: 0.2;
}

.ambient-one {
  top: 4%;
  right: -140px;

  width: 420px;
  height: 420px;

  background: var(--secondary);
}

.ambient-two {
  top: 38%;
  left: -150px;

  width: 340px;
  height: 340px;

  background: var(--gold-light);
}

.ambient-three {
  right: 8%;
  bottom: 2%;

  width: 420px;
  height: 420px;

  background: var(--primary-light);
  opacity: 0.1;
}


/* =====================================================
   5. NAVEGACIÓN
===================================================== */

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;

  padding: 18px 0;

  background: transparent;
  border-bottom: 1px solid transparent;

  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

.navbar.is-scrolled {
  padding: 12px 0;

  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow:
    0 8px 40px rgba(17, 24, 39, 0.08);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 48px;
  max-width: 190px;

  object-fit: contain;
}

.navbar-nav {
  gap: 6px;
}

.nav-link {
  padding: 10px 14px !important;

  color: var(--ink);

  border-radius: 12px;

  font-size: 0.9rem;
  font-weight: 600;

  transition:
    color var(--transition),
    background var(--transition);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
  background: rgba(41, 38, 91, 0.06);
}

.navbar-actions {
  align-items: center;
  gap: 10px;
}


/* =====================================================
   6. MEGA MENÚ
===================================================== */

.dropdown-menu {
  border: 0;
}

.mega-menu {
  left: 50% !important;

  width: min(760px, 90vw);
  margin-top: 18px !important;
  padding: 18px;

  border: 1px solid var(--line);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);

  transform: translateX(-50%);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mega-menu-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;

  padding: 14px;

  border-radius: 16px;

  transition:
    background var(--transition),
    transform var(--transition);
}

.mega-menu-item:hover {
  background: var(--soft);
  transform: translateY(-1px);
}

.mega-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--primary);

  border-radius: 14px;

  font-size: 1.2rem;
}

.mega-menu-item strong,
.mega-menu-item small {
  display: block;
}

.mega-menu-item strong {
  font-size: 0.92rem;
}

.mega-menu-item small {
  margin-top: 4px;

  color: var(--muted);

  font-size: 0.78rem;
  line-height: 1.45;
}


/* =====================================================
   7. BOTONES
===================================================== */

.btn {
  min-height: 46px;
  padding: 0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 14px;

  font-size: 0.9rem;
  font-weight: 700;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary-bctm {
  color: #fff;
  background: var(--primary);

  box-shadow:
    0 16px 30px rgba(41, 38, 91, 0.18);
}

.btn-primary-bctm:hover {
  color: #fff;
  background: var(--primary-light);

  box-shadow:
    0 20px 40px rgba(41, 38, 91, 0.25);
}

.btn-outline-bctm {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.75);

  border: 1px solid rgba(41, 38, 91, 0.25);
}

.btn-outline-bctm:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--primary);
  background: var(--soft);
}

.btn-white-bctm {
  color: var(--primary);
  background: #fff;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.16);
}

.btn-outline-light-bctm {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-lg-bctm {
  min-height: 58px;
  padding-inline: 26px;

  border-radius: 18px;
}


/* =====================================================
   8. BOTÓN HAMBURGUESA
===================================================== */

.custom-toggler {
  position: relative;

  width: 44px;
  height: 44px;
  min-width: 44px;

  margin-left: auto;
  padding: 0 !important;

  display: inline-flex;
  align-items: center;
  justify-content: flex-end;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;

  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
}

.custom-toggler > span {
  position: relative;

  display: block;

  width: 26px;
  height: 2px;

  margin: 0;

  border-radius: 999px;

  background: var(--primary);

  transition:
    width 0.22s ease,
    transform 0.22s ease,
    opacity 0.18s ease;
}

.custom-toggler > span::before,
.custom-toggler > span::after {
  content: "";

  position: absolute;
  right: 0;

  display: block;

  width: 34px;
  height: 2px;

  border-radius: 999px;

  background: var(--primary);

  transition:
    width 0.22s ease,
    transform 0.22s ease,
    opacity 0.18s ease;
}

.custom-toggler > span::before {
  top: -8px;
}

.custom-toggler > span::after {
  top: 8px;
}

.custom-toggler:hover > span,
.custom-toggler:focus-visible > span {
  width: 34px;
}

.custom-toggler:hover,
.custom-toggler:focus,
.custom-toggler:focus-visible,
.custom-toggler:active {
  border: 0 !important;

  background: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
}


/* =====================================================
   9. MENÚ MÓVIL
===================================================== */

.mobile-menu {
  width: min(100%, 440px) !important;

  border: 0 !important;
  border-left: 1px solid rgba(41, 38, 91, 0.07) !important;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(248, 249, 253, 0.99) 100%
    );

  box-shadow:
    -24px 0 70px rgba(22, 20, 55, 0.14);
}

.mobile-menu-header {
  width: 100%;
  min-height: 76px;
  padding: 15px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid rgba(41, 38, 91, 0.07);

  background: rgba(255, 255, 255, 0.94);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-menu-header .navbar-brand {
  min-width: 0;
  margin: 0;
  padding: 0;

  flex: 0 1 auto;
}

.mobile-menu-header .brand-logo {
  width: auto;
  height: 42px;
  max-width: 160px;

  object-fit: contain;
}

.btn-close-menu {
  width: 40px;
  height: 40px;
  min-width: 40px;

  margin-left: auto;
  padding: 0;

  flex: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);
  background: rgba(246, 247, 251, 0.94);

  border: 1px solid rgba(41, 38, 91, 0.08);
  border-radius: 12px;

  box-shadow:
    0 7px 18px rgba(22, 20, 55, 0.05);

  font-size: 21px;
  line-height: 1;

  cursor: pointer;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;

  -webkit-tap-highlight-color: transparent;
}

.btn-close-menu i {
  display: block;
  line-height: 1;

  transition: transform 0.22s ease;
}

.btn-close-menu:hover {
  color: var(--primary-light);
  background: #fff;

  border-color: rgba(41, 38, 91, 0.16);

  box-shadow:
    0 10px 24px rgba(22, 20, 55, 0.08);

  transform: translateY(-1px);
}

.btn-close-menu:hover i {
  transform: rotate(90deg);
}

.btn-close-menu:focus,
.btn-close-menu:focus-visible,
.btn-close-menu:active {
  outline: 0;

  box-shadow:
    0 0 0 4px rgba(41, 38, 91, 0.09),
    0 8px 20px rgba(22, 20, 55, 0.07);
}

.mobile-menu .offcanvas-body {
  min-height: 0;
  padding: 26px 22px 30px;

  display: flex;
  flex-direction: column;

  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu-eyebrow {
  margin-bottom: 22px;

  color: #858397;

  font-size: 0.66rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-nav {
  display: grid;
  gap: 0;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(41, 38, 91, 0.065);
}

.mobile-nav a {
  min-height: 54px;
  padding: 11px 0;

  display: flex;
  align-items: center;

  color: var(--ink);

  font-family: Manrope, Inter, sans-serif;
  font-size: 1.65rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.045em;

  transition:
    color 0.18s ease,
    padding-left 0.18s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  padding-left: 5px;
  color: var(--primary);
}

.mobile-solutions {
  margin-top: 24px;
  padding-top: 21px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;

  border-top: 1px solid rgba(41, 38, 91, 0.07);
}

.mobile-solutions a {
  color: var(--muted);

  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 600;

  transition: color 0.18s ease;
}

.mobile-solutions a:hover,
.mobile-solutions a:focus-visible {
  color: var(--primary);
}

.mobile-menu-actions {
  margin-top: auto;
  padding-top: 30px;

  display: grid;
  gap: 10px;
}

.mobile-menu-actions .btn {
  width: 100%;
  min-height: 50px;

  border-radius: 13px;
}

.offcanvas-backdrop {
  background: #131127;
}

.offcanvas-backdrop.show {
  opacity: 0.34;

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}


/* =====================================================
   10. HERO
===================================================== */

.hero-section {
  position: relative;

  min-height: 100svh;
  padding-top: 165px;
  padding-bottom: 80px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #fff 0%,
      #f8f8fc 100%
    );
}

.hero-vector {
  position: absolute;
  inset: 0 0 0 35%;

  opacity: 0.98;
  pointer-events: none;
}

.hero-vector-svg {
  width: 100%;
  height: 100%;
}

.hero-vector-fade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #fff 0%,
      rgba(255, 255, 255, 0.9) 14%,
      rgba(255, 255, 255, 0.15) 54%,
      transparent 100%
    );
}

.vector-ribbon {
  transform-origin: center;

  animation:
    floatRibbon 9s ease-in-out infinite alternate;
}

.vector-ribbon-gold-top {
  animation-delay: -2s;
}

.vector-ribbon-main {
  animation-delay: -4s;
}

.vector-ribbon-gold-bottom {
  animation-delay: -1s;
}

.vector-ribbon-blue-bottom {
  animation-delay: -5s;
}

@keyframes floatRibbon {
  to {
    transform:
      translate3d(0, -12px, 0)
      scale(1.015);
  }
}

.hero-kicker {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 36px;

  color: var(--muted);

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;

  flex: none;

  border-radius: 50%;

  background: var(--gold);

  box-shadow:
    0 0 0 5px rgba(195, 154, 75, 0.13);
}

.hero-kicker a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: var(--primary);

  letter-spacing: 0;
  text-transform: none;
}

.hero-title {
  position: relative;
  z-index: 2;

  max-width: 12ch;
}

.hero-title span {
  color: var(--primary);
}

.hero-bottom {
  position: relative;
  z-index: 2;

  margin-top: 24px;
}

.hero-copy-column {
  align-self: flex-start;
}

.hero-text {
  max-width: 700px;

  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero-actions {
  margin-top: 30px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel-column {
  min-height: 360px;
  margin-top: -150px;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-mini-panel {
  width: 100%;
  max-width: 490px;
  margin: 0;
  padding: 22px;

  border: 1px solid rgba(41, 38, 91, 0.12);
  border-radius: 26px;

  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.hero-mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  color: var(--muted);

  font-size: 0.78rem;
  font-weight: 700;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 7px;

  color: var(--success);

  white-space: nowrap;
}

.live-status i {
  width: 7px;
  height: 7px;

  flex: none;

  border-radius: 50%;

  background: currentColor;
}

.hero-mini-grid {
  margin: 22px 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-mini-metric {
  min-width: 0;
  padding: 14px;

  border-radius: 16px;

  background: var(--soft);
}

.hero-mini-metric span,
.hero-mini-metric strong {
  display: block;
}

.hero-mini-metric span {
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-mini-metric strong {
  margin-top: 3px;

  font-family: Manrope, Inter, sans-serif;
  font-size: 1.28rem;
}

.hero-mini-chart {
  height: 125px;
}

.hero-mini-chart svg {
  width: 100%;
  height: 100%;
}


/* =====================================================
   11. FRANJA DE SERVICIOS
===================================================== */

/*==================================================
  TRUST SECTION
==================================================*/

.trust-section {
    padding: 10px 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-intro {
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    font-weight: 600;
    line-height: 1.5;
}


/* =====================================================
   12. DESAFÍO EMPRESARIAL
===================================================== */

.content-section {
}

.sticky-section-label {
  position: sticky;
  top: 130px;

  max-width: 250px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.section-index {
  color: #b7b5c1;

  font-family: Manrope, sans-serif;
  font-size: 0.78rem;
}

.large-statement h2 span,
.solutions-heading h2 span,
.method-heading h2 span,
.difference-heading h2 span {
  color: var(--muted);
}

.challenge-content {
  margin-top: 60px;
}

.challenge-list {
  border-top: 1px solid var(--line);
}

.challenge-item {
  padding: 18px 0;

  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;

  border-bottom: 1px solid var(--line);
}

.challenge-item span {
  color: var(--primary);

  font-size: 0.72rem;
  font-weight: 800;
}

.challenge-item p {
  font-size: 0.94rem;
}


/* =====================================================
   13. SOLUCIONES
===================================================== */

.solutions-section {
}

.solutions-heading,
.packages-heading,
.process-heading,
.difference-heading {
  max-width: 1050px;
  margin-bottom: 60px;
}

.solutions-heading h2 span {
  display: block;

  margin-top: 18px;

  font-family: Inter, sans-serif;
  font-size: 0.33em;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

.solution-card {
  min-width: 0;
  padding: 28px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: var(--radius-lg);

  background: #fff;
  box-shadow: var(--shadow-sm);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.solution-card-wide {
  grid-column: 1 / -1;
}

.solution-card-dark {
  color: #fff;

  background:
    linear-gradient(
      145deg,
      var(--primary-light),
      var(--primary-dark)
    );

  border-color: transparent;
}

.solution-card-dark h3,
.solution-card-dark p,
.solution-card-dark li {
  color: #fff;
}

.solution-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.solution-card-header > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.card-number {
  color: var(--primary);

  font-size: 0.72rem;
  font-weight: 800;
}

.solution-card-dark .card-number {
  color: var(--gold-light);
}

.card-expand {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;
  flex: none;

  border: 1px solid var(--line);
  border-radius: 50%;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.card-expand:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.solution-card-dark .card-expand {
  border-color: rgba(255, 255, 255, 0.2);
}

.solution-visual {
  position: relative;

  min-height: 310px;
  margin: 30px 0;
  padding: 26px;

  overflow: hidden;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #f5f6fa,
      #ebeef7
    );
}

.solution-card-footer {
  margin-top: auto;
}

.solution-card-footer p {
  max-width: 720px;
}

.solution-card-footer ul {
  margin: 24px 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.solution-card-footer li {
  display: flex;
  gap: 8px;

  color: var(--text);

  font-size: 0.88rem;
}

.solution-card-footer li i {
  color: var(--success);
}


/* =====================================================
   14. MAQUETA DE NAVEGADOR
===================================================== */

.browser-window,
.ads-dashboard,
.software-dashboard,
.contact-window {
  overflow: hidden;

  border: 1px solid rgba(41, 38, 91, 0.12);
  border-radius: 20px;

  background: #fff;
  box-shadow: var(--shadow-md);
}

.browser-window {
  width: min(680px, 90%);
  margin: auto;
}

.browser-toolbar {
  height: 45px;
  padding: 0 14px;

  display: flex;
  align-items: center;
  gap: 20px;

  border-bottom: 1px solid var(--line);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #d1d2da;
}

.browser-address {
  min-width: 0;
  padding: 6px 12px;

  flex: 1;

  color: var(--muted);
  background: var(--soft);

  border-radius: 8px;

  font-size: 0.68rem;
}

.browser-content {
  min-height: 230px;

  display: grid;
  grid-template-columns: 72px 1fr;
}

.browser-sidebar {
  padding: 18px 12px;

  background: var(--primary);
}

.browser-logo {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;

  display: grid;
  place-items: center;

  color: var(--primary);
  background: #fff;

  border-radius: 10px;

  font-weight: 800;
}

.sidebar-line {
  height: 6px;
  margin: 12px 0;

  border-radius: 8px;

  background: rgba(255, 255, 255, 0.2);
}

.sidebar-line.active {
  background: var(--gold-light);
}

.sidebar-line.short {
  width: 60%;
}

.browser-page {
  min-width: 0;
  padding: 32px;
}

.mock-label {
  color: var(--gold);

  font-size: 0.6rem;
  font-weight: 800;
}

.mock-title {
  width: 65%;
  margin: 12px 0 20px;

  font-family: Manrope, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.mock-text {
  width: 75%;
  height: 8px;
  margin: 8px 0;

  border-radius: 8px;

  background: #dedfe7;
}

.mock-text.short {
  width: 48%;
}

.mock-buttons {
  margin: 22px 0;

  display: flex;
  gap: 8px;
}

.mock-buttons span {
  width: 80px;
  height: 26px;

  border-radius: 8px;

  background: var(--primary);
}

.mock-buttons span + span {
  background: #e7e8ef;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-cards span {
  height: 62px;

  border-radius: 12px;

  background: var(--soft);
}

.website-score {
  position: absolute;
  right: 22px;
  bottom: 22px;

  display: flex;
  gap: 8px;
}

.website-score div {
  padding: 10px 14px;

  border-radius: 12px;

  background: #fff;
  box-shadow: var(--shadow-sm);
}

.website-score span,
.website-score strong {
  display: block;
}

.website-score span {
  color: var(--muted);
  font-size: 0.62rem;
}

.website-score strong {
  font-size: 0.95rem;
}


/* =====================================================
   15. MAQUETAS COMPLEMENTARIAS
===================================================== */

.product-card-mockup {
  width: 220px;
  padding: 16px;

  border-radius: 20px;

  background: #fff;
  box-shadow: var(--shadow-md);

  transform: rotate(-3deg);
}

.product-image {
  height: 145px;

  display: grid;
  place-items: center;

  color: var(--primary);

  border-radius: 15px;

  background:
    linear-gradient(
      145deg,
      #e9ebf6,
      #fff
    );

  font-size: 3rem;
}

.product-category {
  display: block;

  margin-top: 12px;

  color: var(--muted);

  font-size: 0.65rem;
}

.product-price {
  margin-top: 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price button {
  width: 34px;
  height: 34px;

  color: #fff;
  background: var(--primary);

  border-radius: 50%;
}

.checkout-card {
  position: absolute;
  right: 20px;
  bottom: 22px;

  width: 220px;
  padding: 18px;

  border-radius: 18px;

  background: #fff;
  box-shadow: var(--shadow-md);
}

.checkout-head {
  display: flex;
  justify-content: space-between;

  font-size: 0.72rem;
}

.checkout-line {
  height: 7px;
  margin: 15px 0;

  border-radius: 8px;

  background: #e5e6ed;
}

.checkout-line.short {
  width: 60%;
}

.checkout-button {
  padding: 9px;

  color: #fff;
  background: var(--primary);

  border-radius: 9px;

  font-size: 0.68rem;
  text-align: center;
}

.ai-visual {
  min-height: 360px;

  background:
    radial-gradient(
      circle at center,
      rgba(99, 115, 180, 0.28),
      transparent 55%
    );
}

.ai-orbit {
  position: absolute;
  inset: 50%;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.orbit-a {
  width: 130px;
  height: 130px;
}

.orbit-b {
  width: 230px;
  height: 230px;
}

.orbit-c {
  width: 330px;
  height: 330px;
}

.ai-core {
  position: absolute;
  inset: 50%;

  width: 84px;
  height: 84px;

  display: grid;
  place-items: center;

  color: var(--primary);
  background: #fff;

  border-radius: 50%;

  box-shadow:
    0 0 60px rgba(255, 255, 255, 0.25);

  font-size: 2rem;

  transform: translate(-50%, -50%);
}

.automation-chip {
  position: absolute;

  padding: 8px 12px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99px;

  background: rgba(255, 255, 255, 0.1);

  font-size: 0.72rem;
}

.chip-one {
  top: 16%;
  left: 14%;
}

.chip-two {
  top: 18%;
  right: 13%;
}

.chip-three {
  bottom: 17%;
  left: 18%;
}

.chip-four {
  right: 18%;
  bottom: 13%;
}

.ads-dashboard {
  padding: 22px;
}

.ads-header,
.software-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ads-header span,
.software-top span {
  display: block;

  color: var(--muted);

  font-size: 0.68rem;
}

.ads-header strong,
.software-top strong {
  display: block;
  font-size: 1rem;
}

.status-pill {
  padding: 7px 10px;

  color: var(--success) !important;
  background: #e8f7f1;

  border-radius: 99px;
}

.ads-metrics,
.software-cards {
  margin: 22px 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ads-metrics div,
.software-cards div {
  padding: 14px;

  border-radius: 14px;

  background: var(--soft);
}

.ads-metrics span,
.software-cards span {
  display: block;

  color: var(--muted);

  font-size: 0.65rem;
}

.ads-metrics strong,
.software-cards strong {
  font-size: 1.1rem;
}

.ads-bars {
  height: 130px;

  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.ads-bars i {
  height: var(--bar);

  flex: 1;

  border-radius: 8px 8px 3px 3px;

  background:
    linear-gradient(
      180deg,
      var(--secondary),
      var(--primary)
    );
}

.software-visual {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
}

.software-sidebar {
  padding: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  color: #fff;
  background: var(--primary);

  border-radius: 17px;
}

.software-brand {
  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  color: var(--primary);
  background: #fff;

  border-radius: 10px;

  font-weight: 800;
}

.software-dashboard {
  padding: 20px;
}

.software-top button {
  width: 34px;
  height: 34px;

  border-radius: 10px;
}

.software-table {
  display: grid;
}

.software-table div {
  padding: 12px 0;

  display: flex;
  justify-content: space-between;

  border-top: 1px solid var(--line);

  font-size: 0.72rem;
}

.software-table em {
  color: var(--success);
  font-style: normal;
}


/* =====================================================
   16. REGISTRO DE MARCA
===================================================== */

.trademark-layout {
  margin-top: 30px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.trademark-visual {
  min-height: 350px;

  display: grid;
  place-items: center;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #f3f0e7,
      #fff
    );
}

.certificate-document {
  width: min(330px, 90%);
  padding: 34px;

  border: 8px double #dfc98f;
  border-radius: 10px;

  background: #fff;
  box-shadow: var(--shadow-md);

  text-align: center;
}

.certificate-seal {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;

  display: grid;
  place-items: center;

  color: #fff;
  background: var(--gold);

  border-radius: 50%;

  font-size: 2rem;
}

.certificate-document > span {
  color: var(--gold);

  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.certificate-document > strong {
  display: block;

  margin: 10px 0 22px;

  font-family: Manrope, sans-serif;
  font-size: 1.55rem;
}

.certificate-lines i {
  display: block;

  height: 6px;
  margin: 8px auto;

  border-radius: 10px;

  background: #ece8dc;
}

.certificate-lines i:nth-child(2) {
  width: 75%;
}

.certificate-lines i:nth-child(3) {
  width: 55%;
}

.certificate-signature {
  margin-top: 28px;

  display: flex;
  justify-content: space-between;

  font-weight: 800;
}


/* =====================================================
   17. DIAGNÓSTICO
===================================================== */

.diagnostic-section {
}

.diagnostic-panel {
  position: relative;

  min-height: 520px;
  padding: clamp(38px, 6vw, 78px);

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;

  overflow: hidden;

  color: #fff;

  border-radius: var(--radius-xl);

  background:
    linear-gradient(
      145deg,
      var(--primary-light),
      var(--primary-dark)
    );

  box-shadow: var(--shadow-lg);
}

.diagnostic-content {
  position: relative;
  z-index: 2;

  max-width: 650px;
}

.diagnostic-content h2,
.diagnostic-content p {
  color: #fff;
}

.diagnostic-content p {
  margin: 25px 0 30px;

  color: rgba(255, 255, 255, 0.72);
}

.diagnostic-visual {
  position: relative;

  min-height: 380px;
}

.diagnostic-orb {
  position: absolute;
  inset: 50%;

  width: 180px;
  height: 180px;

  display: grid;
  place-items: center;

  color: var(--primary);
  background: #fff;

  border-radius: 50%;

  box-shadow:
    0 0 100px rgba(255, 255, 255, 0.18);

  transform: translate(-50%, -50%);
}

.diagnostic-orb span {
  font-family: Manrope, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
}

.diagnostic-wave {
  position: absolute;
  inset: 50%;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.wave-one {
  width: 250px;
  height: 250px;
}

.wave-two {
  width: 360px;
  height: 360px;
}

.wave-three {
  width: 480px;
  height: 480px;
}


/* =====================================================
   18. MÉTODO Y DIFERENCIAS
===================================================== */

.method-section {
}

.method-heading {
  max-width: 980px;
}

.method-heading p {
  max-width: 760px;
  margin-top: 25px;
}

.method-grid,
.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.method-card,
.difference-card {
  position: relative;

  padding: 26px;

  border: 1px solid var(--line);
  border-radius: 24px;

  background: #fff;

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.method-card:hover,
.difference-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.method-number {
  position: absolute;
  top: 22px;
  right: 22px;

  color: #b3b1bd;

  font-size: 0.7rem;
}

.method-icon,
.difference-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;

  display: grid;
  place-items: center;

  color: #fff;
  background: var(--primary);

  border-radius: 16px;

  font-size: 1.35rem;
}

.method-card p,
.difference-card p {
  margin-top: 12px;

  font-size: 0.9rem;
}

.method-data {
  margin-top: 70px;
  padding: 34px;

  border-radius: 28px;

  background: var(--soft);
}

.method-data-title {
  margin-bottom: 30px;

  font-family: Manrope, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.method-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.method-stat {
  padding: 20px;

  border-left: 1px solid var(--line);
}

.method-stat strong,
.method-stat span {
  display: block;
}

.method-stat strong {
  color: var(--primary);

  font-family: Manrope, sans-serif;
  font-size: 2.5rem;
}

.method-stat span {
  margin-top: 5px;

  color: var(--muted);

  font-size: 0.8rem;
}

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

.difference-card {
  min-height: 280px;
}

.difference-line {
  position: absolute;
  left: 26px;
  bottom: 24px;

  width: 45px;
  height: 2px;

  background: var(--gold);
}


/* =====================================================
   19. AUDIENCIAS
===================================================== */

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

.audience-intro {
  position: sticky;
  top: 130px;
}

.audience-intro p {
  margin: 22px 0;
}

.audience-list {
  display: grid;
}

.audience-item {
  padding: 26px 0;

  display: grid;
  grid-template-columns: 44px 1fr 46px;
  align-items: center;
  gap: 18px;

  border-bottom: 1px solid var(--line);
}

.audience-item > span {
  color: var(--primary);

  font-size: 0.72rem;
  font-weight: 800;
}

.audience-item > i {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  color: var(--primary);
  background: #fff;

  border-radius: 14px;

  font-size: 1.2rem;
}

.audience-item p {
  margin-top: 6px;

  font-size: 0.88rem;
}


/* =====================================================
   20. PAQUETES
===================================================== */

.packages-section {
}

.packages-heading p,
.process-heading p,
.difference-heading p {
  max-width: 760px;
  margin-top: 22px;
}

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

.package-card {
  position: relative;

  padding: 30px;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 28px;

  background: #fff;
  box-shadow: var(--shadow-sm);
}

.package-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.package-ribbon {
  position: absolute;
  top: 18px;
  right: -42px;

  width: 170px;
  padding: 8px 0;

  color: #fff;
  background: var(--primary);

  font-size: 0.64rem;
  font-weight: 800;
  text-align: center;

  transform: rotate(35deg);
}

.package-tag {
  padding: 7px 10px;

  display: inline-flex;

  color: var(--primary);
  background: rgba(41, 38, 91, 0.08);

  border-radius: 99px;

  font-size: 0.68rem;
  font-weight: 800;
}

.package-top h3 {
  margin: 18px 0 12px;
}

.package-top p {
  font-size: 0.9rem;
}

.package-ideal {
  margin: 26px 0;
  padding: 16px;

  border-radius: 16px;

  background: var(--soft);
}

.package-ideal span,
.package-ideal strong {
  display: block;
}

.package-ideal span {
  color: var(--muted);

  font-size: 0.68rem;
}

.package-divider {
  height: 1px;
  margin: 28px 0;

  background: var(--line);
}

.package-includes {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card ul {
  margin-top: 18px;

  display: grid;
  gap: 12px;
}

.package-card li {
  display: flex;
  gap: 8px;

  font-size: 0.88rem;
}

.package-card li i {
  color: var(--success);
}


/* =====================================================
   21. PROCESO
===================================================== */

.process-section {
  color: #fff;

  background:
    linear-gradient(
      145deg,
      var(--primary-light),
      var(--primary-dark)
    );
}

.process-heading h2,
.process-heading p {
  color: #fff;
}

.process-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-step {
  padding: 26px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(12px);
}

.process-marker {
  width: 46px;
  height: 46px;
  margin-bottom: 28px;

  display: grid;
  place-items: center;

  color: var(--primary);
  background: #fff;

  border-radius: 14px;

  font-weight: 800;
}

.process-step h3,
.process-step p {
  color: #fff;
}

.process-step p {
  margin-top: 10px;

  color: rgba(255, 255, 255, 0.67);

  font-size: 0.9rem;
}


/* =====================================================
   22. PREGUNTAS FRECUENTES
===================================================== */

.faq-section {
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading p {
  margin-top: 22px;
}

.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);

  background: transparent;
}

.faq-accordion .accordion-button {
  padding: 24px 0;

  color: var(--ink);
  background: transparent;
  box-shadow: none;

  font-family: Manrope, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
}

.faq-accordion .accordion-body {
  padding: 0 0 24px;

  color: var(--muted);

  line-height: 1.75;
}


/* =====================================================
   23. CTA FINAL CENTRADO
===================================================== */

.final-cta-section {
  color: #fff;
}

.final-cta-layout {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 40px;
}

.final-cta-copy {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;

  text-align: center;
}

.final-cta-copy h2,
.final-cta-copy p {
  color: #fff;
}

.final-cta-copy h2 {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.final-cta-copy h2 span {
  display: inline;
  color: rgba(255, 255, 255, 0.58);
}

.final-cta-copy p {
  width: 100%;
  max-width: 760px;
  margin: 28px auto;

  color: rgba(255, 255, 255, 0.72);
}

.final-cta-actions {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.final-cta-visual {
  display: none;
}

.final-cta-benefits {
  margin-top: 70px;
  padding-top: 28px;

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.final-cta-benefits span {
  display: flex;
  align-items: center;
  gap: 8px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.8rem;
}


/* =====================================================
   24. VENTANA DE CONTACTO
===================================================== */

.contact-window {
  padding: 24px;
}

.contact-window-top {
  display: flex;
  justify-content: space-between;
}

.contact-window-top span,
.contact-window-top strong {
  display: block;
}

.contact-window-top span {
  color: var(--muted);

  font-size: 0.68rem;
}

.contact-window-status {
  padding: 7px 10px;

  color: var(--success) !important;
  background: #e8f7f1;

  border-radius: 99px;
}

.contact-window-body {
  margin-top: 22px;

  display: grid;
  gap: 10px;
}

.contact-field {
  padding: 14px;

  border-radius: 14px;

  background: var(--soft);
}

.contact-field span,
.contact-field strong {
  display: block;
}

.contact-field span {
  color: var(--muted);

  font-size: 0.68rem;
}

.contact-result {
  margin-top: 8px;
  padding: 16px;

  display: flex;
  gap: 12px;

  color: #fff;
  background: var(--primary);

  border-radius: 16px;
}

.contact-result i {
  font-size: 1.35rem;
}

.contact-result strong,
.contact-result span {
  display: block;
}

.contact-result span {
  color: rgba(255, 255, 255, 0.7);

  font-size: 0.72rem;
}


/* =====================================================
   25. FOOTER
===================================================== */

.footer {
  padding: 70px 0 30px;

  color: #fff;
  background: #111026;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand img {
  width: 170px;

  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 20px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 0.88rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 8px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.58);

  font-size: 0.84rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  color: rgba(255, 255, 255, 0.42);

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}


/* =====================================================
   26. WHATSAPP FLOTANTE
===================================================== */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;

  min-height: 52px;
  padding: 0 18px;

  display: flex;
  align-items: center;
  gap: 8px;

  color: #fff;
  background: #25d366;

  border-radius: 99px;

  box-shadow:
    0 18px 40px rgba(37, 211, 102, 0.28);

  font-weight: 800;
}


/* =====================================================
   27. RESPONSIVE — PANTALLAS MEDIANAS
===================================================== */

@media (max-width: 1199px) {
  .hero-vector {
    inset: 0 0 0 28%;
    opacity: 0.72;
  }

  .hero-title {
    font-size: clamp(2rem, 6.3vw, 5rem);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-intro {
    grid-column: 1 / -1;
  }

  .method-grid,
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =====================================================
   28. RESPONSIVE — TABLET
===================================================== */

@media (max-width: 991px) {
  :root {
    --section-space: 90px;
  }

  .site-container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero-section {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-vector {
    inset: 0;
    opacity: 0.25;
  }

  .hero-vector-fade {
    background: rgba(255, 255, 255, 0.78);
  }

  .hero-bottom {
    margin-top: 34px;
  }

  .hero-panel-column {
    min-height: 0;
    margin-top: 40px;

    display: block;
  }

  .hero-mini-panel {
    max-width: none;
    margin: 0;
  }

  .sticky-section-label,
  .audience-intro,
  .faq-heading {
    position: static;

    margin-bottom: 35px;
  }

  .solutions-bento,
  .packages-grid,
  .diagnostic-panel {
    grid-template-columns: 1fr;
  }

  .solution-card-wide {
    grid-column: auto;
  }

  .trademark-layout {
    grid-template-columns: 1fr;
  }

  .diagnostic-visual {
    min-height: 300px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =====================================================
   29. RESPONSIVE — MÓVIL
===================================================== */

@media (max-width: 767px) {
  h1 {
    font-size: clamp(2.7rem, 13vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.8rem);
  }

  .navbar {
    padding: 12px 0;
  }

  .brand-logo {
    height: 40px;
    max-width: 150px;
  }

  .hero-section {
    padding-top: 115px;
    padding-bottom: 65px;
  }

  .hero-kicker {
    margin-bottom: 25px;
  }

  .hero-title {
    max-width: none;
  }

  .hero-bottom {
    margin-top: 34px;
  }

  .hero-panel-column {
    margin-top: 28px;
  }

  .hero-actions {
    position: relative;
    z-index: 10;

    width: 100%;
    margin-top: 26px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;

    display: inline-flex !important;

    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-intro {
    grid-column: 1 / -1;
  }

  .solutions-bento,
  .method-grid,
  .difference-grid,
  .packages-grid,
  .process-timeline,
  .method-stat-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    padding: 20px;

    border-radius: 24px;
  }

  .solution-card-wide {
    padding: 18px;
  }

  .solution-card-header {
    align-items: flex-start;
    gap: 14px;
  }

  .solution-card-header > div {
    min-width: 0;

    display: block;
    flex: 1;
  }

  .solution-card-header h3 {
    font-size: 1.18rem;
    line-height: 1.35;
    letter-spacing: -0.025em;
  }

  .card-number {
    display: block;

    margin-bottom: 8px;
  }

  .card-expand {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .solution-visual {
    min-height: 260px;
    margin: 24px 0;
    padding: 16px;
  }

  .solution-visual.web-visual {
    min-height: auto;
    padding: 14px;

    border-radius: 20px;

    background:
      radial-gradient(
        circle at 75% 20%,
        rgba(99, 115, 180, 0.12),
        transparent 42%
      ),
      linear-gradient(
        145deg,
        #f5f6fa,
        #eceef7
      );
  }

  .browser-window {
    width: 100%;
    margin: 0;

    border-radius: 17px;

    box-shadow:
      0 18px 45px rgba(22, 20, 55, 0.12);
  }

  .browser-toolbar {
    height: 42px;
    padding: 0 11px;
    gap: 10px;
  }

  .browser-dots {
    gap: 4px;
  }

  .browser-dots i {
    width: 7px;
    height: 7px;
  }

  .browser-address {
    min-width: 0;
    padding: 5px 9px;

    overflow: hidden;

    font-size: 0.62rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .browser-content {
    min-height: 250px;

    grid-template-columns: 42px minmax(0, 1fr);
  }

  .browser-sidebar {
    padding: 14px 7px;
  }

  .browser-logo {
    width: 27px;
    height: 27px;
    margin: 0 auto 18px;

    border-radius: 8px;

    font-size: 0.75rem;
  }

  .sidebar-line {
    width: 100%;
    height: 5px;
    margin: 10px 0;
  }

  .sidebar-line.short {
    width: 65%;
  }

  .browser-page {
    min-width: 0;
    padding: 26px 18px 22px;
  }

  .mock-label {
    display: block;

    max-width: 100%;

    overflow: hidden;

    font-size: 0.52rem;
    letter-spacing: 0.01em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mock-title {
    width: 100%;
    max-width: 220px;
    margin: 13px 0 18px;

    font-size: 1.35rem;
    line-height: 1.18;
    letter-spacing: -0.035em;

    overflow-wrap: normal;
    word-break: normal;
  }

  .mock-text {
    width: 100%;
    max-width: 230px;
    height: 6px;
  }

  .mock-text.short {
    width: 65%;
  }

  .mock-buttons {
    margin: 18px 0;
    gap: 7px;
  }

  .mock-buttons span {
    width: 74px;
    height: 28px;
  }

  .mock-buttons span + span {
    width: 58px;
  }

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

  .mock-cards span {
    min-width: 0;
    height: 64px;
  }

  .website-score {
    position: relative;
    right: auto;
    bottom: auto;

    width: 100%;
    margin-top: 12px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .website-score div {
    min-width: 0;
    padding: 12px 14px;

    border: 1px solid rgba(41, 38, 91, 0.07);
    border-radius: 14px;

    box-shadow:
      0 10px 26px rgba(22, 20, 55, 0.07);
  }

  .website-score span {
    font-size: 0.63rem;
  }

  .website-score strong {
    margin-top: 2px;

    font-size: 1rem;
  }

  .solution-card-footer p {
    font-size: 0.91rem;
    line-height: 1.7;
  }

  .solution-card-footer ul {
    margin: 20px 0;

    grid-template-columns: 1fr;
  }

  .checkout-card {
    position: relative;
    right: auto;
    bottom: auto;

    margin: -30px 0 0 auto;
  }

  .software-visual {
    grid-template-columns: 46px 1fr;
  }

  .software-cards,
  .ads-metrics {
    grid-template-columns: 1fr;
  }

  .trademark-layout {
    gap: 28px;
  }

  .diagnostic-panel {
    padding: 34px 22px;

    border-radius: 28px;
  }

  .diagnostic-visual {
    min-height: 250px;
  }

  .wave-three {
    width: 330px;
    height: 330px;
  }

  .audience-item {
    grid-template-columns: 34px 1fr;
  }

  .audience-item > i {
    display: none;
  }

  .final-cta-copy {
    max-width: 100%;
  }

  .final-cta-copy p {
    max-width: 100%;
  }

  .final-cta-actions {
    max-width: 380px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .final-cta-actions .btn {
    width: 100%;
  }

  .final-cta-benefits {
    margin-top: 45px;

    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));

    width: 54px;
    height: 54px;
    padding: 0;

    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }
}


/* =====================================================
   30. RESPONSIVE — TELÉFONOS PEQUEÑOS
===================================================== */

@media (max-width: 575px) {
  .mobile-menu {
    width: 100% !important;
  }

  .mobile-menu-header {
    min-height: 70px;
    padding: 13px 16px;
  }

  .mobile-menu-header .brand-logo {
    height: 39px;
    max-width: 148px;
  }

  .btn-close-menu {
    width: 38px;
    height: 38px;
    min-width: 38px;

    border-radius: 11px;

    font-size: 20px;
  }

  .mobile-menu .offcanvas-body {
    padding:
      23px
      18px
      calc(26px + env(safe-area-inset-bottom));
  }

  .mobile-nav a {
    min-height: 51px;
    padding: 10px 0;

    font-size: 1.48rem;
  }

  .mobile-solutions {
    gap: 10px 15px;
  }
}


/* =====================================================
   31. RESPONSIVE — TELÉFONOS MUY PEQUEÑOS
===================================================== */

@media (max-width: 480px) {
  .site-container {
    width: min(calc(100% - 24px), var(--container));
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-benefits {
    grid-template-columns: 1fr;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
  }

  .product-card-mockup {
    width: 190px;
  }

  .checkout-card {
    width: 185px;
  }
}

@media (max-width: 420px) {
  .custom-toggler {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .custom-toggler > span {
    width: 24px;
  }

  .custom-toggler > span::before,
  .custom-toggler > span::after {
    width: 31px;
  }

  .mobile-solutions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .solution-card-wide {
    padding: 15px;
  }

  .solution-visual.web-visual {
    padding: 10px;
  }

  .browser-content {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .browser-sidebar {
    padding-inline: 6px;
  }

  .browser-logo {
    width: 24px;
    height: 24px;

    font-size: 0.68rem;
  }

  .browser-page {
    padding: 22px 13px 18px;
  }

  .mock-title {
    max-width: 190px;

    font-size: 1.15rem;
  }

  .mock-cards span {
    height: 54px;
  }
}


/* =====================================================
   32. ACCESIBILIDAD
===================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}


/* Separación entre encabezados y tarjetas */
.services-summary-grid {
  margin-top: 64px;
}

.method-section .method-grid {
  margin-top: 64px;
}

.trust-section .trust-grid {
  display: block;
}

.trust-section .trust-intro {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 40px;
  color: #ffffff;
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.4;
  background: #29265b;
  border-radius: 24px;
}

@media (max-width: 767.98px) {
  .trust-section .trust-intro {
    padding: 22px 24px;
    border-radius: 18px;
  }
}

/* ==================================================
   SUBMENÚ DE SOLUCIONES
================================================== */

.solutions-dropdown {
  position: relative;
}

.solutions-dropdown > .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.solutions-dropdown > .dropdown-toggle::after {
  display: none;
}

.solutions-dropdown > .dropdown-toggle i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.solutions-dropdown > .dropdown-toggle.show i {
  transform: rotate(180deg);
}

.solutions-dropdown-menu {
  width: min(720px, calc(100vw - 48px));
  margin-top: 18px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(41, 38, 91, 0.1);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(25, 23, 57, 0.18);
  backdrop-filter: blur(20px);
}

.solutions-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 154px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-top: 1px solid rgba(41, 38, 91, 0.1);
  border-left: 1px solid rgba(41, 38, 91, 0.1);
  transform: rotate(45deg);
}

.solutions-dropdown-header {
  padding: 24px 26px 20px;
  border-bottom: 1px solid rgba(41, 38, 91, 0.08);
}

.solutions-dropdown-header span {
  display: block;
  margin-bottom: 5px;
  color: #29265b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solutions-dropdown-header p {
  max-width: 470px;
  margin: 0;
  color: rgba(23, 22, 48, 0.62);
  font-size: 0.9rem;
  line-height: 1.55;
}

.solutions-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 16px;
}

.solution-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  color: #171630;
  text-decoration: none;
  border-radius: 16px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.solution-dropdown-item:hover {
  color: #171630;
  background: rgba(41, 38, 91, 0.06);
  transform: translateY(-2px);
}

.solution-dropdown-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-size: 20px;
  background: #29265b;
  border-radius: 13px;
}

.solution-dropdown-content {
  display: block;
  min-width: 0;
}

.solution-dropdown-content strong {
  display: block;
  margin-bottom: 4px;
  color: #171630;
  font-size: 0.94rem;
  font-weight: 700;
}

.solution-dropdown-content small {
  display: block;
  color: rgba(23, 22, 48, 0.6);
  font-size: 0.78rem;
  line-height: 1.45;
}

.solutions-dropdown-footer {
  padding: 15px 26px;
  background: rgba(41, 38, 91, 0.045);
  border-top: 1px solid rgba(41, 38, 91, 0.08);
}

.solutions-dropdown-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #29265b;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.solutions-dropdown-footer i {
  transition: transform 0.25s ease;
}

.solutions-dropdown-footer a:hover i {
  transform: translateX(4px);
}

/* ==================================================
   SUBMENÚ MÓVIL
================================================== */

.mobile-solutions-item {
  border-bottom: 1px solid rgba(41, 38, 91, 0.09);
}

.mobile-solutions-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  color: #171630;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  background: transparent;
  border: 0;
}

.mobile-solutions-toggle i {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.mobile-solutions-toggle:not(.collapsed) i {
  transform: rotate(180deg);
}

.mobile-solutions-collapse {
  padding: 4px 0 18px;
}

.mobile-solution-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
  padding: 12px 14px !important;
  color: rgba(23, 22, 48, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  background: rgba(41, 38, 91, 0.045);
  border: 0 !important;
  border-radius: 13px;
}

.mobile-solution-link i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  font-size: 16px;
  background: #29265b;
  border-radius: 10px;
}

.mobile-solutions-all {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 13px 2px 4px !important;
  color: #29265b !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  border: 0 !important;
}

/* =====================================================
   UTILIDADES GLOBALES DE SUPERFICIE Y ESPACIADO
   Se pueden aplicar a cualquier <section> o contenedor.
===================================================== */
.bg-white { background: var(--white) !important; }
.bg-soft { background: var(--soft) !important; }
.bg-surface { background: var(--surface) !important; }
.bg-primary { background: var(--primary) !important; color: var(--white); }
.bg-primary-gradient { background: linear-gradient(145deg, var(--primary), var(--primary-dark)) !important; color: var(--white); }
.bg-blur {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-block: 1px solid rgba(41, 38, 91, 0.08);
}
.section-compact { padding-block: clamp(42px, 6vw, 78px) !important; }
.section-no-top { padding-top: 0 !important; }
.section-no-bottom { padding-bottom: 0 !important; }
.section-bottom-sm { padding-bottom: 55px !important; }

/* PÁGINAS DE SERVICIO */
.service-hero { padding-top: clamp(150px, 15vw, 210px); }
.service-lead { max-width: 720px; margin-top: 28px; font-size: 1.1rem; }
.service-orb { min-height: 420px; display:grid; place-items:center; padding:40px; border-radius: var(--radius-xl); background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.9), rgba(127,119,255,.18) 35%, rgba(41,38,91,.96)); box-shadow:var(--shadow-lg); }
.service-orb span { max-width:300px; color:#fff; font-family:Manrope,sans-serif; font-size:clamp(2rem,4vw,4rem); font-weight:700; line-height:1; text-align:center; }
.service-feature-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.service-feature-card { min-height:190px; padding:28px; border:1px solid var(--line); border-radius:var(--radius-md); background:#fff; box-shadow:var(--shadow-sm); }
.service-feature-card span { color:var(--primary); font-size:.75rem; font-weight:800; }
.service-feature-card h3 { margin-top:42px; }
.service-cta { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.service-cta h2 { max-width:820px; color:#fff; font-size:clamp(2.1rem,4vw,4.6rem); }
@media (max-width: 767px) { .service-feature-grid { grid-template-columns:1fr; } .service-cta { align-items:flex-start; flex-direction:column; } .service-orb { min-height:300px; } }
