@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");

:root {
  --bg: #ffffff;
  --paper: #faf9f6;
  --ink: #121212;
  --muted: #6e6a63;
  --faint: #a8a39a;

  --orange: #ff5a1f;
  --orange-soft: rgba(255, 90, 31, 0.1);

  --dark: #141210;
  --dark-line: rgba(255, 255, 255, 0.1);

  --hair: rgba(18, 18, 18, 0.12);
  --hair-soft: rgba(18, 18, 18, 0.07);

  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body:
    "Google Sans", "Google Sans Text", "Product Sans", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 4px;
  --radius: 10px;
  --radius-pill: 999px;

  --container: 1180px;
  --pad-mobile: 20px;
}

/* BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h2 em {
  font-style: normal;
  color: var(--orange);
}
.hl {
  color: var(--orange);
}
h2.light,
.light h2 {
  color: #fff;
}

h2 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}
h3 {
  font-size: 1.05rem;
  text-transform: none;
  font-weight: 800;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-mobile);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.lg-only {
  display: none;
}

section {
  padding: 52px 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.eyebrow--light {
  color: var(--orange);
}

.section-lead {
  color: var(--muted);
  max-width: 50ch;
}
.section-lead--right {
  margin-top: 10px;
}

/* BOTONES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange);
}

.btn-pill {
  background: var(--orange);
  color: #fff;
  padding: 11px 22px;
  font-size: 0.85rem;
}
.btn-pill:hover {
  background: var(--ink);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--hair);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  color: #fff;
}
.btn-glass:hover {
  background: rgba(255, 90, 31, 0.25);
  border-color: var(--orange);
}
.btn-glass span {
  color: var(--orange);
}

.btn-block {
  width: 100%;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--hair);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-mobile);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  width: 26px;
  height: 26px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 0.7rem;
}
.logo-mark img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
  margin: auto;
}
.site-header:not(.scrolled) .logo-mark {
  background: #fff;
  color: var(--ink);
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
}
.site-header:not(.scrolled) .logo-word {
  color: #fff;
}
.logo-dot {
  color: var(--orange);
}

.nav-desktop {
  display: none;
}
.nav-desktop a {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  margin-left: 26px;
}
.site-header:not(.scrolled) .nav-desktop a {
  color: #fff;
}
.nav-desktop a:hover {
  color: var(--orange);
}

.nav-cta-btn {
  display: none;
}

.menu-btn {
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.site-header.scrolled .menu-btn {
  border-color: var(--hair);
}
.menu-btn span {
  width: 16px;
  height: 1.5px;
  background: #fff;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}
.site-header.scrolled .menu-btn span {
  background: var(--ink);
}
.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 380px);
  height: 100dvh;
  background: var(--bg);
  border-left: 1px solid var(--hair);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--hair);
  border-radius: 50%;
  color: var(--ink);
  margin-bottom: 36px;
}
.mobile-menu-close:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
}
.mobile-menu nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hair-soft);
}
.mobile-menu-cta {
  margin-top: 22px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
}
.mobile-menu-cta--ghost {
  margin-top: 10px;
  background: transparent;
  border: 1px solid var(--hair);
  color: var(--ink);
}

.mobile-menu-social {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
}
.mobile-menu-social-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hair);
  border-radius: 50%;
  color: var(--ink);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}
.social-icons a i {
  font-size: 17px;
  line-height: 1;
}
.social-icons a svg {
  width: 17px;
  height: 17px;
  display: block;
  margin: 0 auto;
  vertical-align: middle;
}
.social-icons a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.5);
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-backdrop[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.55) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  filter: blur(4px);
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 44px;
}
.hero-top {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero h1 {
  font-size: clamp(1.9rem, 8vw, 3.4rem);
  color: #fff;
  text-transform: uppercase;
}
.hero-side p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  max-width: 46ch;
}

/* STRIP */
.strip {
  padding: 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 16px 0 22px;
}
.strip-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 148px;
  padding: 18px 16px;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
button.strip-item {
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}
.strip-num {
  position: absolute;
  top: -14px;
  right: 4px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--hair);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.25s ease;
  z-index: 0;
}
.strip-icon {
  position: relative;
  z-index: 1;
}
.strip-icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}
.strip-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.strip-text strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.25s ease;
}
.strip-text em {
  font-style: normal;
  font-size: 0.74rem;
  color: var(--muted);
  transition: color 0.25s ease;
}
.strip-arrow {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  transition: transform 0.25s ease;
}

