.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-base);
}

.btn--primary {
  background: var(--color-accent);
  color: #000;
}

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

.btn--secondary {
  border: 1px solid var(--color-muted);
  color: var(--color-text);
}

.btn--ghost {
  color: var(--color-muted);
}

.tech-word {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    120deg,
    #6CF2C2,
    #8AA9FF,
    #6CF2C2
  );
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

  animation: techGradient 6s ease-in-out infinite;
}

@keyframes techGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (min-width: 900px) {
  .tech-word::after {
    content: "";
    position: absolute;
    inset: 0;
    filter: blur(18px);
    opacity: 0.25;
    background: inherit;
    z-index: -1;
  }
}











.hero__chat {
  margin-top: 0;
  max-width: none;
  animation: chatFloat 4s ease-in-out infinite;
}

/* ── Chat column label ── */
.hero__chat-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.hero__chat-label__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #6CF2C2;
  box-shadow: 0 0 10px rgba(108,242,194,0.75);
  animation: chat-dot-pulse 2.2s ease-in-out infinite;
}
@keyframes chat-dot-pulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 10px rgba(108,242,194,0.75); }
  50%       { opacity: 0.4; box-shadow: 0 0  4px rgba(108,242,194,0.25); }
}
.hero__chat-label__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.hero__chat-label__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero__chat-label__role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.hero__chat-label__status {
  font-size: 0.76rem;
  color: #6CF2C2;
  opacity: 1;
  margin-left: auto;
  letter-spacing: 0.02em;
}

.chat-window {
  background: rgba(21, 21, 24, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 18px;
  padding: 1.5rem;
  max-height: 320px;
  overflow-y: auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.4);
}

.chat-window::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at top left,
    rgba(108, 242, 194, 0.12),
    transparent 60%
  );
}


.chat-message {
  margin-bottom: 1.25rem;
}

.chat-message.bot p {
  color: var(--color-text);
}

.chat-author {
  display: block;
  font-size: 0.75rem;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}

.chat-message.user p {
  color: var(--color-muted);
}

.chat-input {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.chat-input input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  color: var(--color-text);
  outline: none;

  font-size: 16px; /* 👈 clave para evitar zoom iOS */
}

@supports (-webkit-touch-callout: none) {
  .chat-input input {
    font-size: 16px;
  }
}


.chat-input button {
  background: var(--color-accent);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.chat-message__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.chat-time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}


.typing-dots {
  display: flex;
  gap: 4px;
  padding: 6px 0;
}

