:root {
  color-scheme: dark;
}

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

body {
  overflow-x: clip;
}

#pageContent {
  min-width: 0;
}

/* Tipografía fluida reutilizable (landing) */
.landing-hero-title {
  font-size: clamp(1.875rem, 0.5rem + 5.5vw, 3.375rem);
  line-height: 1.05;
}

.landing-section-title {
  font-size: clamp(1.5rem, 0.65rem + 3.2vw, 2.625rem);
  line-height: 1.12;
}

.landing-cta-title {
  font-size: clamp(1.625rem, 0.55rem + 4.5vw, 3.375rem);
  line-height: 1.08;
}

.landing-hero-sub {
  font-size: clamp(1rem, 0.35rem + 1.8vw, 1.25rem);
  line-height: 1.55;
}

.landing-stat {
  font-size: clamp(1.75rem, 1rem + 4vw, 2.5rem);
  line-height: 1.1;
}

.landing-cta-sub {
  font-size: clamp(1.05rem, 0.35rem + 1.5vw, 1.375rem);
  line-height: 1.55;
}

/* Modal background blur for “pro” focus */
body.modal-blur #pageContent {
  filter: blur(7px);
  transition: filter 220ms ease;
}
body.modal-blur #pageContent {
  pointer-events: none;
  user-select: none;
}

/* Utils */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Reusable atoms */
.nav-link {
  border-radius: 0.75rem;
  padding: 0.25rem 0.5rem;
}
.nav-link:hover {
  color: #fff;
}
.nav-link:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.25);
}

.mobile-link {
  border-radius: 0.75rem;
  padding: 0.65rem 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}
.mobile-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  #mobileMenu.mobile-menu-tablet {
    display: none !important;
  }

  #pageContent {
    padding-top: 65px;
  }
}

body.mnav-open {
  overflow: hidden;
}

/* Nav móvil <768px (desktop/tablet ≥768 sin cambios) */
.mnav-bar,
.mnav-panel {
  display: none;
}

@media (max-width: 767px) {
  .mnav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 8, 15, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .mnav-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
    color: inherit;
  }

  .mnav-brand-row1 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
  }

  .mnav-brand-automate {
    color: #fff;
  }

  .mnav-brand-ai {
    color: #4d9fff;
  }

  .mnav-brand-row2 {
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
  }

  .mnav-bar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mnav-bar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: none;
    border-radius: 100px;
    background: #4d9fff;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.2s ease;
  }

  .mnav-bar-cta:hover {
    filter: brightness(1.08);
  }

  .mnav-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 8px;
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .mnav-burger:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .mnav-burger-line {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: #fff;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .mnav-burger.active .mnav-burger-line:nth-child(1) {
    transform: rotate(45deg) translateY(6.5px);
  }

  .mnav-burger.active .mnav-burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mnav-burger.active .mnav-burger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-6.5px);
  }

  .mnav-panel {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 40px;
    overflow-y: auto;
    background: rgba(7, 8, 15, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .mnav-panel.mnav-panel--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mnav-panel-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }

  .mnav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 12px;
    border: 0.5px solid transparent;
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .mnav-link:hover,
  .mnav-link:active {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .mnav-link-ico {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.2);
  }

  .mnav-link--cta {
    background: rgba(77, 159, 255, 0.08);
    border-color: rgba(77, 159, 255, 0.2);
    color: #4d9fff;
    font-weight: 600;
  }

  .mnav-link--cta:hover,
  .mnav-link--cta:active {
    background: rgba(77, 159, 255, 0.12);
    border-color: rgba(77, 159, 255, 0.28);
    color: #4d9fff;
  }

  .mnav-link-ico--cta {
    color: #4d9fff;
  }

  .mnav-sep {
    width: 100%;
    height: 0.5px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.06);
    border: none;
  }

  .mnav-panel-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  }

  .mnav-foot-email,
  .mnav-foot-phone {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mnav-panel,
  .mnav-burger-line {
    transition-duration: 0.01ms !important;
  }
}

.hero-btn-primary {
  border-radius: 1rem;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  padding: 1rem 1.5rem;
  font-weight: 900;
  box-shadow: 0 18px 60px rgba(59, 130, 246, 0.35);
  transition: filter 150ms ease, transform 150ms ease;
}
.hero-btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.hero-btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.28), 0 18px 60px rgba(59, 130, 246, 0.35);
}

.hero-btn-secondary {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 1rem 1.5rem;
  font-weight: 900;
  transition: background 150ms ease;
}
.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
.hero-btn-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.pain-card,
.pillar-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.pain-icon,
.pillar-icon {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}
.pain-title,
.pillar-title {
  margin-top: 0.9rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
}
.pain-desc,
.pillar-desc {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Sección #problema — cards, iconos y dato (solo esta sección) */
#problema .pain-card {
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

#problema .pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 159, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

#problema .pain-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 0.5px solid rgba(77, 159, 255, 0.2);
  background: rgba(77, 159, 255, 0.1);
  color: #4d9fff;
}

#problema .pain-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #4d9fff;
}

#problema .pain-title {
  margin-top: 0;
}

#problema .pain-fact {
  background: rgba(77, 159, 255, 0.06);
  border: 0.5px solid rgba(77, 159, 255, 0.15);
  border-radius: 16px;
}

#problema .pain-fact__label {
  color: #4d9fff;
}

#problema .pain-fact__text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  #problema .pain-card {
    transition: none;
  }

  #problema .pain-card:hover {
    transform: none;
  }
}

.badge-guarantee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}

/* Testimonios — cards con vídeo placeholder */
.testi-shell {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 767px) {
  .testi-shell {
    padding: 0;
  }
}

/* Testimonios — carrusel (cards verticales) */
.testi-pad {
  padding: 0 48px;
}

@media (max-width: 767px) {
  .testi-pad {
    padding: 0 24px;
  }
}

.testi-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 48px;
  margin-top: 2.5rem;
}

.testi-carousel-viewport {
  overflow: hidden;
}

.testi-carousel-track {
  display: flex;
  width: fit-content;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1);
  will-change: transform;
}

@media (max-width: 1023px) {
  .testi-carousel {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .testi-carousel {
    padding: 0 24px;
  }
}

.testi-carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.testi-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.testi-carousel-btn--prev {
  left: 0;
}
.testi-carousel-btn--next {
  right: 0;
}

.testi-carousel-dots {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testi-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.testi-carousel-dot.is-active {
  width: 20px;
  border-radius: 3px;
  background: #4d9fff;
}

@media (prefers-reduced-motion: reduce) {
  .testi-carousel-track {
    transition-duration: 0.01ms;
  }
}

/* Cards verticales en carrusel */
.testi-card {
  width: calc((100vw - 196px) / 3);
  max-width: 340px;
  min-width: 280px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

@media (max-width: 1023px) {
  .testi-card {
    width: calc((100vw - 160px) / 2);
  }
}

@media (max-width: 767px) {
  .testi-card {
    width: calc(100vw - 80px);
  }
}

.testi-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-card__video-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--testi-color) 12%, transparent) 0%, rgba(0, 0, 0, 0.5) 100%);
}