.strip-item:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.strip-item:hover .strip-num {
  -webkit-text-stroke-color: rgba(255, 90, 31, 0.55);
}
.strip-item:hover .strip-text strong {
  color: #fff;
}
.strip-item:hover .strip-text em {
  color: rgba(255, 255, 255, 0.6);
}
.strip-item:hover .strip-arrow {
  transform: translateX(4px);
}

/* QUIENES SOMOS */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.about-ph {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #efebe2 0%, #dfd9ca 100%);
  position: relative;
}
.about-ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.about-copy h2 {
  text-transform: none;
  max-width: 20ch;
}
.about-lead {
  color: var(--muted);
  margin: 14px 0 22px;
}

.about-stats {
  display: flex;
  gap: 22px;
  border-top: 1px solid var(--hair);
  padding-top: 20px;
  flex-wrap: wrap;
}
.about-stats div {
  display: flex;
  flex-direction: column;
}
.about-stats strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
}
.about-stats span {
  font-size: 0.76rem;
  color: var(--muted);
}

/* EJEMPLOS */
.ejemplos {
  background: var(--paper);
}
.bento {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.bento-card {
  display: block;
}
.bento-ph {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, #ece8df 0%, #ded8c9 100%);
  position: relative;
  margin-bottom: 8px;
}
.bento-card--wide .bento-ph {
  aspect-ratio: 16 / 9;
}
.bento-ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
}
.bento-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  margin-bottom: 8px;
}
.bento-card--wide .bento-img {
  aspect-ratio: 16 / 9;
}
.bento-card span {
  font-size: 0.84rem;
  font-weight: 600;
}

.cl--sec {
  color: var(--orange);
}

/* SERVICIOS */
.servicios-head {
  margin-bottom: 30px;
}
.servicios-head h2 {
  text-transform: uppercase;
  max-width: 20ch;
}

.service-rows {
  border-top: 1px solid var(--hair);
}
.service-row {
  padding: 26px 0;
  border-bottom: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-row-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.service-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  font-size: 0.95rem;
}
.service-row-head h3 {
  text-transform: uppercase;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-badge {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.service-row-body p {
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 60ch;
}
.service-row-body ul li {
  font-size: 0.86rem;
  color: var(--ink);
  padding: 5px 0 5px 16px;
  position: relative;
}
.service-row-body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.service-row-media {
  display: none;
}
.service-ph {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #ece8df 0%, #ded8c9 100%);
  position: relative;
}
.service-ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
}
.service-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* IMAGEN PROFESIONAL */
.imagen-head {
  max-width: 640px;
  margin: 8px 0 28px;
}
.imagen-head h2 {
  text-transform: uppercase;
  margin-bottom: 18px;
}

.imagen-slider {
  overflow: hidden;
}
.imagen-track {
  display: flex;
  gap: 12px;
  transition: transform 0.45s ease;
  will-change: transform;
}
.imagen-card {
  flex: 0 0 auto;
  width: 58vw;
  max-width: 210px;
}
.imagen-ph {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #efebe0 0%, #e1dacb 100%);
  position: relative;
}
.imagen-ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.imagen-img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.imagen-card figcaption {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.slider-controls {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  flex-shrink: 0;
}
.left--arrow {
  transform: scaleX(-1);
}
.slider-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* BENEFICIOS */
.beneficios {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.beneficios-texture {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035) 0 2px,
    transparent 2px 26px
  );
  pointer-events: none;
}
.beneficios .container {
  position: relative;
}
.beneficios h2 {
  color: #fff;
  text-transform: uppercase;
  max-width: 26ch;
}

.beneficios-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
}
.beneficio-card {
  background: var(--dark);
  padding: 24px 20px;
}
.beneficio-card h3 {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.beneficio-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

/* SOLUCIONES */
.pricing {
  margin-top: 26px;
}
.pricing-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 24px;
  padding-bottom: 4px;
}
.price-tab {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  background: var(--paper);
  color: var(--muted);
  border: 1px solid var(--hair);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.price-tab[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.price-panel {
  display: none;
  flex-direction: column;
  gap: 24px;
}
.pricing-panels[data-price-active="esencial"]
  .price-panel[data-price-panel="esencial"] {
  display: flex;
}
.pricing-panels[data-price-active="profesional"]
  .price-panel[data-price-panel="profesional"] {
  display: flex;
}
.pricing-panels[data-price-active="inteligente"]
  .price-panel[data-price-panel="inteligente"] {
  display: flex;
}
.pricing-panels[data-price-active="crm"] .price-panel[data-price-panel="crm"] {
  display: flex;
}

.price-info {
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.price-footnote {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--faint);
}
.price-desc {
  color: var(--muted);
  margin: 12px 0 18px;
}
.price-list {
  margin-bottom: 22px;
}
.price-list li {
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid var(--hair-soft);
  font-size: 0.9rem;
  position: relative;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.price-media {
  display: none;
}
.price-ph {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #ece8df 0%, #ded8c9 100%);
  position: relative;
}
.price-ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.price-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* PROCESO */
.proceso {
  background: var(--paper);
}
.proceso-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.proceso-card {
  background: var(--paper);
  padding: 26px 20px;
}
.proceso-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.proceso-card h3 {
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 6px;
}
.proceso-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* TESTIMONIOS */
.testi-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}
.testi-slider {
  overflow: hidden;
  flex: 1 1 auto;
}
.testi-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}
.testi-card {
  flex: 0 0 100%;
  padding: 6px;
  text-align: center;
}
.testi-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(150deg, #ece8df 0%, #ded8c9 100%);
}
.testi-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  object-fit: cover;
  display: block;
}
.testi-card blockquote {
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto 16px;
  color: var(--ink);
}
.testi-card figcaption {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.testi-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--faint);
  margin-top: 18px;
}