.typing-dots span {
  width: 3px;
  height: 3px;
  background: var(--color-muted);
  border-radius: 50%;
  animation: blinkDots 1.4s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blinkDots {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}



/* Hero chat subtle attention pulse */

.chat-input button {
  animation: sendPulse 2.4s ease-in-out infinite;
}


@keyframes chatFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

@keyframes sendPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(108, 242, 194, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(108, 242, 194, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(108, 242, 194, 0);
  }
}



/* =========================================
   HERO META · Interactive Tech Chips
========================================= */

.meta-item {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.35rem 0.8rem;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);

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

/* Hover state elegante */
.meta-item:hover {
  border-color: var(--color-accent);
  background: rgba(108,242,194,0.06);
  box-shadow: 0 0 18px rgba(108,242,194,0.15);
  transform: translateY(-2px);
}





/* ===============================
   Responsive Safety
================================ */

@media (max-width: 640px) {

  .meta-item::after {
    width: 220px;
    font-size: 0.8rem;
  }

}




.vale-popup {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 320px;
  background: rgba(15,15,18,0.95);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(108,242,194,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
}


@media (max-width: 768px) {

  .vale-popup {
    width: 88%;
    max-width: 380px;
    left: 50% !important;
    bottom: 300px !important;
    transform: translateX(-50%) !important;
  }

}


.vale-popup.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vale-popup__header {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.vale-popup__content {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
  min-height: 40px;
  white-space: pre-wrap;
}

.problem-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.problem-card__status {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.status-danger {
  background: rgba(255, 80, 80, 0.12);
  color: #ff5050;
}

.status-warning {
  background: rgba(255, 180, 0, 0.12);
  color: #ffb400;
}

/* ===============================
   METRIC GLASS · Glass sobre Glass
================================ */

.metric-glass {
  position: relative;
  margin-top: 1.6rem;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;

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

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.35),
    inset 0 -1px 1px rgba(255,255,255,0.04);

  transition: border-color 0.3s ease;
}

.metric-glass__fill {
  position: absolute;
  inset: 0;
  width: 0%;

  background: linear-gradient(
    90deg,
    rgba(108,242,194,0.85),
    rgba(138,169,255,0.9)
  );

  opacity: 0.9;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}

.metric-glass__content {
  position: relative;
  z-index: 2;

  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 1.2rem;
}

.metric-glass__label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

.metric-glass__value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}

/* Hover interaction */
.problem-card:hover .metric-glass {
  border-color: rgba(108,242,194,0.25);
}

.problem-card:hover .metric-glass__fill {
  width: var(--metric-width);
}

/* Animar fill al entrar al viewport (desktop y mobile) */
.problem-tech.is-visible .metric-glass__fill {
  width: var(--metric-width);
}

/* Mobile: sin hover, siempre visible al hacer scroll */
@media (max-width: 768px) {
  .metric-glass__fill {
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}




.problem-card__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.problem-card__badge {
  position: relative;

  width: 52px;
  height: 52px;

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

  border-radius: 14px;

  background: rgba(15, 20, 32, 0.6);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.08);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* Halo energ��tico */
.problem-card__badge::before {
  content: "";
  position: absolute;
  inset: -1px;

  background: radial-gradient(circle at center, rgba(108,242,194,0.25), transparent 65%);
  opacity: 0.4;

  transition: opacity 0.4s ease;
}

/* Micro grid t��cnico interno */
.problem-card__badge::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size: 6px 6px;

  opacity: 0.15;
  pointer-events: none;
}

/* Icono */
.problem-card__badge i {
  position: relative;
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  color: rgba(108,242,194,0.9);

  filter: drop-shadow(0 0 6px rgba(108,242,194,0.4));

  transition: transform 0.4s ease;
}

/* Hover ultra refinado */
.problem-card:hover .problem-card__badge {
  transform: translateY(-3px);
  border-color: rgba(108,242,194,0.25);
  box-shadow:
    0 0 25px rgba(108,242,194,0.15);
}

.problem-card:hover .problem-card__badge::before {
  opacity: 0.7;
}

.problem-card:hover .problem-card__badge i {
  transform: scale(1.08);
}

/* =============================================
   TESTIMONIALS SECTION
============================================= */

.testimonials {
  padding: 6rem 0;
  position: relative;
}

.testimonials__title {
  max-width: 800px;
  margin-bottom: 3.5rem;
  line-height: 1.15;
}

/* =============================================
   MOBILE SCROLL DOTS
============================================= */

.testimonial-dots {
  display: none;
}

@media (max-width: 768px) {

  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1.2rem;
  }

  .testimonial-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
  }

  .testimonial-dots span.active {
    background: #6CF2C2;
    transform: scale(1.3);
  }

}


/* =============================================
   WRAPPER (para fade real en mobile)
============================================= */

.testimonial-wrapper {
  position: relative;
}

/* =============================================
   GRID DESKTOP
============================================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   MOBILE CAROUSEL
============================================= */

@media (max-width: 768px) {

  /* Sacar el wrapper del padding del container */
  .testimonial-wrapper {
    position: relative;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .testimonial-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* padding-right: 12% ensures that card-4's snap point (3 × stride ≈ 2.64V + 72)
       never exceeds maxScrollLeft (≈ 2.64V + 96 with padding), keeping it reachable.
       Without this, at 375px viewport: snapPoint 1062 > maxScrollLeft 1041 → snap back. */
    padding: 1rem 12% 2rem 1.5rem;
    scrollbar-width: none;
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%
    );
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    min-width: 88%;
    scroll-snap-align: start;
  }

}


/* =============================================
   HANDLE + MOBILE LABEL
============================================= */

.testimonial-handle {
  width: 52px;
  height: 5px;
  border-radius: 6px;
  margin: 0 auto 1.4rem auto;
  position: relative;

  background: linear-gradient(90deg,#6CF2C2,#8AA9FF);
  opacity: 0.85;

  transition: all 0.3s ease;
}

/* Texto mobile */
.testimonial-handle::after {
  content: "";
}

@media (max-width: 768px) {

  .testimonial-handle {
    width: 100px;
    height: 4px;
  }

}


/* =============================================
   CARD GLASS
============================================= */

.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  overflow: hidden;

  background: rgba(15,20,32,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.06);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,242,194,0.3);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.45),
    0 0 50px rgba(108,242,194,0.12);
}