@supports not (color: color-mix(in srgb, white, black)) {
  .testi-card__video-ph {
    background: linear-gradient(135deg, rgba(77, 159, 255, 0.12) 0%, rgba(0, 0, 0, 0.5) 100%);
  }
}

.testi-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.testi-play:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

.testi-play__svg {
  width: 18px;
  height: 18px;
}

.testi-card__video-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.testi-card__tag-sector {
  position: absolute;
  top: 12px;
  left: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.5);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.testi-card__result {
  position: absolute;
  top: 12px;
  right: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.5);
  border: 0.5px solid color-mix(in srgb, var(--testi-color) 40%, transparent);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--testi-color);
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.testi-card__body {
  padding: 22px 20px;
}

.testi-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.testi-card__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--testi-color) 15%, transparent);
  border: 0.5px solid color-mix(in srgb, var(--testi-color) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.testi-card__biz {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}

.testi-card__owner {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.testi-card__city {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  gap: 3px;
  align-items: center;
  margin: 6px 0 0;
}

.testi-card__pin {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
}

.testi-card__sep {
  width: 100%;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}

.testi-card__qopen {
  font-size: 28px;
  line-height: 0.8;
  color: var(--testi-color);
  opacity: 0.4;
  font-family: Georgia, "Times New Roman", serif;
  display: block;
  margin-bottom: 6px;
}

.testi-card__review {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 14px;
}

.testi-stars {
  font-size: 12px;
  color: #ffb347;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.05);
  gap: 10px;
}

.testi-card__service {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.testi-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.testi-verified__ico {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.testi-verified--google {
  color: #00d4aa;
}


.testi-card {
  --testi-color: #4d9fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.testi-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}

.testi-card__tag-sector {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.testi-card__tag-ico {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: #fff;
}

.testi-card__result {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 100px;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 800;
  color: var(--testi-color);
}

.testi-card__video-ph {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(77, 159, 255, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.testi-play {
  display: flex;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.testi-play:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

.testi-play__svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.testi-card__video-hint {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.testi-card__body {
  padding: 24px;
}

.testi-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.testi-card__logo {
  display: flex;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 0.5px solid color-mix(in srgb, var(--testi-color) 30%, transparent);
  background: color-mix(in srgb, var(--testi-color) 15%, transparent);
  color: var(--testi-color);
}

@supports not (color: color-mix(in srgb, white, black)) {
  .testi-card__logo {
    border-color: var(--testi-color);
    background: rgba(255, 255, 255, 0.06);
  }
}

.testi-card__logo-svg {
  width: 22px;
  height: 22px;
}

.testi-card__biz {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.testi-card__owner {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.testi-card__city {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.testi-card__pin {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
}

.testi-card__sep {
  width: 100%;
  height: 0.5px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.testi-card__qopen {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 0.8;
  color: var(--testi-color);
  opacity: 0.4;
}

.testi-card__review {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testi-star {
  width: 14px;
  height: 14px;
}

.testi-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.05);
}

.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.testi-verified__ico {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.testi-card__date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

.testi-note-outer {
  margin-top: 48px;
  text-align: center;
}

.testi-note {
  display: inline-block;
  padding: 24px 32px;
  border-radius: 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.testi-note__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
}

.testi-note__strong {
  margin: 0.75rem 0 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.testi-note__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 0.5px solid rgba(77, 159, 255, 0.25);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #4d9fff;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.testi-note__btn:hover {
  background: rgba(77, 159, 255, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .testi-card:hover {
    transform: none;
  }

  .testi-play:hover {
    transform: none;
  }
}

/* Comparativa — tabla 4 columnas (oculta en todas las vistas, se usan las cards) */
.comp-table-wrap {
  display: none !important;
}

.comp-table {
  min-width: 42rem;
  width: 100%;
}

.comp-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 1fr) minmax(9rem, 1.15fr) minmax(10rem, 1.2fr) minmax(9rem, 1.15fr);
}

.comp-row--header {
  border-bottom: none;
}

.comp-row--data {
  font-size: 15px;
}

.comp-td,
.comp-th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.comp-td:not(:last-child),
.comp-th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.comp-td {
  padding: 16px 24px;
  word-break: break-word;
  hyphens: auto;
}

.comp-td--label {
  background: rgba(15, 23, 42, 0.55);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.comp-td--agencias,
.comp-td--freelance {
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.comp-td--automate {
  background: rgba(59, 130, 246, 0.14);
  color: #fff;
  font-weight: 800;
}

.comp-td--automate-accent {
  background: rgba(59, 130, 246, 0.14);
  color: #00d4aa;
  font-weight: 800;
  white-space: nowrap;
}

.comp-th {
  padding: 16px 24px;
}

.comp-th--label {
  background: rgba(15, 23, 42, 0.55);
}

.comp-row--header .comp-th--label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comp-th-label-title {
  margin: 0;
  max-width: 11rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

@media (min-width: 640px) {
  .comp-th-label-title {
    font-size: 1.0625rem;
  }
}

.comp-th--agencias,
.comp-th--freelance {
  background: rgba(0, 0, 0, 0.28);
}

.comp-th--automate {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.22) 0%, rgba(59, 130, 246, 0.12) 100%);
}

.comp-row--data.comp-row--garantia .comp-td--label {
  font-weight: 800;
}

.comp-th-label-logo {
  display: block;
  max-height: 48px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* Comparativa — cards (todas las vistas) */
.comp-mobile-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 2.5rem;
}

/* Desktop/tablet: centrado; desktop: 3 columnas */
@media (min-width: 768px) {
  .comp-mobile-cards {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .comp-mobile-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }
}

/* Desktop: mantener mismo alto que Automate, pero sin sensación de vacío */
@media (min-width: 1024px) {
  .comp-mcard--rival {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  /* Deja el contenido arriba y un “relleno” visual abajo */
  .comp-mcard--rival::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58%;
    pointer-events: none;
    background:
      radial-gradient(1200px 220px at 20% 100%, rgba(77, 159, 255, 0.06), transparent 60%),
      radial-gradient(900px 180px at 80% 100%, rgba(255, 255, 255, 0.04), transparent 65%),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
    opacity: 0.9;
  }

  .comp-mcard--rival > * {
    position: relative;
    z-index: 1;
  }

  .comp-mcard-rival-list {
    margin-top: 8px;
  }
}

/* Estilos de cards comparativa (antes solo móvil) */
.comp-mcard--automate {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(77, 159, 255, 0.3);
    background: rgba(77, 159, 255, 0.08);
}

.comp-mcard-automate-ribbon {
    margin: -24px -24px 20px -24px;
    padding: 10px 24px;
    border-radius: 20px 20px 0 0;
    background: #4d9fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.comp-mcard-automate-title {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.comp-mcard-automate-sub {
    margin: 0 0 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.comp-mcard-automate-rows {
    display: flex;
    flex-direction: column;
}

.comp-mcard-automate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.comp-mcard-automate-row--last {
    border-bottom: none;
}

.comp-mcard-automate-k {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.comp-mcard-automate-v {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-align: right;
}

.comp-mcard-automate-v--accent {
    color: #00d4aa;
}

.comp-mcard--rival {
    padding: 20px;
    border-radius: 16px;
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.comp-mcard-rival-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.comp-mcard-rival-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.comp-mcard-rival-tag {
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    white-space: nowrap;
}

.comp-mcard-rival-tag--bad {
    border: 0.5px solid rgba(255, 107, 107, 0.2);
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.comp-mcard-rival-tag--warn {
    border: 0.5px solid rgba(255, 179, 71, 0.2);
    background: rgba(255, 179, 71, 0.1);
    color: #ffb347;
}

.comp-mcard-rival-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comp-mcard-rival-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.comp-mcard-rival-item:last-child {
    margin-bottom: 0;
}

.comp-mcard-rival-x {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

@media (max-width: 767px) {
  /* (sin cambios específicos extra de móvil por ahora) */
}

/* Sector carousel + flip cards */
.sector-carousel {
  width: 100%;
  padding: 0;
}

.sector-carousel-shell {
  position: relative;
  width: 100%;
  overflow: visible;
}

/* Contenedor del carrusel: ancho del área visible; %/cqi de las cards referencian esto */
.sector-carousel-viewport {
  container-type: inline-size;
  container-name: sector-carousel;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.sector-carousel-track {
  display: flex;
  width: fit-content;
  gap: 24px;
  padding: 20px 0;
  transition: transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .sector-carousel-track {
    transition-duration: 0.01ms;
  }
}

/* 3 columnas: 100% del viewport − 2×24px de gap, /3. cqi = inline size del viewport */
.sector-carousel-track .sector-flip-wrap {
  flex-shrink: 0;
  width: calc((100cqi - 48px) / 3);
  max-width: none;
}

@media (max-width: 767px) {
  .sector-carousel-track .sector-flip-wrap {
    width: calc(100cqi - 48px);
  }
}

.sector-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sector-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.sector-carousel-btn--prev {
  left: -20px;
  right: auto;
  transform: translateY(-50%);
}

.sector-carousel-btn--next {
  right: -20px;
  left: auto;
  transform: translateY(-50%);
}

.sector-carousel-btn--prev:hover,
.sector-carousel-btn--next:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 767px) {
  .sector-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .sector-carousel-btn--prev {
    left: 8px;
  }
  .sector-carousel-btn--next {
    right: 8px;
  }
}

.sector-carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.sector-carousel-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
}

.sector-carousel-dot.is-active {
  width: 24px;
  border-radius: 3px;
  background: #4d9fff;
}

.sector-flip-wrap {
  width: 100%;
  perspective: 1000px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.sector-flip-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  transform-style: preserve-3d;
  border-radius: 1rem;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .sector-flip-wrap:hover .sector-flip-inner {
    transform: rotateY(180deg);
  }
}

.sector-flip-wrap.is-flipped .sector-flip-inner {
  transform: rotateY(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .sector-flip-inner {
    transition-duration: 0.01ms;
  }
}

.sector-flip-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.sector-flip-face--front {
  background-color: #07080f;
  background-image: var(--sector-bg);
  background-size: cover;
  background-position: center;
}

.sector-flip-front-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(7, 8, 15, 0.2) 0%, rgba(7, 8, 15, 0.85) 100%);
  pointer-events: none;
}

.sector-flip-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 100px;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.sector-flip-front-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 28px;
}

.sector-flip-icon {
  display: inline-flex;
  margin-bottom: 8px;
  line-height: 0;
  color: #fff;
}
.sector-flip-icon svg {
  width: 32px;
  height: 32px;
}
.sector-flip-icon--inline {
  margin-bottom: 0;
  flex-shrink: 0;
  align-self: flex-start;
}
.sector-flip-back-head .sector-flip-icon--inline svg {
  width: 22px;
  height: 22px;
}

.sector-flip-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.sector-flip-hint {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.sector-flip-face--back {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 28px;
  background: linear-gradient(135deg, #0d1117 0%, #1a1f2e 100%);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  transform: rotateY(180deg);
}

.sector-flip-back-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.sector-flip-back-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.sector-flip-label {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sector-flip-label--problem {
  color: #ff6b6b;
}

.sector-flip-label--solution {
  color: #4d9fff;
}

.sector-flip-label--result {
  color: #7c6fff;
}

.sector-flip-text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.sector-flip-text--result {
  margin-bottom: 0;
  font-weight: 600;
  color: #fff;
}

.sector-flip-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, #5aa8ff 0%, #4d9fff 45%, #3d8eef 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(77, 159, 255, 0.35);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sector-flip-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(77, 159, 255, 0.45);
}

/* Clicks: cara visible recibe eventos (hover desktop vs flip táctil) */
@media (hover: none), (pointer: coarse) {
  .sector-flip-wrap:not(.is-flipped) .sector-flip-face--back {
    pointer-events: none;
  }
  .sector-flip-wrap.is-flipped .sector-flip-face--front {
    pointer-events: none;
  }
  .sector-flip-wrap.is-flipped .sector-flip-face--back {
    pointer-events: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .sector-flip-wrap:not(:hover) .sector-flip-face--back {
    pointer-events: none;
  }
  .sector-flip-wrap:hover .sector-flip-face--front {
    pointer-events: none;
  }
  .sector-flip-wrap:hover .sector-flip-face--back {
    pointer-events: auto;
  }
}

/* Cómo funciona — workflow (Así trabajamos) */
.workflow-shell {
  margin-left: auto;
  margin-right: auto;
}

.workflow-title-accent {
  color: #4d9fff;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 40px;
}

.workflow-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  cursor: default;
  border-radius: 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 28px 24px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.workflow-card__deco {
  position: absolute;
  right: -10px;
  bottom: -20px;
  z-index: 0;
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  color: rgba(77, 159, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.workflow-card > *:not(.workflow-card__deco):not(.workflow-card__accent) {
  position: relative;
  z-index: 1;
}

.workflow-card__accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 2px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #4d9fff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.workflow-card:hover {
  border-color: rgba(77, 159, 255, 0.25);
  background: rgba(77, 159, 255, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.workflow-card:hover .workflow-card__accent {
  opacity: 1;
}

.workflow-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.workflow-card__icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 0.5px solid rgba(77, 159, 255, 0.2);
  background: rgba(77, 159, 255, 0.1);
}

.workflow-card__svg {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.workflow-card__label {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(77, 159, 255, 0.5);
}

.workflow-card__title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: #fff;
}

.workflow-card__desc {
  flex: 1;
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.workflow-card__rule {
  width: 28px;
  height: 1.5px;
  margin-bottom: 16px;
  border-radius: 2px;
  background: rgba(77, 159, 255, 0.3);
}

.workflow-card__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.workflow-card__badge-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {
  .workflow-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -14px;
    z-index: 10;
    font-size: 16px;
    color: rgba(77, 159, 255, 0.25);
    transform: translateY(-50%);
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  .workflow-steps {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }
}

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

.workflow-pill-wrap {
  margin-top: 48px;
  text-align: center;
}

.workflow-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 12px 24px;
  border-radius: 100px;
  border: 0.5px solid rgba(77, 159, 255, 0.15);
  background: rgba(77, 159, 255, 0.05);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.workflow-pill__sep {
  color: rgba(77, 159, 255, 0.3);
}

/* Sobre nosotros (Marc y Pol) */
.about-shell {
  display: grid;
  max-width: 1100px;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  padding: 0 48px;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.about-photo-col {
  position: relative;
}

.about-photo-stack {
  position: relative;
}

.about-photo-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
}

.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 0.5px solid rgba(77, 159, 255, 0.2);
  background: linear-gradient(135deg, rgba(77, 159, 255, 0.15) 0%, rgba(77, 159, 255, 0.05) 100%);
}

.about-photo-placeholder__icon {
  display: block;
  width: 64px;
  height: 64px;
}

.about-photo-placeholder__caption {
  margin: 0;
  font-size: 13px;
  color: rgba(77, 159, 255, 0.4);
}

.about-float {
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 17, 30, 0.95);
}

.about-float--bl {
  bottom: -16px;
  left: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}

.about-float-check {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid rgba(0, 212, 170, 0.2);
  background: rgba(0, 212, 170, 0.1);
}

.about-float-bl-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.about-float-bl-sub {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.about-copy-col {
  min-width: 0;
}

.about-eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4d9fff;
}

.about-title {
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
}

.about-title__main {
  font-weight: 700;
  color: #fff;
}

.about-title__sub {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.about-lede {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.about-lede:last-of-type {
  margin-bottom: 32px;
}

.about-rule {
  width: 48px;
  height: 1.5px;
  margin-bottom: 32px;
  border-radius: 2px;
  background: rgba(77, 159, 255, 0.3);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.about-pill__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(180deg, #5aa8ff 0%, #3d8eef 45%, #2a7fd8 100%);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 36px rgba(77, 159, 255, 0.38), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(77, 159, 255, 0.48), 0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.about-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(77, 159, 255, 0.45), 0 10px 36px rgba(77, 159, 255, 0.38);
}

.about-cta__arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

@media (max-width: 767px) {
  .about-shell {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
}

/* FAQ — rediseño acordeón */
#faq .faq-container {
  box-sizing: border-box;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Recursos gratuitos */
#recursos .recursos-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 48px;
}

@media (max-width: 767px) {
  #recursos .recursos-shell {
    padding: 100px 24px;
  }
}

#recursos .recursos-eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: #4d9fff;
}

#recursos .recursos-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1.15;
}

#recursos .recursos-sub {
  margin: 0 0 64px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

#recursos .recursos-br {
  display: none;
}

@media (max-width: 640px) {
  #recursos .recursos-br {
    display: inline;
  }
}

#recursos .recursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1023px) {
  #recursos .recursos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #recursos .recursos-grid {
    grid-template-columns: 1fr;
  }
}

#recursos .resource-card {
  --resource-color: #4d9fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

#recursos .resource-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(77, 159, 255, 0.18);
}

#recursos .resource-deco {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.08;
  pointer-events: none;
  background: var(--resource-color);
}

#recursos .resource-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--resource-color) 35%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 16px 48px rgba(0,  0,  0, 0.35);
  background: color-mix(in srgb, var(--resource-color) 4%, rgba(255, 255, 255, 0.03));
}

@supports not (color: color-mix(in srgb, white, black)) {
  #recursos .resource-card:hover {
    border-color: rgba(77, 159, 255, 0.35);
    background: rgba(77, 159, 255, 0.04);
  }
}

#recursos .resource-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--resource-color) 10%, transparent);
  border: 0.5px solid color-mix(in srgb, var(--resource-color) 25%, transparent);
  color: var(--resource-color);
}

@supports not (color: color-mix(in srgb, white, black)) {
  #recursos .resource-tag {
    background: rgba(77, 159, 255, 0.1);
    border-color: rgba(77, 159, 255, 0.25);
    color: #4d9fff;
  }
}

#recursos .resource-tag-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#recursos .resource-tag-ico svg {
  display: block;
  width: 14px;
  height: 14px;
}

#recursos .resource-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 212, 170, 0.1);
  border: 0.5px solid rgba(0, 212, 170, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #00d4aa;
  letter-spacing: 1px;
}

#recursos .resource-doc {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--resource-color) 10%, transparent);
  border: 0.5px solid color-mix(in srgb, var(--resource-color) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

#recursos .resource-doc svg {
  width: 22px;
  stroke: var(--resource-color);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#recursos .resource-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

#recursos .resource-desc {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  flex: 1;
}

#recursos .resource-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(77, 159, 255, 0.1);
  border: 0.5px solid rgba(77, 159, 255, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #4d9fff;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: auto;
}

#recursos .resource-btn:hover {
  background: rgba(77, 159, 255, 0.2);
  border-color: rgba(77, 159, 255, 0.5);
}

/* Modal recursos */
.rec-modal {
  --rec-color: #4d9fff;
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rec-modal.hidden {
  display: none !important;
}

.rec-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.rec-modal__panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #071224;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 36px;
  animation: recFadeInUp 0.3s ease;
}

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

.rec-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  line-height: 1;
  padding: 6px;
}

.rec-modal__close:hover {
  color: rgba(255, 255, 255, 0.7);
}

.rec-modal__tagrow {
  margin-bottom: 16px;
}

.rec-modal .resource-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  --resource-color: var(--rec-color);
  background: color-mix(in srgb, var(--resource-color) 10%, transparent);
  border: 0.5px solid color-mix(in srgb, var(--resource-color) 25%, transparent);
  color: var(--resource-color);
}

.rec-modal .resource-tag-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rec-modal .resource-tag-ico svg {
  display: block;
  width: 14px;
  height: 14px;
}

@supports not (color: color-mix(in srgb, white, black)) {
  .rec-modal .resource-tag {
    background: rgba(77, 159, 255, 0.1);
    border-color: rgba(77, 159, 255, 0.25);
    color: #4d9fff;
  }
}

.rec-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.rec-modal__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.rec-modal__sub {
  margin: 0 0 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.rec-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rec-field {
  margin: 0;
}

.rec-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
}

.rec-input {
  box-sizing: border-box;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.rec-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.rec-input:focus {
  border-color: var(--rec-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--rec-color) 10%, transparent);
}

@supports not (color: color-mix(in srgb, white, black)) {
  .rec-input:focus {
    box-shadow: 0 0 0 3px rgba(77, 159, 255, 0.1);
  }
}

.rec-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.55)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 44px;
}

.rec-select option {
  background-color: #101725;
  color: rgba(255, 255, 255, 0.95);
}

.rec-legal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  cursor: pointer;
}

.rec-check {
  width: 16px;
  height: 16px;
  accent-color: var(--rec-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.rec-legal__txt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
}

.rec-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--rec-color);
  color: #07080f;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rec-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.rec-submit.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.rec-error {
  margin: 8px 0 0;
  font-size: 13px;
  color: #ff6b6b;
}

.rec-error a {
  color: #ff6b6b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rec-error.hidden {
  display: none !important;
}

.rec-input.rec-input--error {
  border-color: #ff6b6b;
}

.rec-check.rec-check--error {
  outline: 1px solid #ff6b6b;
  outline-offset: 2px;
}

.rec-modal__panel.rec-shake {
  animation: recShake 0.35s ease;
}

@keyframes recShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-8px);
  }
  40% {
    transform: translateX(8px);
  }
  60% {
    transform: translateX(-6px);
  }
  80% {
    transform: translateX(6px);
  }
}