/* FAQ */
.accordion {
  border-top: 1px solid var(--hair);
  margin-top: 24px;
}
.accordion-item {
  border-bottom: 1px solid var(--hair);
}
.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  padding: 18px 2px;
  font-weight: 700;
  font-size: 0.98rem;
}
.accordion-item summary::-webkit-details-marker {
  display: none;
}
.accordion-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-weight: 700;
}
.accordion-item[open] .accordion-icon {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.accordion-item p {
  color: var(--muted);
  padding: 0 2px 20px;
  max-width: 62ch;
}

/* CONTACTO */
.contacto-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contacto-map-col p,
.contacto-form-col > p.eyebrow + h2 + p {
  color: var(--muted);
}
.contacto-map-col h2,
.contacto-form-col h2 {
  text-transform: uppercase;
  max-width: 20ch;
  margin-bottom: 12px;
}
.contacto-map-col p {
  color: var(--muted);
  margin-bottom: 20px;
}

.ubicacion-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hair);
}
.ubicacion-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(65%) contrast(105%);
}

.contacto-lead {
  margin-top: 18px;
  color: var(--muted);
}
.contacto-ctas {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* HUB DE ACCION */
.hub-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px 10px;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.hub-grid > .hub-card:first-child {
  grid-column: 1 / -1;
}
.hub-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  padding: 22px 10px;
}
.hub-card--featured i {
  font-size: 20px;
  color: var(--orange);
}
.hub-card--featured:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.hub-card--featured:hover i {
  color: #fff;
}
.hub-card svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}
.hub-card:hover {
  border-color: var(--orange);
  background: var(--orange-soft);
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding-top: 50px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--dark-line);
}
.footer-brand .logo-word {
  font-size: 1.1rem;
  color: #fff;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  margin-top: 10px;
  max-width: 38ch;
}
.footer-col h4 {
  font-size: 0.76rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}
.footer-col a:hover {
  color: var(--orange);
}

.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--ink);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  font-size: clamp(3.2rem, 18vw, 11rem);
  line-height: 0.85;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0 0;
  overflow: hidden;
  white-space: nowrap;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
}

/* LOBBY IA */
.assist-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
}
.mobile-menu[data-open="true"] ~ .assist-float,
body.menu-open .assist-float {
  opacity: 0;
  pointer-events: none;
}
.assist-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--hair);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.14);
  transition:
    border-color 0.2s ease,
    transform 0.15s ease;
}
.assist-pill:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
}
.assist-pill svg {
  width: 19px;
  height: 19px;
  color: var(--orange);
}

/* CHAT WIDGET */
.chat-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.32);
  z-index: 95;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.chat-backdrop[hidden] {
  display: none;
}
.chat-backdrop.is-visible {
  opacity: 1;
}