/* =============================================
   INTERNAL BADGE
============================================= */

.testimonial-card--internal {
  padding-top: 3.8rem;
}

.testimonial-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;

  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;

  background: linear-gradient(90deg,#6CF2C2,#8AA9FF);
  color: #000;
}

/* =============================================
   IN-HOUSE TECH TAG
============================================= */

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  padding: 0.3rem 0.6rem;
  border-radius: 999px;

  background: rgba(108,242,194,0.08);
  border: 1px solid rgba(108,242,194,0.25);
  color: #6CF2C2;

  backdrop-filter: blur(8px);
}

.testimonial-tag i {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}


/* =============================================
   HEADER + LOGO CAPSULE
============================================= */

.testimonial-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
}

.testimonial-logo-wrap {
  position: relative;

  padding: 0.8rem 1.2rem;
  border-radius: 16px;

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

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.4),
    0 10px 30px rgba(0,0,0,0.25);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* L�nea energ�tica */
.testimonial-logo-wrap::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -6px;
  height: 2px;

  background: linear-gradient(90deg,#6CF2C2,#8AA9FF);
  opacity: 0.4;
  border-radius: 2px;

  transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-logo {
  height: 34px;
  display: block;
  filter: brightness(1.4);
  transition: transform 0.4s ease;
}

.testimonial-logo-wrap a {
  display: inline-flex;
}

.testimonial-logo-wrap a:hover {
  transform: scale(1.04);
}


.testimonial-card:hover .testimonial-logo-wrap {
  transform: translateY(-4px);
  border-color: rgba(108,242,194,0.35);
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.4),
    0 20px 50px rgba(0,0,0,0.4),
    0 0 40px rgba(108,242,194,0.15);
}

.testimonial-card:hover .testimonial-logo-wrap::after {
  opacity: 1;
  transform: scaleX(1.1);
}

.testimonial-card:hover .testimonial-logo {
  transform: scale(1.08);
}

.testimonial-sector {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Wrapper derecho del header: sector + hint apilados */
.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

/* =============================================
   TESTIMONIAL MOCKUP IMAGE
============================================= */

.testimonial-mockup {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.testimonial-mockup img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-mockup img {
  transform: scale(1.03);
}

/* Variante brand: cuando no hay mockup de UI, mostramos el logo grande sobre fondo sutil */
.testimonial-mockup--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  background:
    radial-gradient(circle at 50% 50%, rgba(108,242,194,0.08), transparent 65%),
    linear-gradient(135deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.05);
}

.testimonial-mockup--brand img {
  width: auto;
  height: 140px;
  max-width: 70%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-mockup--brand img {
  transform: scale(1.05);
}


/* =============================================
   TEXT
============================================= */

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: rgba(255,255,255,0.85);
}

/* =============================================
   AUTHOR
============================================= */

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* =============================================
   TESTIMONIAL TYPE CHIP — App Web vs Sitio Web
   Refuerza jerarquía: apps con accent (premium),
   sites con tono neutro (entry product).
============================================= */
.testimonial-card { position: relative; }

.testimonial-type {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.testimonial-type[data-type="app"] {
  background: rgba(108,242,194,0.12);
  color: var(--color-accent);
  border: 1px solid rgba(108,242,194,0.28);
  box-shadow: 0 4px 12px rgba(108,242,194,0.1);
}

.testimonial-type[data-type="site"] {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.14);
}

@media (max-width: 640px) {
  .testimonial-type {
    top: 1rem;
    right: 1rem;
    font-size: 0.58rem;
    padding: 0.25rem 0.55rem;
  }
}

/* Iniciales para autores sin foto */
.testimonial-author__initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(108,242,194,0.18), rgba(108,242,194,0.05));
  border: 1px solid rgba(108,242,194,0.25);
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}



/* =============================================
   VIDEO LOADER � Ultra Tech
============================================= */

.testimonial-video {
  position: relative;
}