.rec-success {
  text-align: center;
}

.rec-success.hidden {
  display: none !important;
}

.rec-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.1);
  border: 0.5px solid rgba(0, 212, 170, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.rec-success__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.rec-success__text {
  margin: 0 0 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.rec-success__close {
  width: 100%;
  background: transparent;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.rec-success__close:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
}

#faq .faq-eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: #4d9fff;
}

#faq .faq-title {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #fff;
}

#faq .faq-sub {
  margin: 16px 0 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

#faq .faq-list {
  margin-top: 40px;
}

#faq .faq-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s ease, border-color 0.3s ease;
}

#faq .faq-item + .faq-item {
  margin-top: -0.5px;
}

#faq .faq-item:has(.faq-q[aria-expanded="true"]) {
  background: rgba(77, 159, 255, 0.03);
  border-top-color: rgba(77, 159, 255, 0.15);
  border-bottom-color: rgba(77, 159, 255, 0.15);
}

#faq .faq-q {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}

#faq .faq-q:hover {
  background: rgba(255, 255, 255, 0.02);
}

#faq .faq-q:hover .faq-q__text,
#faq .faq-q:hover .faq-num {
  color: #fff;
}

#faq .faq-q:hover .faq-num {
  color: rgba(77, 159, 255, 0.65);
}