.chat-widget {
  position: fixed;
  z-index: 96;
  right: 18px;
  bottom: 18px;
  width: min(400px, calc(100vw - 32px));
  max-height: min(600px, calc(100vh - 32px));
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.chat-widget[hidden] {
  display: none;
}
.chat-widget.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.chat-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid var(--hair);
  flex-shrink: 0;
}
.chat-widget-heading {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.chat-widget-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}
.chat-widget-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--muted);
}
.chat-widget-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.chat-widget-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  background: none;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}
.chat-widget-close svg {
  width: 15px;
  height: 15px;
}
.chat-widget-close:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.chat-widget-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  animation: chatMsgIn 0.2s ease;
}
.chat-msg--bot {
  align-self: flex-start;
  background: var(--paper);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.chat-msg--user {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
  border-bottom-right-radius: 4px;
}
@keyframes chatMsgIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-widget-quick {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--hair-soft);
}
.chat-quick-btn {
  border: 1px solid var(--hair);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.chat-quick-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.chat-quick-btn--primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.chat-quick-btn--primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .chat-widget,
  .chat-backdrop,
  .chat-msg {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 480px) {
  .chat-widget {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: min(80vh, 620px);
    border-radius: var(--radius) var(--radius) 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    transform: translateY(100%);
  }
  .chat-widget.is-open {
    transform: translateY(0);
  }
  .assist-float {
    right: 14px;
    bottom: 14px;
  }
}

/* RESPONSIVE */
@media (min-width: 560px) {
  .strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card--wide {
    grid-column: span 2;
  }
}

@media (min-width: 640px) {
  .imagen-card {
    width: 210px;
  }
  .hub-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 860px) {
  :root {
    --pad-mobile: 32px;
  }
  section {
    padding: 92px 0;
  }
  h2 {
    font-size: 2.3rem;
  }
  .lg-only {
    display: inline;
  }

  .nav-desktop {
    display: block;
  }
  .nav-cta-btn {
    display: inline-flex;
  }
  .menu-btn {
    display: none;
  }

  .hero-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
  }
  .hero h1 {
    flex: 1 1 56%;
  }
  .hero-side {
    flex: 1 1 34%;
  }

  .about-grid {
    flex-direction: row;
    align-items: center;
    gap: 54px;
  }
  .about-media,
  .about-copy {
    flex: 1 1 50%;
  }
  .about-stats {
    gap: 34px;
  }

  .service-row {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }
  .service-row-head {
    flex: 0 0 220px;
  }
  .service-row-body {
    flex: 1 1 auto;
  }
  .service-row-media {
    display: block;
    flex: 0 0 180px;
  }

  .price-panel {
    flex-direction: row;
    align-items: stretch;
  }
  .price-info {
    flex: 1 1 55%;
  }
  .price-media {
    display: block;
    flex: 1 1 45%;
  }
  .price-media .price-ph {
    height: 100%;
  }
  .price-media .price-img {
    height: 100%;
  }

  .proceso-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contacto-grid {
    flex-direction: row;
    gap: 60px;
  }
  .contacto-map-col,
  .contacto-form-col {
    flex: 1 1 50%;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-brand {
    flex: 1 1 40%;
  }
}

@media (min-width: 1100px) {
  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ANIMACIONES */

.reveal {
  opacity: 1;
  transform: none;
}
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group > .reveal:nth-child(1) {
  transition-delay: 0ms;
}
.reveal-group > .reveal:nth-child(2) {
  transition-delay: 70ms;
}
.reveal-group > .reveal:nth-child(3) {
  transition-delay: 140ms;
}
.reveal-group > .reveal:nth-child(4) {
  transition-delay: 210ms;
}
.reveal-group > .reveal:nth-child(5) {
  transition-delay: 280ms;
}
.reveal-group > .reveal:nth-child(6) {
  transition-delay: 350ms;
}

.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-anim--1 {
  animation-delay: 0.05s;
}
.hero-anim--2 {
  animation-delay: 0.2s;
}
.hero-anim--3 {
  animation-delay: 0.35s;
}
@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bento-card {
  transition: transform 0.3s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
}
.bento-img {
  transition: transform 0.5s ease;
}
.bento-card:hover .bento-img {
  transform: scale(1.04);
}

.beneficio-card {
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.beneficio-card:hover {
  transform: translateY(-4px);
}

.proceso-card {
  transition: transform 0.3s ease;
}
.proceso-card:hover {
  transform: translateY(-4px);
}

.price-info {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.price-info:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.06);
}

.service-row-media {
  overflow: hidden;
  border-radius: var(--radius);
}
.service-img {
  transition: transform 0.5s ease;
}
.service-row:hover .service-img {
  transform: scale(1.04);
}

.imagen-card img {
  transition: transform 0.5s ease;
}
.imagen-card:hover img {
  transform: scale(1.04);
}