.video-loader {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  background: radial-gradient(
    circle at center,
    rgba(10,10,14,0.9),
    rgba(10,10,14,0.95)
  );

  z-index: 5;
  transition: opacity 0.3s ease;
}

.video-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Ring animado */

.video-loader__ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  border: 2px solid rgba(108,242,194,0.15);
  border-top: 2px solid #6CF2C2;

  animation: techSpin 1s linear infinite;

  box-shadow:
    0 0 20px rgba(108,242,194,0.4),
    0 0 40px rgba(108,242,194,0.15);
}

.video-loader__text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

@keyframes techSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}







/* ─── FAQ BLOCK ─────────────────────────────────────────────────────────── */

.faq-block {
  padding: 6rem 0;
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(245,245,245,0.08);
  border-radius: 12px;
  background: var(--color-bg-soft);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(108,242,194,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.faq-question i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ─── PROCESS BLOCK ──────────────────────────────────────────────────────── */

.process-block {
  padding: 6rem 0;
}

.process-intro {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid rgba(245,245,245,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(245,245,245,0.06);
  background: var(--color-bg-soft);
  transition: background 0.2s;
}

.process-step:last-child { border-bottom: none; }
.process-step:hover { background: rgba(108,242,194,0.04); }

.process-step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(108,242,194,0.12);
  border: 1px solid rgba(108,242,194,0.3);
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.process-step__body strong {
  color: var(--color-text);
  font-size: 0.95rem;
}

.process-step__body span {
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

/* En desktop el wrapper interno no hace nada; en mobile se transforma en track */
.process-timeline__track {
  display: contents;
}

.timeline-item {
  background: var(--color-bg-soft);
  border: 1px solid rgba(245,245,245,0.08);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.timeline-day {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.timeline-item p {
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* ============================================= */
/* MOBILE — Carrusel tipo ticker (stock-style)   */
/* ============================================= */
@media (max-width: 768px) {
  .process-timeline {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
    margin: 0 -1.25rem; /* edge-to-edge contra el container del section */
    /* Fade en bordes para que items aparezcan/desaparezcan suavemente */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 7%,
      #000 93%,
      transparent 100%
    );
            mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 7%,
      #000 93%,
      transparent 100%
    );
  }

  .process-timeline__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    width: max-content;
    animation: ticker-scroll 55s linear infinite;
    will-change: transform;
  }

  .process-timeline .timeline-item {
    flex: 0 0 auto;
    width: 280px;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Pausa al interactuar (touch/hover) — accesibilidad */
  .process-timeline:hover .process-timeline__track,
  .process-timeline:focus-within .process-timeline__track,
  .process-timeline.is-paused .process-timeline__track {
    animation-play-state: paused;
  }

  @keyframes ticker-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
  }

  /* Respeta prefers-reduced-motion: cae a scroll horizontal manual */
  @media (prefers-reduced-motion: reduce) {
    .process-timeline {
      overflow-x: auto;
      -webkit-mask-image: none;
              mask-image: none;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .process-timeline__track {
      animation: none;
      width: max-content;
    }
    .process-timeline .timeline-item {
      scroll-snap-align: center;
    }
  }
}


/* ─── PRICING BLOCK ──────────────────────────────────────────────────────── */

.pricing-block {
  padding: 6rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ─── PRICING CATEGORY TABS (Apps vs Sitios Web) ─── */
.pricing-category-tabs {
  display: inline-flex;
  gap: 0.4rem;
  margin: 2.5rem auto 0;
  padding: 0.4rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  position: relative;
  z-index: 2;
}

.pricing-block .container--narrow {
  text-align: center;
}

.pricing-block .pricing-grid,
.pricing-block .pricing-footer-note,
.pricing-block .pricing-category {
  text-align: left;
}

.pricing-category-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.3s ease, color 0.3s ease;
  min-height: 44px;
}

.pricing-category-tab i,
.pricing-category-tab svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

.pricing-category-tab__hint {
  font-size: 0.72rem;
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
  margin-left: 0.4rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.pricing-category-tab:hover {
  color: var(--color-text);
}

.pricing-category-tab.is-active {
  background: var(--color-accent);
  color: #08110E;
  box-shadow:
    0 4px 14px rgba(108,242,194,0.35),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.pricing-category-tab.is-active .pricing-category-tab__hint {
  opacity: 0.85;
  border-left-color: rgba(8,17,14,0.2);
}

@media (max-width: 640px) {
  .pricing-category-tabs {
    display: flex;
    width: 100%;
    margin-top: 1.75rem;
  }
  .pricing-category-tab {
    flex: 1;
    justify-content: center;
    padding: 0.7rem 0.5rem;
    font-size: 0.85rem;
  }
  .pricing-category-tab__hint {
    display: none; /* en móvil ocultamos el hint para no apretar el chip */
  }
}

/* Categoría oculta vía atributo [hidden] (estándar HTML5) */
.pricing-category[hidden] {
  display: none !important;
}

/* ─── PRICING CATEGORY EYEBROW ─── */
/* Línea editorial que ancla la narrativa por categoría: refuerza
   el posicionamiento ("producto" vs "presencia") sin diluir la marca. */
.pricing-category-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  opacity: 0.95;
}

.pricing-category-eyebrow__rule {
  display: inline-block;
  height: 1px;
  width: 32px;
  background: linear-gradient(90deg, transparent, rgba(108,242,194,0.5));
}

.pricing-category-eyebrow__rule:last-child {
  background: linear-gradient(90deg, rgba(108,242,194,0.5), transparent);
}

@media (max-width: 640px) {
  .pricing-category-eyebrow {
    font-size: 0.68rem;
    margin: 1.5rem 0 0.25rem;
    gap: 0.6rem;
  }
  .pricing-category-eyebrow__rule {
    width: 20px;
  }
}

/* ─── PRICING SWITCHER (mobile-only segmented control) ─── */

.pricing-switcher {
  display: none;
}

@media (max-width: 768px) {
  .pricing-switcher {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.3rem;
    margin: 2rem 0 1.25rem;
    padding: 0.35rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 999px;
    position: sticky;
    top: 90px; /* deja respirar el header glass */
    z-index: 10;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
  }

  .pricing-switcher__btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    padding: 0.6rem 0.25rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
    min-height: 48px;
  }

  .pricing-switcher__name {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .pricing-switcher__price {
    font-size: 0.62rem;
    opacity: 0.7;
    font-variant-numeric: tabular-nums;
  }

  .pricing-switcher__star {
    position: absolute;
    top: 3px;
    right: 6px;
    font-size: 0.5rem;
    color: var(--color-accent);
    opacity: 0.85;
  }

  .pricing-switcher__btn.is-active {
    background: var(--color-accent);
    color: #08110E;
    box-shadow:
      0 4px 14px rgba(108,242,194,0.35),
      inset 0 1px 0 rgba(255,255,255,0.4);
  }

  .pricing-switcher__btn.is-active .pricing-switcher__price {
    opacity: 0.85;
  }

  .pricing-switcher__btn.is-active .pricing-switcher__star {
    color: #08110E;
    opacity: 1;
  }

  /* ─── Mobile: solo una tarjeta visible ─── */
  .pricing-grid {
    margin-top: 0.5rem;
    position: relative;
  }

  .pricing-grid .pricing-card {
    display: none;
    animation: pricingFadeIn 0.35s ease-out;
  }

  .pricing-grid .pricing-card.is-active {
    display: flex;
  }

  @keyframes pricingFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* En mobile el badge de "Más elegido" es redundante con la ★ del switcher */
  .pricing-card__badge {
    display: none;
  }

  /* Featured no necesita scale ni el background tinted: ya está destacado vía switcher */
  .pricing-grid .pricing-card--featured.is-active {
    background: var(--color-bg-soft);
    border-color: rgba(108,242,194,0.35);
    transform: none;
    box-shadow:
      0 0 0 1px rgba(108,242,194,0.15),
      0 12px 32px rgba(0,0,0,0.4);
  }
}

.pricing-card {
  position: relative;
  background: var(--color-bg-soft);
  border: 1px solid rgba(245,245,245,0.08);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(108,242,194,0.2);
}

.pricing-card--featured {
  border-color: rgba(108,242,194,0.55);
  background: rgba(108,242,194,0.06);
  transform: scale(1.025);
  box-shadow:
    0 0 0 1px rgba(108,242,194,0.2),
    0 20px 60px rgba(108,242,194,0.15),
    0 4px 20px rgba(0,0,0,0.4);
  z-index: 1;
}

@media (max-width: 900px) {
  .pricing-card--featured {
    transform: none;
  }
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6CF2C2, #4ee8aa);
  color: #0E0E10;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(108,242,194,0.4);
}

.pricing-tier {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-main);
}

.pricing-desc {
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0.5rem 0 0;
}

.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1rem;
}

.pricing-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-main);
  line-height: 1;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.pricing-plazo {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-muted);
  background: rgba(245,245,245,0.05);
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.pricing-features li i {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  margin-top: 1px;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(108,242,194,0.1);
  border: 1px solid rgba(108,242,194,0.3);
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.pricing-cta:hover {
  background: rgba(108,242,194,0.18);
  border-color: rgba(108,242,194,0.6);
}

.pricing-card--featured .pricing-cta {
  background: var(--color-accent);
  color: #0E0E10;
  border-color: var(--color-accent);
}

.pricing-card--featured .pricing-cta:hover {
  background: #4ee8aa;
}

.pricing-footer-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 1rem 1.5rem;
  background: rgba(108,242,194,0.04);
  border: 1px solid rgba(108,242,194,0.15);
  border-radius: 10px;
}

/* Caso de estudio link in testimonial cards */
.testimonial-caso-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-accent, #6CF2C2);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.testimonial-caso-link:hover {
  opacity: 1;
}

/* ============================================= */
/* ECOSYSTEM BAND — Avales institucionales      */
/* ============================================= */
.ecosystem-band {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
}

.ecosystem-band__eyebrow {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 1.75rem;
  opacity: 0.85;
}

.ecosystem-band__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.ecosystem-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ecosystem-logo:hover,
.ecosystem-logo:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.ecosystem-logo img {
  height: 68px;
  width: auto;
  max-width: 260px;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.ecosystem-logo__caption {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  text-transform: uppercase;
}

/* Dots — hidden by default, visible only on mobile carousel */
.ecosystem-band__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.ecosystem-band__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.ecosystem-band__dots span.is-active {
  background: var(--color-accent);
  width: 22px;
  border-radius: 3px;
}

@media (max-width: 640px) {
  .ecosystem-band { padding: 2.5rem 0 1.75rem; }

  /* Carousel container — full bleed scroll area */
  .ecosystem-band__carousel {
    position: relative;
    margin: 0 -1.25rem;  /* edge-to-edge against container padding */
  }

  .ecosystem-band__logos {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    gap: 0;
    padding: 0.5rem 1.25rem;
  }

  .ecosystem-band__logos::-webkit-scrollbar { display: none; }

  .ecosystem-logo {
    flex: 0 0 calc(100% - 3.5rem); /* peek del siguiente logo */
    scroll-snap-align: center;
    scroll-snap-stop: always;
    padding: 0.5rem 0.25rem;
    opacity: 1; /* en mobile no atenuamos: queremos verlos */
  }

  .ecosystem-logo img { height: 56px; max-width: 80%; }
  .ecosystem-logo__caption { font-size: 0.68rem; }

  .ecosystem-band__dots { display: flex; }
}

/* ============================================= */
/* FOOTER ECOSYSTEM — fila persistente           */
/* ============================================= */
.footer-ecosystem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2.25rem 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-ecosystem__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: 0.75;
}

.footer-ecosystem__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  flex-wrap: wrap;
}

.footer-ecosystem__logos a {
  opacity: 0.78;
  transition: opacity 0.25s ease;
}

.footer-ecosystem__logos a:hover,
.footer-ecosystem__logos a:focus-visible {
  opacity: 1;
}

.footer-ecosystem__logos img {
  height: 44px;
  width: auto;
  max-width: 180px;
  filter: brightness(0) invert(1);
  display: block;
}

@media (max-width: 640px) {
  .footer-ecosystem__logos { gap: 1.75rem; }
  .footer-ecosystem__logos img { height: 34px; }
}

/* =============================================
   FLOATING WHATSAPP FAB — Global (index, blog, casos, equipo)
============================================= */
.fab-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 14px 36px rgba(37,211,102,0.45);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s;
}
.fab-wa:hover { transform: scale(1.08) translateY(-3px); }
.fab-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: fab-pulse 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes fab-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 640px) {
  .fab-wa { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

/* =============================================
   DECISION BLOCK — "Sitio web o app web"
   Sección B2B de pre-qualificación (entre Proceso
   y Precios). Reduce leads no calificados, captura
   queries comerciales tipo "vs" / "qué necesito".
============================================= */
.decision-block {
  padding: 6rem 0 5rem;
  background:
    radial-gradient(circle at 0% 50%, rgba(108,242,194,0.04), transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(138,169,255,0.03), transparent 50%);
}

.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.decision-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.75rem;
  background: var(--color-bg-soft);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.decision-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

/* Apps card es el "premium hero" — borde verde sutil + shadow */
.decision-card--featured {
  border-color: rgba(108,242,194,0.32);
  background: linear-gradient(
    180deg,
    rgba(108,242,194,0.04) 0%,
    var(--color-bg-soft) 100%
  );
  box-shadow:
    0 0 0 1px rgba(108,242,194,0.08),
    0 20px 60px rgba(108,242,194,0.06);
}

.decision-card--featured:hover {
  border-color: rgba(108,242,194,0.48);
  box-shadow:
    0 0 0 1px rgba(108,242,194,0.15),
    0 24px 70px rgba(108,242,194,0.12);
}

/* Header */
.decision-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.decision-card__chip {
  align-self: flex-start;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.14);
}

.decision-card__chip--accent {
  background: rgba(108,242,194,0.14);
  color: var(--color-accent);
  border-color: rgba(108,242,194,0.32);
  box-shadow: 0 4px 12px rgba(108,242,194,0.12);
}

.decision-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
  margin: 0.2rem 0 0;
  letter-spacing: -0.01em;
}