#faq .faq-q:focus {
  outline: none;
}

#faq .faq-q:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(77, 159, 255, 0.35);
}

#faq .faq-q__row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
  flex: 1;
}

#faq .faq-num {
  margin: 0 16px 0 0;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  color: rgba(77, 159, 255, 0.4);
  line-height: 1.4;
  padding-top: 2px;
  transition: color 0.2s ease;
}

#faq .faq-q__text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  word-break: break-word;
  transition: color 0.2s ease;
}

#faq .faq-q[aria-expanded="true"] .faq-q__text {
  color: #fff;
}

#faq .faq-q[aria-expanded="true"] .faq-num {
  color: rgba(77, 159, 255, 0.75);
}

/* Icono +/- sustituido por chevron (el JS sigue escribiendo +/– en el nodo) */
#faq .faq-plus {
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 4px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  transition: background 0.3s ease, border-color 0.3s ease;
}

#faq .faq-plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
  pointer-events: none;
}

#faq .faq-q[aria-expanded="true"] .faq-plus {
  background: rgba(77, 159, 255, 0.1);
  border-color: rgba(77, 159, 255, 0.25);
}

#faq .faq-q[aria-expanded="true"] .faq-plus::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9' fill='none' stroke='%234d9fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#faq .faq-a {
  box-sizing: border-box;
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

/* Animación max-height: compatible con el toggle JS que usa el atributo hidden */
#faq .faq-a[hidden] {
  display: block !important;
  max-height: 0;
  padding: 0 24px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: max-height 0.35s ease, padding 0.3s ease, opacity 0.25s ease, visibility 0.35s ease;
}

#faq .faq-a:not([hidden]) {
  max-height: 500px;
  padding: 0 24px 22px 24px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: max-height 0.35s ease, padding 0.3s ease, opacity 0.25s ease, visibility 0.35s ease;
}

#faq .faq-cta {
  margin-top: 48px;
  padding: 32px 40px;
  text-align: center;
  background: rgba(77, 159, 255, 0.04);
  border: 0.5px solid rgba(77, 159, 255, 0.12);
  border-radius: 16px;
}

#faq .faq-cta__title {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

#faq .faq-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #4d9fff;
  text-decoration: none;
  background: rgba(77, 159, 255, 0.1);
  border: 0.5px solid rgba(77, 159, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#faq .faq-cta__btn:hover {
  background: rgba(77, 159, 255, 0.15);
  color: #fff;
}

#faq .faq-cta__btn svg {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  #faq .faq-container {
    padding: 0 24px;
  }

  #faq .faq-q {
    padding: 18px 16px;
    gap: 16px;
  }

  #faq .faq-a {
    padding: 0 16px 18px 16px;
  }

  #faq .faq-cta {
    padding: 28px 22px;
  }
}