.decision-card__lede {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Lista de "Para ti si…" */
.decision-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.decision-card__list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

.decision-card__list strong {
  color: var(--color-text);
  font-weight: 600;
}

.decision-bullet {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

.decision-card--featured .decision-bullet {
  background: rgba(108,242,194,0.15);
  color: var(--color-accent);
}

/* Footer con precio + CTA */
.decision-card__foot {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.decision-card__price {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}

.decision-card__price strong {
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin-right: 0.15rem;
}

.decision-card--featured .decision-card__price strong {
  color: var(--color-accent);
}

.decision-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.decision-card__cta i,
.decision-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.decision-card__cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.decision-card__cta:hover i,
.decision-card__cta:hover svg {
  transform: translateX(3px);
}

.decision-card__cta--accent {
  background: var(--color-accent);
  color: #08110E;
  border-color: var(--color-accent);
  box-shadow: 0 8px 22px rgba(108,242,194,0.22);
}

.decision-card__cta--accent:hover {
  background: #4ee8aa;
  border-color: #4ee8aa;
  box-shadow: 0 10px 28px rgba(108,242,194,0.34);
}

/* Footnote */
.decision-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 2.5rem auto 0;
  padding: 1.1rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  background: rgba(108,242,194,0.03);
  border: 1px solid rgba(108,242,194,0.12);
  border-radius: 12px;
  max-width: 720px;
  line-height: 1.5;
  flex-wrap: wrap;
}

.decision-footnote i,
.decision-footnote svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.decision-footnote a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(108,242,194,0.4);
  transition: border-color 0.25s ease;
}

.decision-footnote a:hover {
  border-bottom-color: var(--color-accent);
}

/* Responsive — mobile stack vertical */
@media (max-width: 768px) {
  .decision-block { padding: 4.5rem 0 3.5rem; }
  .decision-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .decision-card {
    padding: 1.75rem 1.5rem;
  }
  .decision-card__title { font-size: 1.25rem; }
  .decision-card__list li { font-size: 0.88rem; }
  .decision-footnote {
    font-size: 0.85rem;
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 0.4rem;
  }
}

/* =============================================
   SKIP-TO-CONTENT — Accesibilidad WCAG 2.4.1
   Invisible hasta que recibe focus por teclado.
============================================= */
.skip-to-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0.85rem 1.25rem;
  background: var(--color-accent);
  color: #08110E;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transform: translateY(-110%);
  transition: transform 0.18s ease;
}

.skip-to-content:focus {
  transform: translateY(0);
  outline: 2px solid #08110E;
  outline-offset: 2px;
}

/* Focus visible global — WCAG 2.4.7 */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Remueve outline en mouse pero conserva para teclado (best practice 2024+) */
:focus:not(:focus-visible) {
  outline: none;
}