/* Social links */
.social-link {
  display: inline-flex;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

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

.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floaty {
  animation: floaty 4.5s ease-in-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Lead magnet popup (entryModal) */
.leadmag-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .leadmag-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.leadmag-col--left {
  padding: 24px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .leadmag-col--left,
  .leadmag-col--right {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .leadmag-col--left {
    padding: 32px;
    border-bottom: none;
    border-right: 0.5px solid rgba(255, 255, 255, 0.08);
  }
}

.leadmag-col--right {
  padding: 24px;
}

@media (min-width: 768px) {
  .leadmag-col--right {
    padding: 32px;
  }
}

.leadmag-lede--mobile {
  display: none;
}

.leadmag-secondary-txt--mobile {
  display: none;
}

@media (max-width: 767px) {
  .leadmag-lede--desktop {
    display: none;
  }

  .leadmag-lede--mobile {
    display: block;
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
  }

  .leadmag-form-intro {
    display: none;
  }

  .leadmag-contact,
  .leadmag-pills {
    display: none !important;
  }

  .leadmag-title {
    font-size: 22px;
  }

  .leadmag-discover__item {
    padding: 10px 14px;
    font-size: 13px;
  }

  .leadmag-discover__txt {
    font-size: 13px;
  }

  .leadmag-secondary-txt--desktop {
    display: none;
  }

  .leadmag-secondary-txt--mobile {
    display: inline;
  }

  #leadSecondaryBtn {
    margin-top: 0;
    padding: 12px;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
    border: none;
    border-radius: 0;
  }

  #leadSecondaryBtn:hover {
    border: none;
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
  }
}

.leadmag-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 5px 14px;
  border-radius: 100px;
  border: 0.5px solid rgba(77, 159, 255, 0.3);
  background: rgba(77, 159, 255, 0.1);
  font-size: 11px;
  font-weight: 600;
  color: #4d9fff;
}

.leadmag-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #fff;
}

.leadmag-lede {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.leadmag-discover {
  margin-bottom: 0;
}

.leadmag-discover__heading {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.leadmag-discover__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.leadmag-discover__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.leadmag-discover__item:last-child {
  margin-bottom: 0;
}

.leadmag-discover__item:hover {
  border-color: rgba(77, 159, 255, 0.2);
  background: rgba(77, 159, 255, 0.04);
}

.leadmag-discover__num {
  display: flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.5px solid rgba(77, 159, 255, 0.2);
  background: rgba(77, 159, 255, 0.1);
  font-size: 11px;
  font-weight: 700;
  color: #4d9fff;
}

.leadmag-discover__txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.leadmag-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.leadmag-contact__title {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
}

.leadmag-contact__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.leadmag-contact__row:hover {
  color: rgba(255, 255, 255, 0.75);
}

.leadmag-contact__ico {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.leadmag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.leadmag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.leadmag-pill__ico {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.leadmag-form-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.leadmag-form-sub {
  margin: 0 0 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.leadmag-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.leadmag-field {
  margin: 0;
}

.leadmag-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.leadmag-input {
  box-sizing: border-box;
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.leadmag-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.leadmag-input:focus {
  border-color: #4d9fff;
  background: rgba(77, 159, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(77, 159, 255, 0.1);
}

.leadmag-input.leadmag-input--error {
  border-color: #ff6b6b;
}

.leadmag-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 44px;
}

.leadmag-legal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  cursor: pointer;
}

.leadmag-checkbox {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #4d9fff;
  cursor: pointer;
}

.leadmag-checkbox.leadmag-checkbox--error {
  outline: 1px solid #ff6b6b;
  outline-offset: 2px;
}

.leadmag-legal__txt {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.35);
}

.leadmag-btn-primary {
  width: 100%;
  margin-top: 4px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: #4d9fff;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.leadmag-btn-primary:hover {
  background: #6aadff;
  transform: translateY(-2px);
}

.leadmag-btn-primary.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.leadmag-btn-secondary {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.leadmag-btn-secondary:hover {
  border-color: rgba(77, 159, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.leadmag-btn-secondary--solo {
  margin-top: 0;
}

.leadmag-form-error {
  margin: 8px 0 0;
  font-size: 13px;
  color: #ff6b6b;
}

.leadmag-form-error__link {
  color: #ff6b6b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Legacy leadmag success styles kept intentionally unused. */

.leadmag-success.hidden {
  display: none !important;
}

/* Confirmaciones (popups + auditoría) */
.popup-confirm {
  text-align: center;
}

.popup-confirm__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.1);
  border: 0.5px solid rgba(0, 212, 170, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.popup-confirm--blue .popup-confirm__icon {
  background: rgba(77, 159, 255, 0.1);
  border-color: rgba(77, 159, 255, 0.2);
}

.popup-confirm__title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.popup-confirm__text {
  margin: 0 0 28px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.popup-confirm__info {
  background: rgba(77, 159, 255, 0.06);
  border: 0.5px solid rgba(77, 159, 255, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0 0 24px;
  text-align: left;
}

.popup-confirm__info--teal {
  background: rgba(0, 212, 170, 0.06);
  border-color: rgba(0, 212, 170, 0.18);
}

.popup-confirm__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.popup-confirm__item:last-child {
  margin-bottom: 0;
}

.popup-confirm__item-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.popup-confirm__btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
}

.popup-confirm__btn:hover {
  border-color: rgba(77, 159, 255, 0.3);
  color: #fff;
}

.popup-confirm__btn--primary {
  background: #4d9fff;
  border-color: #4d9fff;
  color: #fff;
  font-weight: 700;
}

.popup-confirm__btn--primary:hover {
  background: #6aadff;
  border-color: #6aadff;
}

/* Entry popup animation */
.leadmag-sheet-handle {
  display: none;
}

.entry-panel {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 240ms ease, transform 240ms ease;
  will-change: opacity, transform;
}
.entry-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 767px) {
  .entry-overlay.popup-overlay {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.7);
  }

  .leadmag-sheet-handle {
    display: block;
    width: 40px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
  }

  .entry-panel {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    overflow-y: auto;
    opacity: 1;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.1, 0.64, 1);
    will-change: transform;
  }

  .entry-panel.is-open {
    transform: translateY(0);
  }

  .leadmag-btn-primary {
    width: 100%;
  }
}

/* Prueba social — toast flotante */
.social-toast {
  position: fixed;
  bottom: max(32px, env(safe-area-inset-bottom, 0px));
  left: max(32px, env(safe-area-inset-left, 0px));
  z-index: 9999;
  box-sizing: border-box;
  max-width: 300px;
  overflow: hidden;
  padding: 14px 18px;
  padding-bottom: 18px;
  border-radius: 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 17, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: opacity 0.35s ease;
}

.social-toast.social-toast--in {
  animation: social-toast-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.social-toast.social-toast--idle {
  transform: translateX(0);
  opacity: 1;
}

.social-toast.social-toast--idle.social-toast--out {
  opacity: 0;
}

.social-toast:hover .social-toast__fill.social-toast__fill--run {
  animation-play-state: paused;
}

.social-toast__main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-right: 22px;
}

.social-toast__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 0.5px solid rgba(0, 212, 170, 0.25);
  background: rgba(0, 212, 170, 0.12);
  font-size: 18px;
  line-height: 1;
}

.social-toast__copy {
  flex: 1;
  min-width: 0;
}

.social-toast__action {
  margin: 0 0 3px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.social-toast__detail {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.social-toast__time {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 6px 0 0;
  font-size: 11px;
  color: #00d4aa;
}

.social-toast__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00d4aa;
  animation: social-toast-pulse 2s infinite;
}

.social-toast__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.social-toast__close:hover {
  color: rgba(255, 255, 255, 0.6);
}

.social-toast__close:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.45);
  border-radius: 4px;
}

.social-toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 2px;
  border-radius: 0 0 16px 16px;
  background: rgba(255, 255, 255, 0.08);
}

.social-toast__fill {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  background: #00d4aa;
}

.social-toast__fill.social-toast__fill--run {
  animation: social-toast-shrink 5s linear forwards;
}

@keyframes social-toast-in {
  from {
    transform: translateX(-120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes social-toast-shrink {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

@keyframes social-toast-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@media (max-width: 380px) {
  .social-toast {
    max-width: min(300px, calc(100vw - 64px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-toast.social-toast--in {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .social-toast__dot {
    animation: none !important;
  }
  .social-toast__fill.social-toast__fill--run {
    animation: social-toast-shrink 0.01ms linear forwards !important;
  }
}

/* —— CTA: cuestionario auditoría multi-paso (tema oscuro) —— */
#cta-final .cta-final__inner {
  box-sizing: border-box;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

#cta-final .cta-final__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 32px;
  align-items: start;
}

@media (max-width: 767px) {
  #cta-final .cta-final__grid {
    grid-template-columns: 1fr;
  }

  #cta-final .cta-final__card-col {
    order: 2;
  }
}

/* CTA copy izquierda */
#cta-final .cta-copy-eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4d9fff;
}

#cta-final .cta-copy-title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #fff;
  line-height: 1.15;
}

#cta-final .cta-copy-sub {
  margin: 0 0 22px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 520px;
}

#cta-final .cta-copy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 520px;
}

#cta-final .cta-copy-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

#cta-final .cta-copy-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #00d4aa;
}

/* CTA card derecha */
#cta-final .cta-quiz-card {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
}

#cta-final .cta-quiz-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(77, 159, 255, 0.1);
  border: 0.5px solid rgba(77, 159, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

#cta-final .cta-quiz-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

#cta-final .cta-quiz-sub {
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

#cta-final .cta-quiz-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

#cta-final .cta-quiz-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
}

#cta-final .cta-quiz-check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

#cta-final .cta-quiz-btn {
  width: 100%;
  background: #4d9fff;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 17px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 28px rgba(77, 159, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#cta-final .cta-quiz-btn:hover {
  background: #6aadff;
  transform: translateY(-2px);
}

#cta-final .cta-quiz-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
  #cta-final .cta-quiz-card {
    padding: 32px 22px;
  }
  #cta-final .cta-copy-title {
    font-size: 26px;
  }
}

#cta-final .audit-progress {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px 16px 0 0;
  padding: 20px 24px 16px;
  border-bottom: none;
}

#cta-final .audit-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

#cta-final .audit-progress-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

#cta-final .audit-progress-count {
  font-size: 13px;
  font-weight: 700;
  color: #4d9fff;
  background: rgba(77, 159, 255, 0.1);
  border: 0.5px solid rgba(77, 159, 255, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
}

#cta-final .audit-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}

#cta-final .audit-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4d9fff, #00d4aa);
  border-radius: 2px;
  transition: width 0.4s ease;
}

#cta-final .audit-progress-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

#cta-final #auditForm .form-section {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 28px 24px;
}

#cta-final #auditForm .form-section:not(.is-active) {
  display: none;
}

#cta-final #auditForm .section-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

#cta-final #auditForm .section-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

#cta-final #auditForm .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

#cta-final #auditForm .field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#cta-final #auditForm .col-span-2 {
  grid-column: span 2;
}

#cta-final #auditForm .label:not(.mini-label) {
  display: block;
  box-sizing: border-box;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

#cta-final #auditForm legend.label {
  float: none;
  clear: both;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  line-height: 1.45;
}

#cta-final #auditForm .req {
  color: #ff6b6b;
}

#cta-final #auditForm input[type="text"],
#cta-final #auditForm input[type="email"],
#cta-final #auditForm input[type="tel"],
#cta-final #auditForm select,
#cta-final #auditForm textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
  appearance: none;
}

#cta-final #auditForm input:focus,
#cta-final #auditForm select:focus,
#cta-final #auditForm textarea:focus {
  border-color: #4d9fff;
  background: rgba(77, 159, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(77, 159, 255, 0.1);
}

#cta-final #auditForm input::placeholder,
#cta-final #auditForm textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

#cta-final #auditForm select {
  color-scheme: dark;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.55) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.55) 50%, transparent 50%),
    linear-gradient(to right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08));
  background-position: calc(100% - 18px) 18px, calc(100% - 12px) 18px, calc(100% - 40px) 0.6em;
  background-size: 6px 6px, 6px 6px, 1px 1.8em;
  background-repeat: no-repeat;
  padding-right: 44px;
}

#cta-final #auditForm select option {
  background-color: #101725;
  color: rgba(255, 255, 255, 0.95);
}

#cta-final #auditForm .choice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.2s;
  margin-bottom: 6px;
}

#cta-final #auditForm .choice > span {
  padding-top: 1px;
}

#cta-final #auditForm .choice:hover {
  border-color: rgba(77, 159, 255, 0.3);
  background: rgba(77, 159, 255, 0.05);
  color: #fff;
}

#cta-final #auditForm .choice input[type="radio"],
#cta-final #auditForm .choice input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #4d9fff;
  flex-shrink: 0;
}

#cta-final #auditForm .radio-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#cta-final #auditForm .check-grid > label.choice:first-of-type {
  margin-top: 8px;
}

#cta-final #auditForm fieldset .radio-stack > label.choice:first-of-type {
  margin-top: 0;
}

#cta-final #auditForm .nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

#cta-final #auditForm .btn-secondary {
  background: #4d9fff;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

#cta-final #auditForm .btn-secondary:hover {
  background: #6aadff;
  transform: translateY(-1px);
}

#cta-final #auditForm .btn-accent {
  background: #4d9fff;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

#cta-final #auditForm .btn-accent:hover {
  background: #6aadff;
  transform: translateY(-1px);
}

#cta-final #auditForm .btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s;
}

#cta-final #auditForm .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

#cta-final #auditForm .error {
  font-size: 12px;
  color: #ff6b6b;
  min-height: 16px;
}

#cta-final #auditForm .help {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

#cta-final #auditConfirmation.confirmation {
  text-align: center;
  padding: 48px 24px;
}

#cta-final #auditConfirmation.confirmation.hidden {
  display: none;
}

#cta-final #auditConfirmation .confirm-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: #4d9fff;
}

#cta-final #auditConfirmation .confirm-icon__svg {
  width: 64px;
  height: 64px;
  display: block;
}

#cta-final #auditConfirmation .confirm-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

#cta-final #auditConfirmation .confirm-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 8px;
}

#cta-final #auditConfirmation .confirm-sign {
  font-size: 14px;
  font-weight: 600;
  color: #4d9fff;
  margin-top: 24px;
}

#cta-final #ctaAuditFormZone.hidden {
  display: none !important;
}

#cta-final #auditForm .field.hidden,
#cta-final #auditForm .inline-followup.hidden {
  display: none !important;
}

#cta-final #auditForm .fieldset {
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 14px 14px;
  margin: 0;
  min-inline-size: 0;
  background: rgba(0, 0, 0, 0.15);
}

#cta-final #auditForm .form-section .field:not(:last-child) fieldset.fieldset {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

#cta-final #auditForm .check-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  #cta-final #auditForm .check-grid {
    grid-template-columns: 1fr 1fr;
  }
}

#cta-final #auditForm .mini-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  display: block;
  margin-bottom: 6px;
}

#cta-final #auditForm .inline-followup {
  padding: 10px 0 0;
}

#cta-final #auditForm .fineprint {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

#cta-final #auditForm #submitBtn.is-loading {
  opacity: 0.85;
  pointer-events: none;
}

#cta-final #auditForm .spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  display: none;
  margin-left: 8px;
  vertical-align: middle;
  animation: audit-spin 0.9s linear infinite;
}

#cta-final #auditForm #submitBtn.is-loading .spinner {
  display: inline-block;
}

@keyframes audit-spin {
  to {
    transform: rotate(360deg);
  }
}

#cta-final .form-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 28px));
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(16, 23, 37, 0.95);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 60;
}

#cta-final .form-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
}

#cta-final #auditRestartBtn {
  background: #4d9fff;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

#cta-final #auditRestartBtn:hover {
  background: #6aadff;
  transform: translateY(-1px);
}

@media (max-width: 520px) {
  #cta-final #auditForm .field-grid {
    grid-template-columns: 1fr;
  }

  #cta-final #auditForm .col-span-2 {
    grid-column: span 1;
  }
}

/* —— Footer —— */
.site-footer {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 40px 28px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .site-footer {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.site-footer__glow {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(77, 159, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 20px 32px;
  margin-bottom: 28px;
}

@media (max-width: 767px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 479px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 36px 24px 20px;
  }
}

.site-footer__logo {
  margin: 0 0 8px;
  padding: 0;
  line-height: 0;
}

.site-footer__logo-img {
  display: block;
  width: auto;
  max-width: 168px;
  height: auto;
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #00d4aa;
  background: rgba(0, 212, 170, 0.08);
  border: 0.5px solid rgba(0, 212, 170, 0.15);
  border-radius: 100px;
}

.site-footer__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00d4aa;
  flex-shrink: 0;
  animation: site-footer-dot-pulse 2s ease-in-out infinite;
}

@keyframes site-footer-dot-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.45);
  }
  50% {
    opacity: 0.85;
    box-shadow: 0 0 0 6px rgba(0, 212, 170, 0);
  }
}

/* Banner diagnóstico */
.diag-banner-outer {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 48px;
}

.diag-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 24px;
  padding: 48px 56px;
  background: linear-gradient(135deg, rgba(77, 159, 255, 0.08) 0%, rgba(0, 212, 170, 0.06) 100%);
  border: 0.5px solid rgba(77, 159, 255, 0.2);
}

.diag-banner__deco {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(77, 159, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.diag-banner__left {
  flex: 1;
}

.diag-banner__eyebrow {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4d9fff;
}

@keyframes diag-banner-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.6);
    opacity: 1;
  }
}

.diag-banner__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4d9fff;
  animation: diag-banner-pulse 2s infinite;
}

.diag-banner__title {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1.2;
}

.diag-banner__sub {
  margin: 0;
  max-width: 480px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.diag-banner__pills {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.diag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 5px 12px;
}

.diag-pill__ico {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.diag-banner__right {
  flex-shrink: 0;
  text-align: center;
}

.diag-banner__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #4d9fff;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(77, 159, 255, 0.3);
}

.diag-banner__cta:hover {
  background: #6aadff;
  transform: translateY(-2px);
}

.diag-banner__note {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

@media (max-width: 767px) {
  .diag-banner-outer {
    padding: 0 24px;
  }
  .diag-banner {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }
  .diag-banner__eyebrow {
    justify-content: center;
  }
  .diag-banner__pills {
    justify-content: center;
  }
  .diag-banner__cta {
    width: 100%;
    justify-content: center;
  }
}

.site-footer__desc {
  margin: 0 0 14px;
  max-width: 240px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #4d9fff;
  text-decoration: none;
  background: rgba(77, 159, 255, 0.1);
  border: 0.5px solid rgba(77, 159, 255, 0.2);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__cta:hover {
  background: rgba(77, 159, 255, 0.15);
}

.site-footer__col-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__contact-item:last-child {
  margin-bottom: 0;
}

.site-footer__icon-line {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: rgba(77, 159, 255, 0.6);
}

.site-footer__icon-wa {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.site-footer__text-plain {
  line-height: 1.5;
}

.site-footer__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.site-footer__link--accent:hover {
  color: #4d9fff;
}

.site-footer__link--wa:hover {
  color: #25d366;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer__legal-link {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal-link:last-child {
  margin-bottom: 0;
}

.site-footer__legal-link:hover {
  color: #fff;
}

.site-footer__socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-footer__social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.site-footer__social--ig:hover {
  border-color: rgba(228, 64, 95, 0.35);
}

.site-footer__social--fb:hover {
  border-color: rgba(24, 119, 242, 0.45);
}

.site-footer__social-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: block;
}

.site-footer__sep {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}

.site-footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
}

.site-footer__brand-link {
  font-weight: 700;
  color: #3b82f6;
  text-decoration: none;
}

.site-footer__brand-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__badge-dot {
    animation: none;
  }

  .site-footer__social:hover {
    transform: none;
  }
}

