:root {
  --bg: #ffffff;
  --bg-soft: #f7f3ec;
  --blue-section: #eaf2fb;
  --surface: #ffffff;
  --line: #e5ded3;
  --line-soft: #eee8df;
  --text: #101010;
  --muted: #706a60;
  --soft: #8a8276;
  --blue: #0775d8;
  --blue-dark: #06284d;
  --green: #18b86d;
  --orange: #ff9b2f;
  --gold: #d8b76a;
  --dark: #061a33;
  --section-dark: #02152b;
  --radius: 28px;
  --shadow: 0 18px 42px rgba(20, 22, 28, .08);
  --shadow-soft: 0 8px 22px rgba(20, 22, 28, .06);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --max: 1360px;
  --nav-h: 68px;
}

/* ============================================================
   RESET BASE
============================================================ */

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

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

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

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

/* ============================================================
   ANIMACIONES GENERALES
============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@keyframes blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================================
   SECCIONES BASE
============================================================ */

.section,
.section-sm {
  padding: 88px 0;
  background: #ffffff;
}

.section:nth-of-type(even) {
  background: var(--blue-section);
}

.section-header {
  margin-bottom: 42px;
  text-align: center;
}

.section-badge,
.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--soft);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.065em;
  font-weight: 900;
}

.section-subtitle {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1rem;
}

/* ============================================================
   NAVBAR
============================================================ */

#navbar {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-layout {
  position: relative;
  width: min(calc(100% - 40px), 1720px);
  min-height: var(--nav-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.nav-brand,
.nav-main-pill {
  min-height: var(--nav-h);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.nav-brand {
  position: relative;
  z-index: 4;
  padding: 8px 22px 8px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.nav-brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -.06em;
}

.nav-brand-name {
  color: var(--blue-dark);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.nav-main-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max-content;
  max-width: calc(100vw - 460px);
  transform: translate(-50%, -50%);
  padding: 8px 12px 8px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 0 1 auto;
}

.nav-link {
  color: #2d3748;
  font-weight: 800;
  white-space: nowrap;
  transition: color .22s ease;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.nav-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-dark);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 99px;
  transition: .22s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   SIDEBAR MÓVIL
============================================================ */

.mobile-sidebar {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(360px, calc(100vw - 34px));
  height: auto;
  max-height: 72svh;
  padding: 18px;
  border-radius: 28px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #061f3d;
  color: #ffffff;
  z-index: 1200;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  transform: translate(-50%, -46%) scale(.94);
  opacity: 0;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.2, .8, .2, 1), opacity .32s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.35) transparent;
}

.mobile-sidebar.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.mobile-sidebar::before {
  content: "";
  position: fixed;
  inset: -100vmax;
  background: rgba(6, 31, 61, .35);
  z-index: -1;
}

.mobile-sidebar::-webkit-scrollbar {
  width: 6px;
}

.mobile-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.35);
  border-radius: 999px;
}

.mobile-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  text-align: center;
  position: relative;
}

.mobile-sidebar-head div {
  width: 100%;
}

.mobile-sidebar-head strong {
  display: block;
  font-size: 1.12rem;
}

.mobile-sidebar-head span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
}

.mobile-sidebar-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255,255,255,.1);
  font-size: 1.2rem;
}

.mobile-sidebar-links {
  display: grid;
  gap: 5px;
  margin-top: 12px;
}

.nav-mobile-link {
  padding: 11px 12px;
  border-radius: 14px;
  color: #ffffff;
  font-size: .92rem;
  font-weight: 800;
}

.nav-mobile-link:hover {
  background: rgba(255,255,255,.1);
}

.mobile-sidebar-actions {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.mobile-sidebar-actions .btn {
  min-height: 42px;
  padding: 10px 14px;
  font-size: .86rem;
}

/* ============================================================
   BOTONES
============================================================ */

.btn {
  min-height: 46px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease;
}

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

.btn-sm {
  min-height: 44px;
  padding: 10px 18px;
}

.btn-lg {
  min-height: 56px;
  padding: 15px 24px;
  font-size: 1rem;
}

.btn-blue {
  color: #ffffff;
  background: linear-gradient(180deg, #0b2e59 0%, #061f3d 100%);
  box-shadow: 0 12px 26px rgba(6, 31, 61, .18);
}

.btn-blue:hover {
  box-shadow: 0 16px 34px rgba(6, 31, 61, .24);
}

.btn-orange {
  color: #ffffff;
  background: linear-gradient(180deg, #ffae46, #ff952e);
}

.btn-whatsapp,
.wa-btn-fixed {
  color: #ffffff;
  background: linear-gradient(180deg, #22c977 0%, #18b86d 100%);
  box-shadow: 0 10px 22px rgba(24,184,109,.18);
}

.btn-ghost {
  background: #ffffff;
  color: var(--blue-dark);
  border: 1px solid var(--line);
}

/* ============================================================
   HERO — DESKTOP CON BURBUJAS
============================================================ */

#inicio {
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + 34px);
  background: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-one-scene {
  width: 100%;
  min-height: calc(100svh - var(--nav-h) - 34px);
  display: flex;
  align-items: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-one-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(6,31,61,.06) 1px, transparent 0);
  background-size: 34px 34px;
  pointer-events: none;
}

.hero-one-container {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 130px);
  display: grid;
  place-items: center;
}

.hero-orbit-stage {
  width: min(100%, 1180px);
  min-height: 700px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-title-wrap {
  position: relative;
  z-index: 10;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-profile-badge {
  position: relative;
  z-index: 8;
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: 5px solid #ffffff;
  box-shadow: 0 16px 40px rgba(6, 31, 61, .16);
}

.hero-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-profile-copy strong {
  display: block;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.02em;
}

.hero-type-title,
.hero-main-center-title {
  min-height: auto;
  max-width: 920px;
  margin: 0 auto;
  font-family: "Arial Black", Impact, var(--font);
  font-size: clamp(2.9rem, 5.8vw, 6.15rem);
  line-height: .87;
  letter-spacing: -.105em;
  color: #050505;
  text-align: center;
  font-weight: 900;
  text-wrap: balance;
}

.hero-type-title::after,
.hero-main-center-title::after {
  content: "|";
  margin-left: 8px;
  color: #061f3d;
  animation: blink .8s steps(2) infinite;
}

.hero-main-subtitle {
  max-width: 760px;
  margin: 18px auto 0;
  color: #746d64;
  font-size: .98rem;
  line-height: 1.55;
  text-align: center;
}

.hero-main-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 22px;
}

.hero-main-actions .btn,
.hero-main-actions .btn-lg {
  min-height: 46px;
  padding: 10px 21px;
  font-size: .9rem;
}

.hero-icons-ring {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-orbit-icon {
  position: absolute;
  width: 96px;
  min-height: 92px;
  padding: 10px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(6, 31, 61, .08);
  display: grid;
  justify-items: center;
  gap: 7px;
  pointer-events: auto;
  animation: fpDesktopBubble 6.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -0.45s);
  transition: filter .25s ease, scale .25s ease;
}

.hero-orbit-icon:hover {
  z-index: 30;
  scale: 1.06;
  filter: drop-shadow(0 18px 32px rgba(6, 31, 61, .16));
  animation-play-state: paused;
}

.hero-orbit-icon:nth-child(1) { --dx: 8px; --dy: -12px; --dr: 1.4deg; }
.hero-orbit-icon:nth-child(2) { --dx: -10px; --dy: -9px; --dr: -1.6deg; }
.hero-orbit-icon:nth-child(3) { --dx: 12px; --dy: 10px; --dr: 1.5deg; }
.hero-orbit-icon:nth-child(4) { --dx: -8px; --dy: 12px; --dr: -1.5deg; }
.hero-orbit-icon:nth-child(5) { --dx: 10px; --dy: -8px; --dr: 1.2deg; }
.hero-orbit-icon:nth-child(6) { --dx: -12px; --dy: 8px; --dr: -1.4deg; }
.hero-orbit-icon:nth-child(7) { --dx: 9px; --dy: 11px; --dr: 1.6deg; }
.hero-orbit-icon:nth-child(8) { --dx: -9px; --dy: -11px; --dr: -1.6deg; }
.hero-orbit-icon:nth-child(9) { --dx: 13px; --dy: -7px; --dr: 1.3deg; }
.hero-orbit-icon:nth-child(10) { --dx: -13px; --dy: 7px; --dr: -1.3deg; }

@keyframes fpDesktopBubble {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  35% {
    transform: translate3d(var(--dx), var(--dy), 0) rotate(var(--dr));
  }

  68% {
    transform: translate3d(calc(var(--dx) * -.45), calc(var(--dy) * .55), 0) rotate(calc(var(--dr) * -1));
  }
}

.hero-orbit-icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.hero-orbit-icon-box svg {
  width: 40px;
  height: 40px;
}

.hero-orbit-icon span {
  color: #0d2340;
  font-size: .68rem;
  line-height: 1.08;
  font-weight: 900;
  text-align: center;
}

.hero-orbit-1 { left: 8%; top: 15%; }
.hero-orbit-2 { left: 29%; top: 7%; }
.hero-orbit-3 { right: 28%; top: 8%; }
.hero-orbit-4 { right: 9%; top: 17%; }
.hero-orbit-5 { left: 6%; top: 45%; }
.hero-orbit-6 { right: 6%; top: 48%; }
.hero-orbit-7 { left: 11%; bottom: 12%; }
.hero-orbit-8 { left: 36%; bottom: 4%; }
.hero-orbit-9 { right: 14%; bottom: 14%; }
.hero-orbit-10 { right: 31%; bottom: 4%; }

.hero-icons-ring .hero-orbit-icon:nth-child(n + 11) {
  display: none;
}

/* ============================================================
   PAÍSES — SECCIÓN 2 APROBADA
============================================================ */

.countries-only-section {
  padding: 38px 0 36px;
  background: linear-gradient(180deg, #02152b 0%, #06203d 55%, #02152b 100%);
  overflow: hidden;
  position: relative;
}

.countries-only-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(7, 117, 216, .16), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, .05), transparent 22%);
  pointer-events: none;
}

.countries-small-head {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 960px);
  margin: 0 auto 22px;
  text-align: center;
}

.countries-small-head span {
  display: block;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.countries-small-head h2 {
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 900;
}

.country-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.country-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 38s linear infinite;
}

.country-strip:hover .country-track {
  animation-play-state: paused;
}

.country-mini-card {
  width: 300px;
  min-height: 84px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.country-mini-card:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(120, 170, 255, .38);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .22);
}

.country-mini-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
}

.country-mini-card strong {
  display: block;
  font-size: .95rem;
  font-weight: 900;
  color: #ffffff;
}

.country-mini-card span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
}

/* ============================================================
   SECCIÓN 3 — PANTALLA INTERNA SIN VACÍO
   No crea 500vh. La animación ocurre dentro de 100svh.
============================================================ */

#servicios.fp-inner-stack-section {
  height: 100svh !important;
  min-height: 100svh !important;
  max-height: 100svh !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #f7f3ec !important;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

#servicios .fp-inner-stack-screen {
  width: 100% !important;
  height: 100svh !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  padding: 94px 24px 54px !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(7,117,216,.07), transparent 28%),
    radial-gradient(circle at 84% 82%, rgba(216,183,106,.16), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f7f3ec 50%, #fbf8f2 100%) !important;
}

#servicios .fp-inner-stack-stage {
  position: relative !important;
  width: min(1180px, 88vw) !important;
  height: min(680px, calc(100svh - 150px)) !important;
  border-radius: 48px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow:
    0 38px 110px rgba(6, 31, 61, .22),
    inset 0 1px 0 rgba(255,255,255,.95) !important;
}

#servicios .fp-inner-stack-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: translate3d(0, 100%, 0);
  will-change: transform !important;
  overflow: hidden !important;
  background: #ffffff !important;
  transition: transform .08s linear !important;
}

#servicios .fp-inner-stack-slide:first-child {
  transform: translate3d(0, 0, 0);
}

#servicios .fp-inner-stack-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
  transition: transform .7s cubic-bezier(.19, 1, .22, 1) !important;
}

#servicios .fp-inner-stack-slide.active img {
  transform: scale(1.07) !important;
}

#servicios .fp-inner-stack-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.18));
  pointer-events: none;
}

#servicios .fp-inner-stack-bar {
  position: absolute !important;
  left: 28px !important;
  right: 28px !important;
  bottom: 26px !important;
  z-index: 20 !important;
  min-height: 98px !important;
  padding: 16px 18px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(255,255,255,.78) !important;
  box-shadow:
    0 20px 44px rgba(6,31,61,.18),
    inset 0 1px 0 rgba(255,255,255,.95) !important;
  display: grid !important;
  grid-template-columns: 68px 1fr 62px !important;
  align-items: center !important;
  gap: 16px !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

#servicios .fp-inner-stack-icon {
  width: 62px !important;
  height: 62px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: #061f3d !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
}

#servicios .fp-inner-stack-copy {
  min-width: 0 !important;
}

#servicios .fp-inner-stack-copy span {
  display: block !important;
  margin-bottom: 2px !important;
  color: #8a8276 !important;
  font-size: .72rem !important;
  font-weight: 900 !important;
  letter-spacing: .11em !important;
  text-transform: uppercase !important;
}

#servicios .fp-inner-stack-copy strong {
  display: block !important;
  color: #101010 !important;
  font-size: clamp(1.15rem, 2vw, 1.55rem) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  letter-spacing: -.045em !important;
}

#servicios .fp-inner-stack-copy p {
  max-width: 780px !important;
  margin-top: 4px !important;
  color: #706a60 !important;
  font-size: .92rem !important;
  line-height: 1.38 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

#servicios .fp-inner-stack-arrow {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: #f4f1eb !important;
  color: #101010 !important;
  font-size: 1.8rem !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  transition: transform .25s ease, background .25s ease, color .25s ease !important;
}

#servicios .fp-inner-stack-arrow:hover {
  transform: translateX(4px) !important;
  background: #061f3d !important;
  color: #ffffff !important;
}

/* Móvil */
@media (max-width: 680px) {
  #servicios .fp-inner-stack-screen {
    padding: 82px 14px 34px !important;
  }

  #servicios .fp-inner-stack-stage {
    width: min(100%, 420px) !important;
    height: min(590px, calc(100svh - 124px)) !important;
    border-radius: 32px !important;
  }

  #servicios .fp-inner-stack-bar {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    min-height: 82px !important;
    padding: 11px 12px !important;
    border-radius: 26px !important;
    grid-template-columns: 48px 1fr 42px !important;
    gap: 10px !important;
  }

  #servicios .fp-inner-stack-icon {
    width: 46px !important;
    height: 46px !important;
    font-size: .78rem !important;
  }

  #servicios .fp-inner-stack-copy span {
    font-size: .58rem !important;
  }

  #servicios .fp-inner-stack-copy strong {
    font-size: .95rem !important;
  }

  #servicios .fp-inner-stack-copy p {
    max-width: 220px !important;
    font-size: .72rem !important;
    line-height: 1.25 !important;
  }

  #servicios .fp-inner-stack-arrow {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.25rem !important;
  }
}
/* ============================================================
   CARDS, APPS, PLANTILLAS, CURSOS
============================================================ */

.services-grid,
.templates-grid,
.apps-grid,
.course-video-grid,
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sample-card,
.media-product-card,
.app-showcase-card,
.resource-clean-card,
.testimonial-card,
.tool-stack-card,
.google-price-card,
.payment-pill,
.social-box {
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s cubic-bezier(.2,.8,.2,1),
    border-color .28s ease,
    background .28s ease;
}

.sample-card:hover,
.media-product-card:hover,
.app-showcase-card:hover,
.resource-clean-card:hover,
.testimonial-card:hover,
.tool-stack-card:hover,
.google-price-card:hover,
.payment-pill:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 58px rgba(6,31,61,.14);
  border-color: rgba(7,117,216,.28);
}

.sample-card,
.media-product-card,
.app-showcase-card {
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #dfe7ef;
  box-shadow: 0 14px 34px rgba(6,31,61,.08);
}

.sample-card img,
.media-product-img,
.app-showcase-img {
  background: var(--blue-section);
}

.sample-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-product-img,
.app-showcase-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.media-product-img img,
.app-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .36s ease;
}

.media-product-card:hover .media-product-img img,
.app-showcase-card:hover .app-showcase-img img {
  transform: scale(1.05);
}

.sample-card-body,
.media-product-body,
.app-showcase-body {
  padding: 22px;
}

.sample-card h3,
.media-product-body h3,
.app-showcase-body h3 {
  color: #071f3d;
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: -.04em;
  font-weight: 900;
}

.sample-card p,
.media-product-body p,
.app-showcase-body p {
  margin-top: 12px;
  color: #657084;
  font-size: .93rem;
  line-height: 1.55;
}

.sample-tags,
.media-product-meta,
.app-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.sample-tags span,
.media-product-meta span,
.app-showcase-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf4fb;
  color: #071f3d;
  font-size: .75rem;
  font-weight: 800;
}

.media-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: .78rem;
  font-weight: 900;
}

.media-badge.green { background: #18b86d; }
.media-badge.orange { background: #ff9b2f; }
.media-badge.blue { background: #0775d8; }
.media-badge.red { background: #ff0000; }

.course-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* ============================================================
   HERRAMIENTAS
============================================================ */

.tools-stack-section {
  padding: 78px 0;
  background: var(--blue-section);
  overflow: hidden;
}

.tools-stack-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.tools-stack-head span {
  color: #6e7684;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tools-stack-head h2 {
  margin-top: 10px;
  color: #071f3d;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.065em;
  font-weight: 900;
}

.tools-stack-head p {
  max-width: 680px;
  margin: 16px auto 0;
  color: #546273;
  line-height: 1.7;
}

.tools-stack-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.tools-stack-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: toolsMarquee 46s linear infinite;
}

.tools-stack-marquee:hover .tools-stack-track {
  animation-play-state: paused;
}

@keyframes toolsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tool-stack-card {
  width: 250px;
  min-height: 104px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dbe7f3;
  box-shadow: 0 10px 28px rgba(6,31,61,.06);
}

.tool-stack-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.tool-stack-icon svg {
  width: 48px;
  height: 48px;
}

.tool-stack-card strong {
  display: block;
  color: #071f3d;
  font-size: .98rem;
  line-height: 1.1;
  font-weight: 900;
}

.tool-stack-card span {
  display: block;
  margin-top: 5px;
  color: #6a7483;
  font-size: .8rem;
  line-height: 1.25;
}
/* ============================================================
   BLOQUE CSS: SUSCRIPCIONES + CHECKOUT INTEGRADO
============================================================ */

.fp-subscriptions-section {
  padding: 92px 0 104px !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(7,117,216,.28), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255,138,31,.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(216,183,106,.13), transparent 32%),
    linear-gradient(135deg, #012e46 0%, #021f34 52%, #061f3d 100%) !important;
}

.fp-subscriptions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
  pointer-events: none;
}

.fp-subscriptions-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.fp-subscriptions-section .section-header {
  max-width: 860px !important;
  margin: 0 auto 36px !important;
  text-align: center !important;
}

.fp-subscriptions-section .section-badge {
  display: inline-flex !important;
  background: rgba(255,138,31,.15) !important;
  border: 1px solid rgba(255,138,31,.36) !important;
  color: #ffb35c !important;
}

.fp-subscriptions-section .section-title {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(2.2rem, 5vw, 4.5rem) !important;
  line-height: .95 !important;
  letter-spacing: -.075em !important;
  font-weight: 950 !important;
}

.fp-subscriptions-section .section-subtitle {
  max-width: 720px !important;
  margin: 18px auto 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

.fp-subscription-topline {
  max-width: 980px !important;
  margin: 0 auto 24px !important;
  padding: 14px 18px !important;
  border-radius: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  color: #ffffff !important;
}

.fp-subscription-topline span {
  display: block !important;
  color: #ffb35c !important;
  font-size: .72rem !important;
  font-weight: 950 !important;
  letter-spacing: .10em !important;
  text-transform: uppercase !important;
}

.fp-subscription-topline strong {
  display: block !important;
  margin-top: 4px !important;
  font-size: .95rem !important;
}

.fp-subscription-topline small {
  color: rgba(255,255,255,.68) !important;
  font-size: .84rem !important;
}

.fp-subscription-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
}

.fp-sub-card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 32px !important;
  padding: 24px !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.24) !important;
  transition:
    transform .3s cubic-bezier(.2,.8,.2,1),
    box-shadow .3s cubic-bezier(.2,.8,.2,1),
    border-color .3s ease !important;
}

.fp-sub-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 38px 92px rgba(0,0,0,.32) !important;
  border-color: rgba(255,255,255,.38) !important;
}

.fp-sub-card.featured {
  border: 2px solid rgba(255,138,31,.72) !important;
}

.fp-sub-featured {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  background: #ff8a1f !important;
  color: #ffffff !important;
  font-size: .72rem !important;
  font-weight: 950 !important;
}

.fp-sub-label {
  display: inline-flex !important;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  background: #edf4fb !important;
  color: #061f3d !important;
  font-size: .74rem !important;
  font-weight: 900 !important;
}

.fp-sub-head h3 {
  margin: 16px 0 0 !important;
  color: #061f3d !important;
  font-size: 1.65rem !important;
  line-height: 1.05 !important;
  letter-spacing: -.05em !important;
  font-weight: 950 !important;
}

.fp-sub-head p {
  min-height: 58px !important;
  margin: 12px 0 0 !important;
  color: #647083 !important;
  font-size: .92rem !important;
  line-height: 1.48 !important;
}

.fp-sub-promo-box {
  margin-top: 18px !important;
  padding: 14px !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, #eef4fa 0%, #fff8ef 100%) !important;
  border: 1px solid rgba(6,31,61,.08) !important;
}

.fp-sub-promo-box span {
  display: block !important;
  color: #c76708 !important;
  font-size: .76rem !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
}

.fp-sub-promo-box strong {
  display: block !important;
  margin-top: 4px !important;
  color: #061f3d !important;
  font-size: 1.05rem !important;
  font-weight: 950 !important;
}

.fp-sub-price {
  margin-top: 18px !important;
}

.fp-sub-price del {
  color: #9aa6b8 !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
}

.fp-sub-price div {
  display: flex !important;
  align-items: end !important;
  gap: 8px !important;
  margin-top: 2px !important;
}

.fp-sub-price strong {
  color: #061f3d !important;
  font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
  line-height: .92 !important;
  letter-spacing: -.06em !important;
  font-weight: 950 !important;
}

.fp-sub-price span,
.fp-sub-price small {
  color: #647083 !important;
  font-size: .86rem !important;
  font-weight: 800 !important;
}

.fp-sub-benefits {
  display: grid !important;
  gap: 9px !important;
  margin: 22px 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.fp-sub-benefits li {
  display: grid !important;
  grid-template-columns: 22px 1fr !important;
  gap: 8px !important;
  align-items: start !important;
}

.fp-sub-benefits li span {
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255,138,31,.14) !important;
  color: #c76708 !important;
  font-size: .78rem !important;
  font-weight: 950 !important;
}

.fp-sub-benefits li p {
  margin: 0 !important;
  color: #3f4f67 !important;
  font-size: .82rem !important;
  line-height: 1.32 !important;
  font-weight: 750 !important;
}

.fp-sub-pay-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 9px !important;
  margin-top: auto !important;
}

.fp-pay-btn {
  min-height: 45px !important;
  border: 0 !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  color: #ffffff !important;
  font-size: .9rem !important;
  font-weight: 950 !important;
  transition:
    transform .25s ease,
    filter .25s ease,
    box-shadow .25s ease !important;
}

.fp-pay-btn:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.04) !important;
}

.fp-pay-btn.paypal {
  background: #0875d8 !important;
  box-shadow: 0 14px 28px rgba(8,117,216,.22) !important;
}

.fp-pay-btn.binance {
  background: #f0b90b !important;
  color: #111111 !important;
  box-shadow: 0 14px 28px rgba(240,185,11,.24) !important;
}

.fp-pay-btn.bank {
  background: #ff8a1f !important;
  box-shadow: 0 14px 28px rgba(255,138,31,.24) !important;
}

/* MODAL */

body.modal-open {
  overflow: hidden !important;
}

.fp-sub-payment-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
}

.fp-sub-payment-modal.active {
  display: flex !important;
}

.fp-sub-modal-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(3,18,35,.66) !important;
  backdrop-filter: blur(8px) !important;
}

.fp-sub-modal-card {
  position: relative !important;
  z-index: 2 !important;
  width: min(1080px, 96vw) !important;
  max-height: 92vh !important;
  overflow: hidden !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  box-shadow: 0 34px 120px rgba(0,0,0,.38) !important;
}

.fp-sub-modal-head {
  min-height: 72px !important;
  padding: 18px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: linear-gradient(135deg, #012e46 0%, #075e9f 100%) !important;
  color: #ffffff !important;
}

.fp-sub-modal-head h3 {
  margin: 0 !important;
  font-size: 1.25rem !important;
  font-weight: 950 !important;
}

.fp-sub-modal-head button {
  width: 40px !important;
  height: 40px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.16) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-size: 1.6rem !important;
  font-weight: 900 !important;
}

.fp-sub-modal-body {
  display: grid !important;
  grid-template-columns: .82fr 1.18fr !important;
  gap: 0 !important;
  max-height: calc(92vh - 72px) !important;
  overflow: auto !important;
}

.fp-sub-modal-summary {
  padding: 34px !important;
  border-right: 1px solid #dfe7ef !important;
  display: grid !important;
  align-content: center !important;
  justify-items: center !important;
  text-align: center !important;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%) !important;
}

.fp-sub-modal-plan-icon {
  width: 92px !important;
  height: 92px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: #012e46 !important;
  color: #ffffff !important;
  font-size: 2rem !important;
  box-shadow: 0 20px 44px rgba(1,46,70,.22) !important;
}

.fp-sub-modal-summary > span {
  margin-top: 22px !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: #edf4fb !important;
  color: #061f3d !important;
  font-weight: 900 !important;
}

.fp-sub-modal-summary h4 {
  margin: 18px 0 0 !important;
  color: #061f3d !important;
  font-size: 1.55rem !important;
  font-weight: 950 !important;
}

.fp-sub-modal-price {
  margin-top: 12px !important;
}

.fp-sub-modal-price del {
  color: #9aa6b8 !important;
  font-weight: 800 !important;
}

.fp-sub-modal-price strong {
  display: block !important;
  color: #061f3d !important;
  font-size: 2.5rem !important;
  font-weight: 950 !important;
}

.fp-sub-modal-method-box {
  width: 100% !important;
  margin-top: 26px !important;
  padding: 18px !important;
  border-radius: 22px !important;
  background: #fff8ec !important;
  border: 1px dashed rgba(255,138,31,.55) !important;
}

.fp-method-chip {
  display: inline-flex !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  font-size: .78rem !important;
  font-weight: 950 !important;
}

.fp-method-chip.paypal {
  background: #eaf4ff !important;
  color: #0875d8 !important;
}

.fp-method-chip.binance {
  background: #fff2bd !important;
  color: #8a6500 !important;
}

.fp-method-chip.bank {
  background: #fff0e0 !important;
  color: #c76708 !important;
}

.fp-sub-modal-method-box p {
  color: #42536b !important;
  font-size: .9rem !important;
  line-height: 1.45 !important;
}

.fp-method-open-btn {
  min-height: 46px !important;
  padding: 12px 16px !important;
  border-radius: 14px !important;
  display: flex !important;
  justify-content: center !important;
  text-decoration: none !important;
  color: #ffffff !important;
  font-weight: 950 !important;
}

.fp-method-open-btn.paypal {
  background: #0875d8 !important;
}

.fp-copy-box {
  margin-top: 12px !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 10px !important;
  align-items: center !important;
}

.fp-copy-box strong,
.fp-copy-box small {
  min-height: 44px !important;
  padding: 12px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  color: #111111 !important;
  font-weight: 950 !important;
}

.fp-copy-box button {
  min-height: 44px !important;
  padding: 10px 14px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: #111827 !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-weight: 950 !important;
}

.fp-bank-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 12px !important;
}

.fp-bank-list span {
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #061f3d !important;
  font-size: .78rem !important;
  font-weight: 850 !important;
}

.fp-sub-modal-form {
  padding: 28px 34px !important;
}

.fp-sub-payment-steps {
  margin: 0 0 20px !important;
  color: #52637b !important;
  line-height: 1.65 !important;
}

.fp-sub-modal-form label {
  display: block !important;
  margin-top: 14px !important;
}

.fp-sub-modal-form label span {
  display: block !important;
  margin-bottom: 7px !important;
  color: #061f3d !important;
  font-size: .86rem !important;
  font-weight: 950 !important;
}

.fp-sub-modal-form input {
  width: 100% !important;
  min-height: 52px !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  border: 1px solid #cbd7e6 !important;
  background: #f8fafc !important;
  color: #111827 !important;
  font-size: 1rem !important;
}

.fp-sub-ocr-note {
  margin-top: 16px !important;
  padding: 14px !important;
  border-radius: 14px !important;
  background: #eafff4 !important;
  border: 1px solid #7ee2ae !important;
  color: #0b6642 !important;
  font-size: .88rem !important;
  line-height: 1.45 !important;
}

.fp-sub-submit-btn {
  width: 100% !important;
  min-height: 54px !important;
  margin-top: 18px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: #ff8a1f !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-size: .98rem !important;
  font-weight: 950 !important;
  box-shadow: 0 18px 34px rgba(255,138,31,.28) !important;
}

.fp-sub-submit-btn:disabled {
  opacity: .65 !important;
  cursor: wait !important;
}

.fp-sub-form-message {
  margin: 14px 0 0 !important;
  font-size: .9rem !important;
  line-height: 1.4 !important;
}

.fp-sub-form-message.success {
  color: #087a4c !important;
}

.fp-sub-form-message.error {
  color: #c62828 !important;
}

@media (max-width: 1024px) {
  .fp-subscription-grid {
    grid-template-columns: 1fr !important;
    max-width: 620px !important;
    margin: 0 auto !important;
  }

  .fp-subscription-topline {
    max-width: 620px !important;
    display: grid !important;
  }

  .fp-sub-modal-body {
    grid-template-columns: 1fr !important;
  }

  .fp-sub-modal-summary {
    border-right: 0 !important;
    border-bottom: 1px solid #dfe7ef !important;
  }
}

@media (max-width: 680px) {
  .fp-subscriptions-section {
    padding: 78px 0 88px !important;
  }

  .fp-subscriptions-section .section-header {
    margin-bottom: 30px !important;
  }

  .fp-subscriptions-section .section-title {
    font-size: clamp(2rem, 11vw, 3.2rem) !important;
  }

  .fp-sub-card {
    border-radius: 26px !important;
    padding: 20px !important;
  }

  .fp-sub-modal-card {
    width: 96vw !important;
    max-height: 94vh !important;
    border-radius: 20px !important;
  }

  .fp-sub-modal-summary,
  .fp-sub-modal-form {
    padding: 22px !important;
  }

  .fp-copy-box {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   FIN BLOQUE CSS: SUSCRIPCIONES + CHECKOUT INTEGRADO
============================================================ */
/* ============================================================
   PAGOS
============================================================ */

.payment-methods-section {
  padding: 54px 0 76px;
  background: #ffffff;
}

.payments-inline-head {
  text-align: center;
  margin-bottom: 26px;
}

.payments-inline-head span {
  color: #6b7280;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.payments-inline-head h2 {
  margin-top: 8px;
  color: #071f3d;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 900;
}

.payment-pill-row {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.payment-pill {
  min-height: 106px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #dfe7ef;
  box-shadow: 0 10px 28px rgba(6,31,61,.065);
}

.payment-pill-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.payment-pill-icon svg {
  width: 54px;
  height: 54px;
}

.payment-pill strong {
  display: block;
  color: #071f3d;
  font-weight: 900;
}

.payment-pill span {
  display: block;
  margin-top: 4px;
  color: #657084;
  font-size: .84rem;
  line-height: 1.3;
}

.payment-pill.binance { border-color: rgba(240,185,11,.35); }
.payment-pill.paypal { border-color: rgba(0,48,135,.22); }
.payment-pill.bank { border-color: rgba(6,31,61,.18); }
/* ============================================================
   BLOQUE CSS: CÓMO TRABAJAMOS — HORIZONTAL FIJO 100SVH
============================================================ */

.fp-workflow-horizontal-fixed-section {
  height: 100svh !important;
  min-height: 100svh !important;
  max-height: 100svh !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background: #061f3d !important;
  isolation: isolate !important;
}

.fp-workflow-horizontal-stage {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.fp-workflow-horizontal-panel {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  will-change: transform !important;
  transform: translate3d(100%, 0, 0);
  transition: none !important;
}

.fp-workflow-horizontal-panel:first-child {
  transform: translate3d(0, 0, 0);
}

.fp-workflow-horizontal-panel img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1.04) !important;
  transition: transform 1s cubic-bezier(.16, 1, .3, 1) !important;
}

.fp-workflow-horizontal-panel.active img {
  transform: scale(1.09) !important;
}

.fp-workflow-horizontal-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background:
    linear-gradient(90deg, rgba(1,18,35,.94) 0%, rgba(1,18,35,.76) 38%, rgba(1,18,35,.24) 100%),
    linear-gradient(180deg, rgba(1,18,35,.15) 0%, rgba(1,18,35,.62) 100%) !important;
}

.fp-workflow-horizontal-content {
  position: absolute !important;
  left: clamp(24px, 7vw, 110px) !important;
  bottom: clamp(70px, 13vh, 140px) !important;
  z-index: 5 !important;
  max-width: 760px !important;
}

.fp-workflow-horizontal-content span {
  display: inline-flex !important;
  padding: 9px 15px !important;
  border-radius: 999px !important;
  background: rgba(255,138,31,.18) !important;
  border: 1px solid rgba(255,138,31,.38) !important;
  color: #ffb35c !important;
  font-size: .78rem !important;
  font-weight: 950 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
}

.fp-workflow-horizontal-content h2 {
  margin: 20px 0 0 !important;
  color: #ffffff !important;
  font-size: clamp(3rem, 7vw, 7.8rem) !important;
  line-height: .84 !important;
  letter-spacing: -.085em !important;
  font-weight: 950 !important;
  text-shadow: 0 20px 52px rgba(0,0,0,.48) !important;
}

.fp-workflow-horizontal-content p {
  max-width: 650px !important;
  margin: 22px 0 0 !important;
  color: rgba(255,255,255,.84) !important;
  font-size: clamp(1.02rem, 1.5vw, 1.28rem) !important;
  line-height: 1.55 !important;
  text-shadow: 0 14px 34px rgba(0,0,0,.40) !important;
}

.fp-workflow-horizontal-number {
  position: absolute !important;
  right: clamp(22px, 6vw, 88px) !important;
  top: clamp(90px, 14vh, 150px) !important;
  z-index: 4 !important;
  color: rgba(255,255,255,.16) !important;
  font-size: clamp(6rem, 17vw, 18rem) !important;
  line-height: .75 !important;
  letter-spacing: -.12em !important;
  font-weight: 950 !important;
  pointer-events: none !important;
}

.fp-workflow-horizontal-dots {
  position: absolute !important;
  right: clamp(22px, 4vw, 54px) !important;
  bottom: clamp(24px, 5vh, 54px) !important;
  z-index: 10 !important;
  display: flex !important;
  gap: 10px !important;
}

.fp-workflow-horizontal-dots button {
  width: 10px !important;
  height: 10px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.34) !important;
  cursor: pointer !important;
  transition:
    width .25s ease,
    background .25s ease,
    transform .25s ease !important;
}

.fp-workflow-horizontal-dots button.active {
  width: 34px !important;
  border-radius: 999px !important;
  background: #ff8a1f !important;
  transform: scale(1.04) !important;
}

@media (max-width: 900px) {
  .fp-workflow-horizontal-overlay {
    background:
      linear-gradient(180deg, rgba(1,18,35,.18) 0%, rgba(1,18,35,.92) 100%) !important;
  }

  .fp-workflow-horizontal-content {
    left: 24px !important;
    right: 24px !important;
    bottom: 78px !important;
    max-width: none !important;
  }

  .fp-workflow-horizontal-content h2 {
    font-size: clamp(2.6rem, 12vw, 5rem) !important;
  }

  .fp-workflow-horizontal-content p {
    font-size: .98rem !important;
    line-height: 1.45 !important;
  }

  .fp-workflow-horizontal-number {
    top: 92px !important;
    right: 24px !important;
    font-size: clamp(5rem, 24vw, 9rem) !important;
  }
}

@media (max-width: 680px) {
  .fp-workflow-horizontal-fixed-section {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
  }

  .fp-workflow-horizontal-content {
    bottom: 72px !important;
  }

  .fp-workflow-horizontal-content span {
    font-size: .68rem !important;
    padding: 8px 12px !important;
  }

  .fp-workflow-horizontal-content h2 {
    margin-top: 14px !important;
    font-size: clamp(2.2rem, 13vw, 3.9rem) !important;
    line-height: .88 !important;
  }

  .fp-workflow-horizontal-content p {
    margin-top: 14px !important;
    font-size: .9rem !important;
  }

  .fp-workflow-horizontal-number {
    top: 84px !important;
    font-size: clamp(4.5rem, 25vw, 7rem) !important;
  }

  .fp-workflow-horizontal-dots {
    right: 22px !important;
    bottom: 24px !important;
  }
}

/* ============================================================
   FIN BLOQUE CSS: CÓMO TRABAJAMOS — HORIZONTAL FIJO 100SVH
============================================================ */
/* ============================================================
   RECURSOS
============================================================ */
/* ============================================================
   BLOQUE CSS: HERRAMIENTAS + MÉTRICAS
============================================================ */

.fp-tools-section {
  padding: 82px 0 74px !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(7,117,216,.20), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255,138,31,.12), transparent 24%),
    linear-gradient(135deg, #012e46 0%, #021f34 52%, #061f3d 100%) !important;
}

.fp-tools-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
  pointer-events: none;
}

.fp-tools-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.fp-tools-section .section-header {
  max-width: 760px !important;
  margin: 0 auto 34px !important;
  text-align: center !important;
}

.fp-tools-section .section-badge {
  display: none !important;
}

.fp-tools-section .section-title {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 3.7rem) !important;
  line-height: .96 !important;
  letter-spacing: -.06em !important;
  font-weight: 950 !important;
}

.fp-tools-section .section-subtitle {
  max-width: 620px !important;
  margin: 14px auto 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-size: .95rem !important;
  line-height: 1.55 !important;
}

.fp-tools-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 14px !important;
}

.fp-tool-card {
  min-height: 172px !important;
  padding: 18px 14px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.18) !important;
  text-align: center !important;
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s ease,
    background .28s ease !important;
}

.fp-tool-card:hover {
  transform: translateY(-7px) !important;
  background: #ffffff !important;
  box-shadow: 0 28px 66px rgba(0,0,0,.25) !important;
}

.fp-tool-icon {
  width: 58px !important;
  height: 58px !important;
  margin: 0 auto 13px !important;
  border-radius: 20px !important;
  display: grid !important;
  place-items: center !important;
  background: #f2f7fb !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9) !important;
  overflow: hidden !important;
}

.fp-tool-icon svg {
  width: 42px !important;
  height: 42px !important;
  display: block !important;
}

.fp-tool-card h3 {
  margin: 0 !important;
  color: #061f3d !important;
  font-size: .98rem !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
}

.fp-tool-card p {
  margin: 9px auto 0 !important;
  color: #647083 !important;
  font-size: .76rem !important;
  line-height: 1.35 !important;
}

/* MÉTRICAS */

.fp-impact-stats-section {
  padding: 44px 0 58px !important;
  margin: 0 !important;
  background: #f8f7f3 !important;
  position: relative !important;
  overflow: hidden !important;
}

.fp-impact-stats-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
}

.fp-impact-stat-card {
  padding: 28px 24px !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  border: 1px solid rgba(6,31,61,.08) !important;
  box-shadow: 0 18px 44px rgba(6,31,61,.08) !important;
  text-align: center !important;
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s ease !important;
}

.fp-impact-stat-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 26px 58px rgba(6,31,61,.12) !important;
}

.fp-impact-stat-card strong {
  display: block !important;
  color: #012e46 !important;
  font-size: clamp(2.4rem, 5vw, 4.6rem) !important;
  line-height: .9 !important;
  letter-spacing: -.06em !important;
  font-weight: 950 !important;
}

.fp-impact-stat-card h3 {
  margin: 14px 0 0 !important;
  color: #061f3d !important;
  font-size: 1.05rem !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
}

.fp-impact-stat-card p {
  margin: 8px 0 0 !important;
  color: #647083 !important;
  font-size: .88rem !important;
  line-height: 1.35 !important;
}

@media (max-width: 1100px) {
  .fp-tools-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .fp-tools-section {
    padding: 72px 0 62px !important;
  }

  .fp-tools-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .fp-tool-card {
    min-height: 160px !important;
  }

  .fp-impact-stats-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .fp-tools-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ============================================================
   BLOQUE CSS: HERRAMIENTAS CON LAS QUE CONSTRUIMOS SISTEMAS
============================================================ */

.fp-tools-section {
  padding: 82px 0 74px !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(7,117,216,.20), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255,138,31,.12), transparent 24%),
    linear-gradient(135deg, #012e46 0%, #021f34 52%, #061f3d 100%) !important;
}

.fp-tools-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
  pointer-events: none;
}

.fp-tools-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.fp-tools-head {
  max-width: 760px !important;
  margin: 0 auto 34px !important;
  text-align: center !important;
}

.fp-tools-head span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 32px !important;
  padding: 7px 14px !important;
  border-radius: 999px !important;
  background: rgba(255,138,31,.15) !important;
  border: 1px solid rgba(255,138,31,.36) !important;
  color: #ffb35c !important;
  font-size: .74rem !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

.fp-tools-head h2 {
  margin: 16px 0 0 !important;
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 3.7rem) !important;
  line-height: .96 !important;
  letter-spacing: -.06em !important;
  font-weight: 950 !important;
}

.fp-tools-head p {
  max-width: 620px !important;
  margin: 14px auto 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-size: .95rem !important;
  line-height: 1.55 !important;
}

.fp-tools-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 14px !important;
}

.fp-tool-card {
  min-height: 172px !important;
  padding: 18px 14px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.18) !important;
  text-align: center !important;
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s ease,
    background .28s ease !important;
}

.fp-tool-card:hover {
  transform: translateY(-7px) !important;
  background: #ffffff !important;
  box-shadow: 0 28px 66px rgba(0,0,0,.25) !important;
}

.fp-tool-icon {
  width: 58px !important;
  height: 58px !important;
  margin: 0 auto 13px !important;
  border-radius: 20px !important;
  display: grid !important;
  place-items: center !important;
  background: #f2f7fb !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9) !important;
  overflow: hidden !important;
}

.fp-tool-icon svg {
  width: 42px !important;
  height: 42px !important;
  display: block !important;
}

.fp-tool-card h3 {
  margin: 0 !important;
  color: #061f3d !important;
  font-size: .98rem !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
}

.fp-tool-card p {
  margin: 9px auto 0 !important;
  color: #647083 !important;
  font-size: .76rem !important;
  line-height: 1.35 !important;
}

/* MÉTRICAS */

.fp-impact-stats-section {
  padding: 44px 0 58px !important;
  margin: 0 !important;
  background: #f8f7f3 !important;
  position: relative !important;
  overflow: hidden !important;
}

.fp-impact-stats-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
}

.fp-impact-stat-card {
  padding: 28px 24px !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  border: 1px solid rgba(6,31,61,.08) !important;
  box-shadow: 0 18px 44px rgba(6,31,61,.08) !important;
  text-align: center !important;
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s ease !important;
}

.fp-impact-stat-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 26px 58px rgba(6,31,61,.12) !important;
}

.fp-impact-stat-card strong {
  display: block !important;
  color: #012e46 !important;
  font-size: clamp(2.4rem, 5vw, 4.6rem) !important;
  line-height: .9 !important;
  letter-spacing: -.06em !important;
  font-weight: 950 !important;
}

.fp-impact-stat-card h3 {
  margin: 14px 0 0 !important;
  color: #061f3d !important;
  font-size: 1.05rem !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
}

.fp-impact-stat-card p {
  margin: 8px 0 0 !important;
  color: #647083 !important;
  font-size: .88rem !important;
  line-height: 1.35 !important;
}

@media (max-width: 1100px) {
  .fp-tools-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .fp-tools-section {
    padding: 72px 0 62px !important;
  }

  .fp-tools-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .fp-tool-card {
    min-height: 160px !important;
  }

  .fp-impact-stats-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .fp-tools-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   FIN BLOQUE CSS: HERRAMIENTAS CON LAS QUE CONSTRUIMOS SISTEMAS
============================================================ */
/* ============================================================
   TESTIMONIOS
============================================================ */

.metrics-grid {
  display: block;
}

.testimonials-slider {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.testimonials-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee 50s linear infinite;
}

.testimonials-slider:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 310px;
  flex: 0 0 auto;
  padding: 26px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.quote-icon {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: #d9d5ce;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 3px;
  margin: 8px 0 14px;
  color: #f5a623;
}

.stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-card p {
  color: #3a3a3c;
  font-size: .92rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue);
  color: #ffffff;
  font-size: .8rem;
  font-weight: 900;
}

.testimonial-footer strong {
  display: block;
  font-size: .95rem;
}

.testimonial-footer span {
  display: block;
  color: var(--soft);
  font-size: .74rem;
}

.testimonial-footer img {
  width: 30px;
  height: 30px;
  margin-left: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* ============================================================
   FAQ
============================================================ */

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 900;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer-inner {
  padding-bottom: 20px;
}

/* ============================================================
   CONTACTO
============================================================ */

.contact-inner {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 24px;
  align-items: center;
}

.contact-title {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 900;
}

.contact-subtitle {
  margin-top: 16px;
  color: var(--muted);
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-info-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

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

.contact-info-card strong {
  font-size: 1.3rem;
  font-weight: 900;
}

.contact-info-card span {
  margin-top: 10px;
  color: var(--muted);
}

/* ============================================================
   REDES
============================================================ */

.social-section {
  padding: 70px 0;
  background: var(--blue-section);
}

.social-box {
  padding: 34px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid #dfe7ef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 14px 34px rgba(6,31,61,.08);
}

.social-box span {
  color: #657084;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.social-box h2 {
  margin-top: 8px;
  color: #071f3d;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-pill {
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
}

.social-pill.red { background: #ff0000; }
.social-pill.dark { background: #111111; }
.social-pill.pink { background: #e1306c; }
.social-pill.blue { background: #1877f2; }

/* ============================================================
   CHATBOT + WHATSAPP
============================================================ */

#chatbot-fab {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 980;
}

.chatbot-toggle {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #111111;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(255,155,47,.22);
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(360px, calc(100vw - 28px));
  display: none;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.chatbot-panel.open {
  display: block;
}

.chatbot-head {
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: var(--blue-dark);
  color: #ffffff;
}

.chatbot-head strong {
  display: block;
}

.chatbot-head span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.7);
  font-size: .86rem;
}

.chatbot-head button {
  color: #ffffff;
  font-size: 1.4rem;
}

.chatbot-body {
  max-height: 170px;
  overflow: auto;
  padding: 16px 16px 4px;
  display: grid;
  gap: 10px;
}

.chatbot-msg {
  display: flex;
}

.chatbot-msg.user {
  justify-content: flex-end;
}

.chatbot-msg div {
  max-width: 90%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: .92rem;
}

.chatbot-msg.bot div {
  background: #f5ecda;
}

.chatbot-msg.user div {
  background: #e9f3ff;
}

.chatbot-questions {
  padding: 8px 16px 16px;
  display: grid;
  gap: 8px;
}

.chatbot-q-btn {
  padding: 13px 14px;
  border-radius: 16px;
  background: #f8f6f1;
  text-align: left;
  font-weight: 800;
}

.chatbot-footer {
  padding: 0 16px 16px;
}

.chatbot-footer a {
  color: var(--blue);
  font-weight: 900;
  font-size: .88rem;
}

#wa-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 979;
}

.wa-btn-fixed {
  min-height: 56px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 900;
}

/* ============================================================
   FOOTER
============================================================ */

footer {
  background: var(--blue-dark);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 54px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #ffffff;
  color: var(--blue-dark);
  font-weight: 900;
}

.footer-brand-name {
  font-weight: 900;
}

.footer-brand p,
.footer-contact span {
  color: rgba(255,255,255,.65);
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
}

/* ============================================================
   ADMIN PANEL
============================================================ */

#fp-admin-panel {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
}

#fp-admin-panel.open {
  display: block;
}

.admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 61, .48);
  backdrop-filter: blur(8px);
}

.admin-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(920px, calc(100vw - 28px));
  max-height: 88svh;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #dfe7ef;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  display: grid;
  grid-template-rows: auto 1fr;
}

.admin-head {
  padding: 20px 22px;
  background: #071f3d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-head strong,
.admin-head span {
  display: block;
}

.admin-head span {
  color: rgba(255,255,255,.68);
  font-size: .88rem;
}

.admin-head button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #ffffff;
  font-size: 1.5rem;
}

.admin-login,
.admin-editor {
  padding: 22px;
  overflow: auto;
}

.admin-login {
  display: grid;
  gap: 12px;
}

.admin-login input,
.admin-editor textarea,
.admin-upload input[type="text"],
.admin-upload input[type="file"] {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #dfe7ef;
  background: #f8fbff;
}

.admin-editor {
  display: none;
  gap: 14px;
}

.admin-editor label,
.admin-upload label {
  color: #071f3d;
  font-weight: 900;
}

.admin-editor textarea {
  min-height: 360px;
  font-family: Consolas, monospace;
  font-size: .86rem;
  line-height: 1.5;
}

.admin-upload {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  background: var(--blue-section);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-help {
  color: #657084;
  font-size: .9rem;
}

/* ============================================================
   SKELETON
============================================================ */

.skeleton,
.skeleton-card {
  min-height: 180px;
  height: auto;
  border-radius: 28px;
  background: #f1ece4;
}

/* ============================================================
   RESPONSIVE TABLET
============================================================ */

@media (max-width: 1180px) {
  .container {
    padding: 0 22px;
  }

  .nav-layout {
    width: min(calc(100% - 22px), 1720px);
    justify-content: space-between;
  }

  .nav-main-pill {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    min-height: 56px;
    padding: 6px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-one-container {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .hero-orbit-stage {
    min-height: 690px;
    width: min(100%, 900px);
  }

  .hero-title-wrap {
    max-width: 670px;
    padding: 0 18px;
  }

  .hero-profile-avatar {
    width: 84px;
    height: 84px;
  }

  .hero-profile-copy strong {
    font-size: clamp(1.45rem, 4vw, 2.05rem);
  }

  .hero-type-title,
  .hero-main-center-title {
    font-size: clamp(2.75rem, 10vw, 5.15rem);
    max-width: 650px;
  }

  .hero-main-subtitle {
    max-width: 560px;
    font-size: .94rem;
  }

  .hero-orbit-icon {
    width: 86px;
    min-height: 82px;
    padding: 8px;
    border-radius: 20px;
  }

  .hero-orbit-icon-box {
    width: 36px;
    height: 36px;
  }

  .hero-orbit-icon-box svg {
    width: 32px;
    height: 32px;
  }

  .hero-orbit-icon span {
    font-size: .58rem;
  }

  .hero-orbit-1 { left: 4%; top: 16%; }
  .hero-orbit-2 { left: 33%; top: 6%; }
  .hero-orbit-3 { right: 33%; top: 6%; }
  .hero-orbit-4 { right: 4%; top: 16%; }
  .hero-orbit-5 { left: 2%; top: 45%; }
  .hero-orbit-6 { right: 2%; top: 45%; }
  .hero-orbit-7 { left: 5%; bottom: 13%; }
  .hero-orbit-8 { left: 32%; bottom: 4%; }
  .hero-orbit-9 { right: 5%; bottom: 13%; }
  .hero-orbit-10 { right: 32%; bottom: 4%; }

  .services-grid,
  .templates-grid,
  .apps-grid,
  .course-video-grid,
  .resources-grid,
  .google-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .google-price-card {
    min-height: auto;
  }

  .contact-inner,
  .footer-inner,
  .workflow-premium-panel {
    grid-template-columns: 1fr;
  }

  .payment-pill-row {
    grid-template-columns: 1fr;
  }

  .social-box {
    display: block;
  }

  .social-links {
    margin-top: 20px;
  }
}

/* ============================================================
   RESPONSIVE MÓVIL
============================================================ */

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .nav-brand {
    min-height: 58px;
    padding: 7px 18px 7px 7px;
  }

  .nav-brand-logo {
    width: 46px;
    height: 46px;
  }

  .nav-brand-name {
    font-size: 1rem;
  }

  .nav-hamburger {
    width: 46px;
    height: 46px;
  }

  #inicio {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 18px;
    display: block;
    overflow: hidden;
  }

  .hero-one-scene {
    min-height: auto;
    align-items: flex-start;
    overflow: hidden;
  }

  .hero-one-container {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 16px;
    overflow: hidden;
  }

  .hero-orbit-stage {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    overflow: hidden;
  }

  .hero-title-wrap {
    display: contents;
  }

  .hero-profile-badge {
    order: 1;
    margin-top: 0;
    margin-bottom: 9px;
    display: grid;
    justify-items: center;
  }

  .hero-profile-avatar {
    width: 68px;
    height: 68px;
    border-width: 4px;
  }

  .hero-profile-copy strong {
    font-size: clamp(1.35rem, 6.4vw, 1.95rem);
    line-height: 1;
  }

  .hero-type-title,
  .hero-main-center-title {
    order: 2;
    font-size: clamp(2.15rem, 11.5vw, 3.22rem);
    line-height: .9;
    letter-spacing: -.09em;
    max-width: 310px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-main-subtitle {
    order: 3;
    max-width: 305px;
    margin: 13px auto 0;
    font-size: .82rem;
    line-height: 1.44;
    text-align: center;
  }

  .hero-icons-ring {
    order: 4;
    position: relative;
    inset: auto;
    width: max-content;
    height: 76px;
    margin: 15px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    pointer-events: auto;
    animation: heroMobileRailInfinite 22s linear infinite;
    will-change: transform;
  }

  .hero-orbit-stage:hover .hero-icons-ring {
    animation-play-state: paused;
  }

  .hero-icons-ring .hero-orbit-icon:nth-child(n + 11) {
    display: grid;
  }

  .hero-orbit-icon,
  .hero-orbit-1,
  .hero-orbit-2,
  .hero-orbit-3,
  .hero-orbit-4,
  .hero-orbit-5,
  .hero-orbit-6,
  .hero-orbit-7,
  .hero-orbit-8,
  .hero-orbit-9,
  .hero-orbit-10 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    flex: 0 0 auto;
    width: 62px;
    min-height: 62px;
    padding: 7px;
    margin: 0;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(6,31,61,.08);
    display: grid;
    justify-items: center;
    align-content: center;
    transform: none;
    animation: none;
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .hero-orbit-icon:hover {
    transform: scale(1.04);
    filter: none;
  }

  .hero-orbit-icon-box {
    width: 27px;
    height: 27px;
  }

  .hero-orbit-icon-box svg {
    width: 25px;
    height: 25px;
  }

  .hero-orbit-icon span {
    display: none;
  }

  @keyframes heroMobileRailInfinite {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .hero-main-actions {
    order: 5;
    margin-top: 15px;
    gap: 9px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .hero-main-actions .btn,
  .hero-main-actions .btn-lg {
    width: min(100%, 225px);
    min-height: 40px;
    padding: 9px 16px;
    font-size: .8rem;
  }

  .mobile-sidebar {
    width: min(325px, calc(100vw - 28px));
    max-height: 68svh;
    padding: 16px;
  }

  .section,
  .section-sm {
    padding: 62px 0;
  }

  .section-title {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .section-subtitle {
    font-size: .92rem;
  }

  .services-grid,
  .templates-grid,
  .apps-grid,
  .course-video-grid,
  .resources-grid,
  .google-pricing-grid {
    grid-template-columns: 1fr;
  }

  .country-mini-card {
    width: 250px;
  }

  .tool-stack-card {
    width: 220px;
  }

  .workflow-premium-img img {
    height: 240px;
  }

  .payment-pill-row {
    grid-template-columns: 1fr;
  }

  .fp-cascade-section {
    padding-top: 62px;
  }

  .fp-cascade-shell {
    height: calc(var(--total, 5) * 100svh);
    margin-top: 22px;
    background: #ffffff;
  }

  .fp-cascade-sticky {
    height: 100svh;
    background: #ffffff;
  }

  .fp-cascade-stage {
    width: calc(100% - 28px);
    height: calc(100svh - 92px);
    border-radius: 30px;
  }

  .fp-cascade-overlay {
    background:
      linear-gradient(180deg, rgba(2,21,43,.06) 0%, rgba(2,21,43,.92) 100%),
      radial-gradient(circle at 70% 20%, rgba(7,117,216,.22), transparent 30%);
  }

  .fp-cascade-content {
    left: 22px;
    right: 22px;
    bottom: 30px;
    max-width: none;
  }

  .fp-cascade-content span {
    font-size: .66rem;
    margin-bottom: 10px;
  }

  .fp-cascade-content h3 {
    font-size: clamp(2.55rem, 15vw, 4.5rem);
    line-height: .84;
  }

  .fp-cascade-content strong {
    margin-top: 12px;
    font-size: 1rem;
  }

  .fp-cascade-content p {
    max-width: 92%;
    margin-top: 10px;
    font-size: .84rem;
    line-height: 1.48;
  }

  .fp-cascade-content .btn {
    min-height: 40px;
    margin-top: 18px;
    padding: 8px 14px;
    font-size: .8rem;
  }

  .fp-cascade-dots {
    right: 12px;
  }

  .fp-cascade-dots button {
    width: 7px;
    height: 24px;
  }

  .fp-cascade-dots button.active {
    height: 38px;
  }

  .chatbot-panel {
    width: min(340px, calc(100vw - 24px));
  }

  #chatbot-fab {
    right: 14px;
    bottom: 84px;
  }

  #wa-btn {
    right: 14px;
    bottom: 14px;
  }

  .wa-label {
    display: none;
  }

  .admin-panel {
    width: min(94vw, 920px);
    max-height: 88svh;
  }
}

/* ============================================================
   MÓVIL PEQUEÑO
============================================================ */

@media (max-width: 420px) {
  #inicio {
    padding-top: 72px;
  }

  .hero-profile-avatar {
    width: 64px;
    height: 64px;
  }

  .hero-type-title,
  .hero-main-center-title {
    font-size: clamp(2rem, 10.8vw, 3rem);
    max-width: 290px;
  }

  .hero-main-subtitle {
    max-width: 285px;
    font-size: .78rem;
  }

  .hero-icons-ring {
    height: 72px;
    gap: 9px;
    animation-duration: 24s;
  }

  .hero-orbit-icon {
    width: 58px;
    min-height: 58px;
    border-radius: 14px;
  }

  .hero-orbit-icon-box {
    width: 25px;
    height: 25px;
  }

  .hero-orbit-icon-box svg {
    width: 23px;
    height: 23px;
  }

  .hero-main-actions .btn,
  .hero-main-actions .btn-lg {
    width: min(100%, 215px);
    min-height: 39px;
    font-size: .78rem;
  }
}

/* ============================================================
   REDUCIR MOVIMIENTO
============================================================ */

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ============================================================
   APLICACIONES QUE PODEMOS CREAR PARA TU NEGOCIO
============================================================ */

.fp-business-apps-section {
  padding: 110px 0 118px !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(7,117,216,.28), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255,138,31,.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(216,183,106,.13), transparent 32%),
    linear-gradient(135deg, #012e46 0%, #021f34 52%, #061f3d 100%) !important;
}

.fp-business-apps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
  pointer-events: none;
}

.fp-business-apps-section .container {
  position: relative;
  z-index: 2;
}

.fp-business-apps-section .section-badge {
  background: rgba(255,138,31,.15) !important;
  border: 1px solid rgba(255,138,31,.36) !important;
  color: #ffb35c !important;
}

.fp-business-apps-section .section-title {
  color: #ffffff !important;
}

.fp-business-apps-section .section-subtitle {
  color: rgba(255,255,255,.72) !important;
}

.fp-business-apps-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
}

.fp-business-app-card {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
  transition:
    transform .3s cubic-bezier(.2,.8,.2,1),
    box-shadow .3s cubic-bezier(.2,.8,.2,1);
}

.fp-business-app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 92px rgba(0,0,0,.32);
}

.fp-business-app-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #061f3d;
}

.fp-business-app-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .45s ease;
}

.fp-business-app-card:hover .fp-business-app-img img {
  transform: scale(1.07);
}

.fp-business-app-img .media-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.fp-business-app-body {
  padding: 22px;
}

.fp-business-app-body h3 {
  color: #061f3d;
  font-size: 1.28rem;
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 950;
}

.fp-business-app-body p {
  min-height: 74px;
  margin-top: 12px;
  color: #647083;
  font-size: .92rem;
  line-height: 1.55;
}

.fp-business-app-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.fp-business-btn {
  min-height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 900;
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease,
    box-shadow .25s ease;
}

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

.fp-business-btn-light {
  background: #eef4fa;
  color: #061f3d;
}

.fp-business-btn-orange {
  background: #ff8a1f;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(255,138,31,.26);
}

.fp-business-btn-orange:hover {
  background: #ff7610;
}

.fp-business-more-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.fp-business-more-pill {
  min-height: 56px;
  padding: 14px 22px 14px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #ff8a1f;
  color: #ffffff;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 950;
  box-shadow: 0 20px 44px rgba(255,138,31,.30);
  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.fp-business-more-pill span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  font-size: 1.2rem;
}

.fp-business-more-pill:hover {
  transform: translateY(-3px);
  background: #ff7610;
  box-shadow: 0 26px 58px rgba(255,138,31,.38);
}

@media (max-width: 900px) {
  .fp-business-apps-grid {
    grid-template-columns: 1fr !important;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .fp-business-apps-section {
    padding: 78px 0 88px !important;
  }

  .fp-business-app-card {
    border-radius: 26px;
  }

  .fp-business-app-body {
    padding: 18px;
  }

  .fp-business-app-actions {
    grid-template-columns: 1fr;
  }

  .fp-business-more-pill {
    width: 100%;
    justify-content: center;
  }
}
/* ============================================================
   PLANTILLAS / CURSOS / PROMPTS WEB
   TAMAÑO DEFINIDO + CARD VISIBLE
============================================================ */

.fp-template-layer-section {
  height: 112svh !important;
  min-height: 112svh !important;
  max-height: 112svh !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background: #f8f7f3 !important;
}

.fp-template-layer-section .container {
  height: 112svh !important;
  min-height: 112svh !important;
  max-height: 112svh !important;
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-rows: 250px 1fr !important;
  align-items: stretch !important;
  padding-top: 92px !important;
  padding-bottom: 44px !important;
}

.fp-template-layer-section .section-header {
  margin: 0 auto 18px !important;
  padding: 0 !important;
  max-width: 940px !important;
  text-align: center !important;
  align-self: end !important;
}

.fp-template-layer-section .section-badge {
  display: none !important;
}

.fp-template-layer-section .section-title {
  color: #1f1f1f !important;
  font-family: "Inter", sans-serif !important;
  font-size: clamp(3rem, 5vw, 5.4rem) !important;
  line-height: .88 !important;
  font-weight: 800 !important;
  letter-spacing: -.075em !important;
  margin: 0 !important;
}

.fp-template-layer-section .section-subtitle {
  max-width: 760px !important;
  margin: 18px auto 0 !important;
  color: #666666 !important;
  font-family: "Inter", sans-serif !important;
  font-size: 1.02rem !important;
  line-height: 1.45 !important;
}

.fp-template-layer-shell {
  display: block !important;
  position: relative !important;
  height: 100% !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.fp-template-layer-track {
  position: relative !important;
  height: 100% !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.fp-template-layer-sticky {
  position: relative !important;
  top: auto !important;
  width: 100% !important;
  height: 100% !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.fp-template-layer-stage {
  position: relative !important;
  width: min(1240px, 88vw) !important;
  height: min(560px, 100%) !important;
  min-height: 500px !important;
  overflow: hidden !important;
  border-radius: 36px !important;
}

.fp-template-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  will-change: transform !important;
  transition: none !important;
}
.fp-template-slide-card {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid rgba(6,31,61,.10);
  box-shadow:
    0 28px 80px rgba(6,31,61,.12),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.fp-template-copy {
  padding: 14px 10px 14px 8px;
}

.fp-template-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(1,46,70,.06);
  border: 1px solid rgba(1,46,70,.10);
  color: #012e46;
  font-family: "Inter", sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.fp-template-copy h3 {
  margin-top: 18px;
  color: #1f1f1f;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 800;
}

.fp-template-copy p {
  max-width: 520px;
  margin-top: 18px;
  color: #666666;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.5;
  font-weight: 400;
}

.fp-template-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.fp-template-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4f4f1;
  border: 1px solid rgba(6,31,61,.08);
  color: #333333;
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  font-weight: 600;
}

.fp-template-btn {
  width: fit-content;
  min-height: 48px;
  margin-top: 26px;
  padding: 12px 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: .96rem;
  font-weight: 700;
  transition:
    transform .22s cubic-bezier(.4, 0, .2, 1),
    box-shadow .22s cubic-bezier(.4, 0, .2, 1),
    filter .22s ease;
}

.fp-template-btn:hover {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 transparent;
  filter: brightness(.98);
}

.fp-template-btn.blue {
  background: #0b5ed7;
  color: #ffffff;
  box-shadow: 4px 4px 0 #083f92;
}

.fp-template-btn.yellow {
  background: #f5b301;
  color: #1f1f1f;
  box-shadow: 4px 4px 0 #c08800;
}

.fp-template-btn.red {
  background: #e53935;
  color: #ffffff;
  box-shadow: 4px 4px 0 #aa1f1c;
}

.fp-template-media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  border-radius: 26px;
  overflow: hidden;
  background: #ece7df;
  box-shadow: 0 20px 48px rgba(6,31,61,.08);
}

.fp-template-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.fp-template-slide.active .fp-template-media img {
  transform: scale(1.03);
}

.fp-template-dots {
  position: absolute;
  right: 18px;
  top: 50%;
  z-index: 12;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
}

.fp-template-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(1,46,70,.18);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.fp-template-dots button.active {
  background: #012e46;
  transform: scale(1.3);
}

@media (max-width: 980px) {
  
  .fp-template-layer-stage {
    width: min(100%, 760px);
    height: min(78svh, 760px);
  }

  .fp-template-slide-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .fp-template-copy {
    padding: 4px 2px 0;
  }

  .fp-template-media {
    min-height: 320px;
  }

  .fp-template-dots {
    right: 12px;
  }
}

@media (max-width: 680px) {
  .fp-template-layer-section {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    padding: 0 !important;
  }

  .fp-template-layer-section .container {
    height: 100svh !important;
    padding-top: 78px !important;
    padding-bottom: 18px !important;
  }

  .fp-template-layer-section .section-header {
    margin-bottom: 14px !important;
  }

  .fp-template-layer-section .section-title {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .fp-template-layer-section .section-subtitle {
    font-size: .86rem !important;
    line-height: 1.35 !important;
    margin-top: 10px !important;
  }

  .fp-template-layer-stage {
    width: min(100%, 94vw) !important;
    height: min(520px, 100%) !important;
    min-height: 470px !important;
    border-radius: 26px !important;
  }

  .fp-template-slide-card {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 26px !important;
  }

  .fp-template-copy h3 {
    font-size: clamp(1.55rem, 8vw, 2.35rem) !important;
    margin-top: 10px !important;
  }

  .fp-template-copy p {
    font-size: .82rem !important;
    line-height: 1.35 !important;
    margin-top: 10px !important;
  }

  .fp-template-tags {
    gap: 7px !important;
    margin-top: 10px !important;
  }

  .fp-template-tags span {
    font-size: .68rem !important;
    padding: 6px 9px !important;
  }

  .fp-template-btn {
    width: 100% !important;
    min-height: 42px !important;
    margin-top: 12px !important;
    border-radius: 14px !important;
  }

  .fp-template-media {
    min-height: 205px !important;
    border-radius: 20px !important;
  }

  .fp-template-dots {
    display: none !important;
  }
}
/* ============================================================
   BLOQUE CSS: PLANTILLAS Y PROMPTS
============================================================ */

.fp-resources-section {
  padding: 96px 0 110px !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background: #f8f7f3 !important;
}

.fp-resources-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.fp-resources-section .section-header {
  max-width: 860px !important;
  margin: 0 auto 58px !important;
  text-align: center !important;
}

.fp-resources-section .section-badge {
  display: none !important;
}

.fp-resources-section .section-title {
  margin: 0 !important;
  color: #202020 !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem) !important;
  line-height: .92 !important;
  letter-spacing: -.075em !important;
  font-weight: 850 !important;
}

.fp-resources-section .section-subtitle {
  max-width: 720px !important;
  margin: 16px auto 0 !important;
  color: #666666 !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
}

.fp-resources-list {
  display: grid !important;
  gap: 42px !important;
}

.fp-resource-row {
  display: grid !important;
  grid-template-columns: 5fr 7fr !important;
  gap: 44px !important;
  align-items: center !important;
  padding: 0 !important;
}

.fp-resource-row.reverse .fp-resource-copy {
  order: 2 !important;
}

.fp-resource-row.reverse .fp-resource-image {
  order: 1 !important;
}

.fp-resource-copy {
  min-width: 0 !important;
}

.fp-resource-badge {
  display: inline-flex !important;
  width: fit-content !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(1,46,70,.06) !important;
  border: 1px solid rgba(1,46,70,.10) !important;
  color: #012e46 !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: .76rem !important;
  font-weight: 750 !important;
}

.fp-resource-copy h3 {
  max-width: 520px !important;
  margin: 20px 0 0 !important;
  color: #202020 !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: clamp(2rem, 3.8vw, 4rem) !important;
  line-height: .94 !important;
  letter-spacing: -.075em !important;
  font-weight: 850 !important;
}

.fp-resource-copy p {
  max-width: 520px !important;
  margin: 18px 0 0 !important;
  color: #666666 !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 1.02rem !important;
  line-height: 1.5 !important;
}

.fp-resource-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 9px !important;
  margin-top: 22px !important;
}

.fp-resource-tags span {
  padding: 8px 12px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 1px solid rgba(6,31,61,.08) !important;
  color: #333333 !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: .76rem !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 20px rgba(6,31,61,.05) !important;
}

.fp-resource-btn {
  width: fit-content !important;
  min-height: 48px !important;
  margin-top: 26px !important;
  padding: 12px 24px !important;
  border-radius: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: .96rem !important;
  font-weight: 800 !important;
  transition:
    transform .22s cubic-bezier(.4, 0, .2, 1),
    box-shadow .22s cubic-bezier(.4, 0, .2, 1),
    filter .22s ease !important;
}

.fp-resource-btn:hover {
  transform: translate(4px, 4px) !important;
  box-shadow: 0 0 0 transparent !important;
  filter: brightness(.98) !important;
}

.fp-resource-btn.blue {
  background: #0b5ed7 !important;
  color: #ffffff !important;
  box-shadow: 4px 4px 0 #083f92 !important;
}

.fp-resource-btn.yellow {
  background: #f5b301 !important;
  color: #202020 !important;
  box-shadow: 4px 4px 0 #c08800 !important;
}

.fp-resource-btn.red {
  background: #e53935 !important;
  color: #ffffff !important;
  box-shadow: 4px 4px 0 #aa1f1c !important;
}

.fp-resource-image {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  background: #ece7df !important;
  box-shadow: 0 24px 64px rgba(6,31,61,.12) !important;
  text-decoration: none !important;
}

.fp-resource-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1) !important;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1) !important;
}

.fp-resource-row:hover .fp-resource-image img {
  transform: scale(1.035) !important;
}

@media (max-width: 980px) {
  .fp-resource-row,
  .fp-resource-row.reverse {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .fp-resource-row.reverse .fp-resource-copy,
  .fp-resource-row.reverse .fp-resource-image {
    order: initial !important;
  }

  .fp-resources-list {
    gap: 64px !important;
  }
}

@media (max-width: 680px) {
  .fp-resources-section {
    padding: 78px 0 88px !important;
  }

  .fp-resources-section .section-header {
    margin-bottom: 38px !important;
  }

  .fp-resources-section .section-title {
    font-size: clamp(2rem, 10vw, 3.1rem) !important;
  }

  .fp-resources-section .section-subtitle {
    font-size: .88rem !important;
    line-height: 1.35 !important;
  }

  .fp-resource-copy h3 {
    font-size: clamp(1.85rem, 9vw, 2.8rem) !important;
  }

  .fp-resource-copy p {
    font-size: .9rem !important;
    line-height: 1.4 !important;
  }

  .fp-resource-btn {
    width: 100% !important;
  }

  .fp-resource-image {
    border-radius: 22px !important;
    aspect-ratio: 16 / 11 !important;
  }
}

/* ============================================================
   FIN BLOQUE CSS: PLANTILLAS Y PROMPTS
============================================================ */
/* ============================================================
   BLOQUE CSS: CURSOS — ESTILO APLICACIONES
============================================================ */

.fp-youtube-courses-section {
  padding: 110px 0 118px !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(7,117,216,.28), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255,138,31,.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(216,183,106,.13), transparent 32%),
    linear-gradient(135deg, #012e46 0%, #021f34 52%, #061f3d 100%) !important;
}

.fp-youtube-courses-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
  pointer-events: none;
}

.fp-youtube-courses-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.fp-youtube-courses-section .section-header {
  max-width: 860px !important;
  margin: 0 auto 46px !important;
  text-align: center !important;
}

.fp-youtube-courses-section .section-badge {
  background: rgba(255,138,31,.15) !important;
  border: 1px solid rgba(255,138,31,.36) !important;
  color: #ffb35c !important;
}

.fp-youtube-courses-section .section-title {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(2.2rem, 5vw, 4.8rem) !important;
  line-height: .95 !important;
  letter-spacing: -.075em !important;
  font-weight: 950 !important;
}

.fp-youtube-courses-section .section-subtitle {
  max-width: 680px !important;
  margin: 18px auto 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.fp-youtube-courses-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
}

.fp-youtube-course-card {
  overflow: hidden !important;
  border-radius: 32px !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.24) !important;
  transition:
    transform .3s cubic-bezier(.2,.8,.2,1),
    box-shadow .3s cubic-bezier(.2,.8,.2,1),
    border-color .3s ease !important;
}

.fp-youtube-course-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 38px 92px rgba(0,0,0,.32) !important;
  border-color: rgba(255,255,255,.38) !important;
}

.fp-youtube-course-img {
  position: relative !important;
  display: block !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  background: #061f3d !important;
  text-decoration: none !important;
}

.fp-youtube-course-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1.02) !important;
  transition: transform .45s ease, filter .35s ease !important;
}

.fp-youtube-course-card:hover .fp-youtube-course-img img {
  transform: scale(1.07) !important;
  filter: saturate(1.04) contrast(1.03) !important;
}

.fp-youtube-course-code {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 5 !important;
  padding: 8px 12px !important;
  border-radius: 12px !important;
  background: rgba(6,31,61,.92) !important;
  color: #ffb35c !important;
  font-size: .78rem !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 28px rgba(0,0,0,.18) !important;
}

.fp-youtube-play {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  z-index: 6 !important;
  transform: translate(-50%, -50%) scale(.94) !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255,255,255,.94) !important;
  color: #061f3d !important;
  font-size: 1.2rem !important;
  font-weight: 950 !important;
  box-shadow: 0 18px 38px rgba(0,0,0,.22) !important;
  transition: transform .25s ease, background .25s ease !important;
}

.fp-youtube-course-card:hover .fp-youtube-play {
  transform: translate(-50%, -50%) scale(1.05) !important;
  background: #ffffff !important;
}

.fp-youtube-course-body {
  padding: 22px !important;
}

.fp-youtube-course-body h3 {
  margin: 0 !important;
  color: #061f3d !important;
  font-size: 1.28rem !important;
  line-height: 1.12 !important;
  letter-spacing: -.045em !important;
  font-weight: 950 !important;
}

.fp-youtube-course-body p {
  min-height: 66px !important;
  margin-top: 12px !important;
  color: #647083 !important;
  font-size: .92rem !important;
  line-height: 1.55 !important;
}

.fp-youtube-course-plans,
.fp-youtube-course-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 14px !important;
}

.fp-youtube-course-plans span {
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: rgba(255,138,31,.12) !important;
  border: 1px solid rgba(255,138,31,.24) !important;
  color: #c76708 !important;
  font-size: .72rem !important;
  font-weight: 900 !important;
}

.fp-youtube-course-tags span {
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: #edf4fb !important;
  color: #061f3d !important;
  font-size: .75rem !important;
  font-weight: 800 !important;
}

.fp-youtube-course-footer {
  padding: 0 22px 22px !important;
}

.fp-youtube-course-category {
  margin: 4px 0 14px !important;
  color: #647083 !important;
  font-size: .86rem !important;
  font-weight: 800 !important;
}

.fp-youtube-course-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

.fp-youtube-preview-btn,
.fp-youtube-wa-btn {
  min-height: 46px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 11px 15px !important;
  text-decoration: none !important;
  font-size: .84rem !important;
  font-weight: 900 !important;
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease,
    box-shadow .25s ease !important;
}

.fp-youtube-preview-btn {
  background: #eef4fa !important;
  color: #061f3d !important;
}

.fp-youtube-wa-btn {
  background: #ff8a1f !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(255,138,31,.26) !important;
}

.fp-youtube-preview-btn:hover,
.fp-youtube-wa-btn:hover {
  transform: translateY(-2px) !important;
}

.fp-youtube-courses-subscribe-wrap {
  grid-column: 1 / -1 !important;
  display: flex !important;
  justify-content: center !important;
  margin-top: 38px !important;
}

.fp-youtube-subscribe-btn {
  min-height: 56px !important;
  padding: 14px 26px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ff8a1f !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: .95rem !important;
  font-weight: 950 !important;
  box-shadow: 0 20px 44px rgba(255,138,31,.30) !important;
  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease !important;
}

.fp-youtube-subscribe-btn:hover {
  transform: translateY(-3px) !important;
  background: #ff7610 !important;
  box-shadow: 0 26px 58px rgba(255,138,31,.38) !important;
}

@media (max-width: 900px) {
  .fp-youtube-courses-grid {
    grid-template-columns: 1fr !important;
    max-width: 520px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 680px) {
  .fp-youtube-courses-section {
    padding: 78px 0 88px !important;
  }

  .fp-youtube-courses-section .section-header {
    margin-bottom: 30px !important;
  }

  .fp-youtube-courses-section .section-title {
    font-size: clamp(2rem, 11vw, 3.2rem) !important;
  }

  .fp-youtube-course-card {
    border-radius: 26px !important;
  }

  .fp-youtube-course-body {
    padding: 18px !important;
  }

  .fp-youtube-course-actions {
    grid-template-columns: 1fr !important;
  }

  .fp-youtube-subscribe-btn {
    width: 100% !important;
  }
}

/* ============================================================
   FIN BLOQUE CSS: CURSOS — ESTILO APLICACIONES
============================================================ */
/* ============================================================
   BLOQUE CSS: FAQ AZUL + CONTACTO/REDES + FOOTER ACADEMY
============================================================ */

/* RESPUESTAS DIRECTAS */
.fp-faq-blue-section {
  padding: 96px 0 104px !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(7,117,216,.28), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255,138,31,.16), transparent 24%),
    linear-gradient(135deg, #012e46 0%, #021f34 52%, #061f3d 100%) !important;
}

.fp-faq-blue-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
  pointer-events: none;
}

.fp-faq-blue-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.fp-faq-blue-section .section-badge {
  background: rgba(255,138,31,.15) !important;
  border: 1px solid rgba(255,138,31,.36) !important;
  color: #ffb35c !important;
}

.fp-faq-blue-section .section-title,
.fp-faq-blue-section h2 {
  color: #ffffff !important;
}

.fp-faq-blue-section .section-subtitle,
.fp-faq-blue-section p {
  color: rgba(255,255,255,.72) !important;
}

.fp-faq-blue-item {
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,.18) !important;
}

.fp-faq-blue-item .faq-question span {
  color: #061f3d !important;
}

.fp-faq-blue-item .faq-answer-inner {
  color: #647083 !important;
}

/* CONTACTO + REDES */
.fp-contact-social-section {
  padding: 96px 0 104px !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background: #f8f7f3 !important;
}

.fp-contact-social-card {
  display: grid !important;
  grid-template-columns: 1.05fr .95fr !important;
  gap: 28px !important;
  align-items: stretch !important;
  padding: 28px !important;
  border-radius: 36px !important;
  background:
    radial-gradient(circle at 14% 12%, rgba(255,138,31,.13), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fc 100%) !important;
  border: 1px solid rgba(6,31,61,.10) !important;
  box-shadow: 0 28px 80px rgba(6,31,61,.12) !important;
}

.fp-contact-main,
.fp-social-main {
  padding: 28px !important;
  border-radius: 28px !important;
}

.fp-contact-main {
  background:
    radial-gradient(circle at 18% 20%, rgba(7,117,216,.24), transparent 32%),
    linear-gradient(135deg, #012e46 0%, #061f3d 100%) !important;
  color: #ffffff !important;
}

.fp-contact-main > span {
  display: inline-flex !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(255,138,31,.16) !important;
  border: 1px solid rgba(255,138,31,.34) !important;
  color: #ffb35c !important;
  font-size: .74rem !important;
  font-weight: 950 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

.fp-contact-main h2 {
  margin: 18px 0 0 !important;
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 4rem) !important;
  line-height: .94 !important;
  letter-spacing: -.07em !important;
  font-weight: 950 !important;
}

.fp-contact-main p {
  max-width: 620px !important;
  margin: 18px 0 0 !important;
  color: rgba(255,255,255,.76) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

.fp-contact-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 28px !important;
}

.fp-contact-btn {
  min-height: 52px !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  color: #ffffff !important;
  font-weight: 950 !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.22) !important;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease !important;
}

.fp-contact-btn:hover {
  transform: translateY(-3px) !important;
  filter: brightness(1.04) !important;
  box-shadow: 0 22px 44px rgba(0,0,0,.28) !important;
}

.fp-contact-btn svg {
  width: 28px !important;
  height: 28px !important;
}

.fp-contact-btn.whatsapp {
  background: #22c55e !important;
}

.fp-contact-btn.email {
  background: #0875d8 !important;
}

.fp-social-main {
  background: #ffffff !important;
  border: 1px solid rgba(6,31,61,.08) !important;
}

.fp-social-main h3 {
  margin: 0 !important;
  color: #061f3d !important;
  font-size: clamp(1.8rem, 3vw, 3rem) !important;
  line-height: .96 !important;
  letter-spacing: -.06em !important;
  font-weight: 950 !important;
}

.fp-social-main p {
  margin: 12px 0 0 !important;
  color: #647083 !important;
  font-size: .95rem !important;
  line-height: 1.5 !important;
}

.fp-social-icon-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  margin-top: 24px !important;
}

.fp-social-icon-pill {
  min-height: 74px !important;
  padding: 12px !important;
  border-radius: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #f6f9fc !important;
  border: 1px solid rgba(6,31,61,.08) !important;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(6,31,61,.07), inset 0 1px 0 rgba(255,255,255,.9) !important;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease !important;
}

.fp-social-icon-pill:hover {
  transform: translateY(-5px) scale(1.015) !important;
  background: #ffffff !important;
  box-shadow: 0 22px 46px rgba(6,31,61,.13), inset 0 1px 0 rgba(255,255,255,.9) !important;
}

.fp-social-icon-pill span {
  width: 44px !important;
  height: 44px !important;
  border-radius: 16px !important;
  display: grid !important;
  place-items: center !important;
  background: #ffffff !important;
  box-shadow: 0 10px 22px rgba(6,31,61,.12) !important;
}

.fp-social-icon-pill svg {
  width: 34px !important;
  height: 34px !important;
}

.fp-social-icon-pill strong {
  color: #061f3d !important;
  font-size: .92rem !important;
  font-weight: 950 !important;
}

/* Oculta la sección vieja de redes si quedó en el DOM */
#redes,
.social-section {
  display: none !important;
}

/* FOOTER */
.fp-academy-footer {
  margin: 0 !important;
  padding: 0 !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(7,117,216,.18), transparent 28%),
    linear-gradient(135deg, #061f3d 0%, #021f34 100%) !important;
  color: #ffffff !important;
  overflow: hidden !important;
}

.fp-academy-footer-inner {
  display: grid !important;
  grid-template-columns: 1.15fr 1.85fr !important;
  gap: 42px !important;
  padding: 58px 0 !important;
}

.fp-academy-footer-brand {
  max-width: 440px !important;
}

.fp-footer-logo {
  width: 54px !important;
  height: 54px !important;
  border-radius: 18px !important;
  display: grid !important;
  place-items: center !important;
  background: #ffffff !important;
  color: #061f3d !important;
  font-weight: 950 !important;
  box-shadow: 0 18px 38px rgba(0,0,0,.22) !important;
}

.fp-academy-footer-brand h2 {
  margin: 18px 0 0 !important;
  color: #ffffff !important;
  font-size: 1.5rem !important;
  font-weight: 950 !important;
  letter-spacing: -.04em !important;
}

.fp-academy-footer-brand p {
  margin: 14px 0 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-size: .96rem !important;
  line-height: 1.6 !important;
}

.fp-academy-footer-columns {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.fp-footer-col h3 {
  margin: 0 0 14px !important;
  color: #ffb35c !important;
  font-size: .84rem !important;
  font-weight: 950 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

.fp-footer-col a {
  display: block !important;
  width: fit-content !important;
  margin-top: 10px !important;
  color: rgba(255,255,255,.72) !important;
  text-decoration: none !important;
  font-size: .94rem !important;
  font-weight: 750 !important;
  transition: color .22s ease, transform .22s ease !important;
}

.fp-footer-col a:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.fp-academy-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10) !important;
  padding: 18px 0 !important;
  color: rgba(255,255,255,.62) !important;
  font-size: .84rem !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  .fp-contact-social-card,
  .fp-academy-footer-inner {
    grid-template-columns: 1fr !important;
  }

  .fp-academy-footer-columns {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 640px) {
  .fp-faq-blue-section,
  .fp-contact-social-section {
    padding: 78px 0 88px !important;
  }

  .fp-contact-social-card {
    padding: 18px !important;
    border-radius: 28px !important;
  }

  .fp-contact-main,
  .fp-social-main {
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .fp-social-icon-grid,
  .fp-academy-footer-columns {
    grid-template-columns: 1fr !important;
  }

  .fp-contact-actions {
    display: grid !important;
  }

  .fp-contact-btn {
    justify-content: center !important;
  }

  .fp-academy-footer-inner {
    padding: 44px 0 !important;
  }
}

/* ============================================================
   FIN BLOQUE CSS: FAQ AZUL + CONTACTO/REDES + FOOTER ACADEMY
============================================================ */
/* ============================================================
   BLOQUE CSS: FAQ AZUL + CONTACTO/REDES + FOOTER ACADEMY
============================================================ */

/* RESPUESTAS DIRECTAS */
.fp-faq-blue-section {
  padding: 96px 0 104px !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(7,117,216,.28), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255,138,31,.16), transparent 24%),
    linear-gradient(135deg, #012e46 0%, #021f34 52%, #061f3d 100%) !important;
}

.fp-faq-blue-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
  pointer-events: none;
}

.fp-faq-blue-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.fp-faq-blue-section .section-badge {
  background: rgba(255,138,31,.15) !important;
  border: 1px solid rgba(255,138,31,.36) !important;
  color: #ffb35c !important;
}

.fp-faq-blue-section .section-title,
.fp-faq-blue-section h2 {
  color: #ffffff !important;
}

.fp-faq-blue-section .section-subtitle,
.fp-faq-blue-section p {
  color: rgba(255,255,255,.72) !important;
}

.fp-faq-blue-item {
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,.18) !important;
}

.fp-faq-blue-item .faq-question span {
  color: #061f3d !important;
}

.fp-faq-blue-item .faq-answer-inner {
  color: #647083 !important;
}

/* CONTACTO + REDES */
.fp-contact-social-section {
  padding: 96px 0 104px !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background: #f8f7f3 !important;
}

.fp-contact-social-card {
  display: grid !important;
  grid-template-columns: 1.05fr .95fr !important;
  gap: 28px !important;
  align-items: stretch !important;
  padding: 28px !important;
  border-radius: 36px !important;
  background:
    radial-gradient(circle at 14% 12%, rgba(255,138,31,.13), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fc 100%) !important;
  border: 1px solid rgba(6,31,61,.10) !important;
  box-shadow: 0 28px 80px rgba(6,31,61,.12) !important;
}

.fp-contact-main,
.fp-social-main {
  padding: 28px !important;
  border-radius: 28px !important;
}

.fp-contact-main {
  background:
    radial-gradient(circle at 18% 20%, rgba(7,117,216,.24), transparent 32%),
    linear-gradient(135deg, #012e46 0%, #061f3d 100%) !important;
  color: #ffffff !important;
}

.fp-contact-main > span {
  display: inline-flex !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(255,138,31,.16) !important;
  border: 1px solid rgba(255,138,31,.34) !important;
  color: #ffb35c !important;
  font-size: .74rem !important;
  font-weight: 950 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

.fp-contact-main h2 {
  margin: 18px 0 0 !important;
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 4rem) !important;
  line-height: .94 !important;
  letter-spacing: -.07em !important;
  font-weight: 950 !important;
}

.fp-contact-main p {
  max-width: 620px !important;
  margin: 18px 0 0 !important;
  color: rgba(255,255,255,.76) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

.fp-contact-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 28px !important;
}

.fp-contact-btn {
  min-height: 52px !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  color: #ffffff !important;
  font-weight: 950 !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.22) !important;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease !important;
}

.fp-contact-btn:hover {
  transform: translateY(-3px) !important;
  filter: brightness(1.04) !important;
  box-shadow: 0 22px 44px rgba(0,0,0,.28) !important;
}

.fp-contact-btn svg {
  width: 28px !important;
  height: 28px !important;
}

.fp-contact-btn.whatsapp {
  background: #22c55e !important;
}

.fp-contact-btn.email {
  background: #0875d8 !important;
}

.fp-social-main {
  background: #ffffff !important;
  border: 1px solid rgba(6,31,61,.08) !important;
}

.fp-social-main h3 {
  margin: 0 !important;
  color: #061f3d !important;
  font-size: clamp(1.8rem, 3vw, 3rem) !important;
  line-height: .96 !important;
  letter-spacing: -.06em !important;
  font-weight: 950 !important;
}

.fp-social-main p {
  margin: 12px 0 0 !important;
  color: #647083 !important;
  font-size: .95rem !important;
  line-height: 1.5 !important;
}

.fp-social-icon-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  margin-top: 24px !important;
}

.fp-social-icon-pill {
  min-height: 74px !important;
  padding: 12px !important;
  border-radius: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #f6f9fc !important;
  border: 1px solid rgba(6,31,61,.08) !important;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(6,31,61,.07), inset 0 1px 0 rgba(255,255,255,.9) !important;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease !important;
}

.fp-social-icon-pill:hover {
  transform: translateY(-5px) scale(1.015) !important;
  background: #ffffff !important;
  box-shadow: 0 22px 46px rgba(6,31,61,.13), inset 0 1px 0 rgba(255,255,255,.9) !important;
}

.fp-social-icon-pill span {
  width: 44px !important;
  height: 44px !important;
  border-radius: 16px !important;
  display: grid !important;
  place-items: center !important;
  background: #ffffff !important;
  box-shadow: 0 10px 22px rgba(6,31,61,.12) !important;
}

.fp-social-icon-pill svg {
  width: 34px !important;
  height: 34px !important;
}

.fp-social-icon-pill strong {
  color: #061f3d !important;
  font-size: .92rem !important;
  font-weight: 950 !important;
}

/* Oculta la sección vieja de redes si quedó en el DOM */
#redes,
.social-section {
  display: none !important;
}

/* FOOTER */
.fp-academy-footer {
  margin: 0 !important;
  padding: 0 !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(7,117,216,.18), transparent 28%),
    linear-gradient(135deg, #061f3d 0%, #021f34 100%) !important;
  color: #ffffff !important;
  overflow: hidden !important;
}

.fp-academy-footer-inner {
  display: grid !important;
  grid-template-columns: 1.15fr 1.85fr !important;
  gap: 42px !important;
  padding: 58px 0 !important;
}

.fp-academy-footer-brand {
  max-width: 440px !important;
}

.fp-footer-logo {
  width: 54px !important;
  height: 54px !important;
  border-radius: 18px !important;
  display: grid !important;
  place-items: center !important;
  background: #ffffff !important;
  color: #061f3d !important;
  font-weight: 950 !important;
  box-shadow: 0 18px 38px rgba(0,0,0,.22) !important;
}

.fp-academy-footer-brand h2 {
  margin: 18px 0 0 !important;
  color: #ffffff !important;
  font-size: 1.5rem !important;
  font-weight: 950 !important;
  letter-spacing: -.04em !important;
}

.fp-academy-footer-brand p {
  margin: 14px 0 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-size: .96rem !important;
  line-height: 1.6 !important;
}

.fp-academy-footer-columns {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.fp-footer-col h3 {
  margin: 0 0 14px !important;
  color: #ffb35c !important;
  font-size: .84rem !important;
  font-weight: 950 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

.fp-footer-col a {
  display: block !important;
  width: fit-content !important;
  margin-top: 10px !important;
  color: rgba(255,255,255,.72) !important;
  text-decoration: none !important;
  font-size: .94rem !important;
  font-weight: 750 !important;
  transition: color .22s ease, transform .22s ease !important;
}

.fp-footer-col a:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.fp-academy-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10) !important;
  padding: 18px 0 !important;
  color: rgba(255,255,255,.62) !important;
  font-size: .84rem !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  .fp-contact-social-card,
  .fp-academy-footer-inner {
    grid-template-columns: 1fr !important;
  }

  .fp-academy-footer-columns {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 640px) {
  .fp-faq-blue-section,
  .fp-contact-social-section {
    padding: 78px 0 88px !important;
  }

  .fp-contact-social-card {
    padding: 18px !important;
    border-radius: 28px !important;
  }

  .fp-contact-main,
  .fp-social-main {
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .fp-social-icon-grid,
  .fp-academy-footer-columns {
    grid-template-columns: 1fr !important;
  }

  .fp-contact-actions {
    display: grid !important;
  }

  .fp-contact-btn {
    justify-content: center !important;
  }

  .fp-academy-footer-inner {
    padding: 44px 0 !important;
  }
}

/* ============================================================
   FIN BLOQUE CSS: FAQ AZUL + CONTACTO/REDES + FOOTER ACADEMY
============================================================ */
/* ============================================================
   FER PAUL ADMIN — FULL SCREEN APP
============================================================ */

body.fp-admin-page-open {
  overflow: hidden;
}

#fp-admin-panel {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  background: #f3f6fa;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#fp-admin-panel.open {
  display: block;
}

/* LOGIN SCREEN */

.fp-admin-login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 20%, rgba(8, 117, 216, .18), transparent 26%),
    radial-gradient(circle at 90% 80%, rgba(19, 184, 170, .18), transparent 28%),
    linear-gradient(135deg, #081a33, #0f2748);
  display: grid;
  place-items: center;
  padding: 22px;
}

.fp-admin-login-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 30px;
  padding: 34px 30px 30px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .28);
}

.fp-admin-login-logo {
  text-align: center;
  margin-bottom: 22px;
}

.fp-admin-login-logo strong {
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.fp-admin-login-logo .c1 { color: #4285F4; }
.fp-admin-login-logo .c2 { color: #EA4335; }
.fp-admin-login-logo .c3 { color: #FBBC04; }
.fp-admin-login-logo .c4 { color: #4285F4; }
.fp-admin-login-logo .c5 { color: #34A853; }
.fp-admin-login-logo .c6 { color: #EA4335; }
.fp-admin-login-logo .c7 { color: #FBBC04; }

.fp-admin-login-logo span {
  display: block;
  margin-top: 8px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
}

.fp-admin-login-card h2 {
  margin: 0;
  text-align: center;
  color: #111827;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.fp-admin-login-card p {
  margin: 14px 0 26px;
  text-align: center;
  color: #6b7280;
  font-size: 17px;
}

.fp-admin-login-form {
  display: grid;
  gap: 18px;
}

.fp-admin-login-field {
  display: grid;
  gap: 9px;
}

.fp-admin-login-field label {
  color: #374151;
  font-size: 15px;
  font-weight: 850;
}

.fp-required {
  color: #ef4444;
}

.fp-admin-login-input-wrap {
  position: relative;
}

.fp-admin-login-input {
  width: 100%;
  min-height: 52px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #111827;
  padding: 0 16px;
  font-size: 16px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}

.fp-admin-login-input:focus {
  border-color: #4285f4;
  box-shadow: 0 0 0 4px rgba(66, 133, 244, .13);
  background: #f8fbff;
}

.fp-admin-login-input.blue {
  background: #eaf2ff;
  border-color: #dbeafe;
}

.fp-admin-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  translate: 0 -50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.fp-admin-link-btn {
  width: fit-content;
  border: 0;
  background: transparent;
  color: #3b82f6;
  font-size: 15px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.fp-admin-login-submit {
  min-height: 54px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, #4285F4, #2563eb);
  color: #fff;
  font-weight: 950;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(37, 99, 235, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.fp-admin-login-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(37, 99, 235, .34);
}

.fp-admin-login-message {
  min-height: 50px;
  border-radius: 15px;
  background: #f8fafc;
  color: #6b7280;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 15px;
}

.fp-admin-login-cancel {
  min-height: 50px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #4b5563;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
}

/* ADMIN APP */

.fp-admin-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 292px 1fr;
  background: #f3f6fa;
}

.fp-admin-sidebar {
  background: #072747;
  color: #fff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: 8px 0 28px rgba(15, 23, 42, .12);
}

.fp-admin-brand {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.fp-admin-brand-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.fp-admin-brand strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.fp-admin-brand span {
  display: block;
  margin-top: 4px;
  color: #c7d2fe;
  font-size: 12px;
}

.fp-admin-menu {
  padding: 24px 10px;
}

.fp-admin-menu-label {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0 14px 14px;
}

.fp-admin-nav-btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
  transition: background .2s ease, color .2s ease;
}

.fp-admin-nav-btn:hover,
.fp-admin-nav-btn.active {
  background: #2d9bf0;
  color: #fff;
}

.fp-admin-nav-btn svg {
  width: 22px;
  height: 22px;
}

.fp-admin-user-box {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.fp-admin-user-card {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fp-admin-avatar {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #0f4f89;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.fp-admin-user-card strong {
  display: block;
  font-size: 13px;
}

.fp-admin-user-card span {
  color: #cbd5e1;
  font-size: 12px;
}

.fp-admin-main {
  min-width: 0;
  display: grid;
  grid-template-rows: 56px 1fr;
}

.fp-admin-topbar {
  background: #fff;
  border-bottom: 1px solid #dbe3ee;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
}

.fp-admin-top-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fp-admin-top-left h2 {
  margin: 0;
  color: #061327;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.fp-admin-top-left span {
  color: #64748b;
  font-size: 13px;
}

.fp-admin-menu-toggle {
  width: 44px;
  height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
}

.fp-admin-top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fp-admin-btn {
  min-height: 42px;
  border-radius: 4px;
  border: 1px solid #d6e2f0;
  padding: 0 16px;
  font-weight: 950;
  cursor: pointer;
  background: #fff;
  color: #061327;
  font-size: 14px;
}

.fp-admin-btn.primary {
  background: #2d9bf0;
  color: #fff;
  border-color: #2d9bf0;
}

.fp-admin-btn.success {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}

.fp-admin-btn.danger {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fecaca;
}

.fp-admin-btn.soft {
  background: #f8fafc;
}

.fp-admin-btn.orange {
  background: #f59e0b;
  color: #fff;
  border-color: #f59e0b;
}

.fp-admin-content {
  overflow: auto;
  padding: 20px;
}

.fp-admin-kpi-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.fp-admin-kpi {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dbe3ee;
  box-shadow: 0 6px 16px rgba(15,23,42,.08);
  padding: 24px 20px;
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.fp-admin-kpi.open {
  background: #4caf50;
  color: #fff;
}

.fp-admin-kpi-icon {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: #2d9bf0;
  color: #fff;
  font-size: 24px;
}

.fp-admin-kpi.open .fp-admin-kpi-icon {
  background: rgba(255,255,255,.15);
}

.fp-admin-kpi small {
  display: block;
  font-size: 12px;
  color: #64748b;
  font-weight: 950;
  text-transform: uppercase;
}

.fp-admin-kpi.open small {
  color: rgba(255,255,255,.9);
}

.fp-admin-kpi strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  font-weight: 950;
}

.fp-admin-card {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(15,23,42,.07);
  margin-bottom: 18px;
}

.fp-admin-card-head {
  min-height: 62px;
  border-bottom: 1px solid #dbe3ee;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fp-admin-card-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 950;
  color: #061327;
}

.fp-admin-card-head p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
}

.fp-admin-card-body {
  padding: 18px;
}

.fp-admin-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.fp-admin-field {
  display: grid;
  gap: 6px;
}

.fp-admin-field.full {
  grid-column: 1 / -1;
}

.fp-admin-field.half {
  grid-column: span 2;
}

.fp-admin-field label {
  font-size: 13px;
  font-weight: 950;
  color: #061327;
}

.fp-admin-input,
.fp-admin-select,
.fp-admin-textarea {
  width: 100%;
  min-height: 45px;
  border: 1px solid #cfd8e3;
  border-radius: 4px;
  background: #fff;
  color: #111827;
  padding: 10px 12px;
  font-size: 15px;
  outline: none;
}

.fp-admin-textarea {
  min-height: 90px;
  resize: vertical;
}

.fp-admin-input:focus,
.fp-admin-select:focus,
.fp-admin-textarea:focus {
  border-color: #2d9bf0;
  box-shadow: 0 0 0 3px rgba(45,155,240,.12);
}

.fp-admin-table-wrap {
  overflow-x: auto;
}

.fp-admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.fp-admin-table th {
  background: #072747;
  color: #fff;
  text-align: left;
  padding: 13px 12px;
  font-size: 12px;
  text-transform: uppercase;
}

.fp-admin-table td {
  border-bottom: 1px solid #e2e8f0;
  padding: 12px;
  vertical-align: middle;
  color: #0f172a;
  font-size: 14px;
}

.fp-admin-table tr:hover td {
  background: #f8fafc;
}

.fp-admin-thumb {
  width: 68px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
  background: #e2e8f0;
}

.fp-admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 950;
}

.fp-admin-badge.free { background: #dcfce7; color: #15803d; }
.fp-admin-badge.pro { background: #ffedd5; color: #c2410c; }
.fp-admin-badge.public { background: #dbeafe; color: #1d4ed8; }
.fp-admin-badge.hidden { background: #f1f5f9; color: #475569; }
.fp-admin-badge.event { background: #eff6ff; color: #1d4ed8; }

.fp-admin-row-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.fp-admin-empty {
  padding: 30px;
  text-align: center;
  color: #64748b;
}

.fp-admin-screen {
  display: none;
}

.fp-admin-screen.active {
  display: block;
}

.fp-admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  background: rgba(3, 13, 28, .62);
  display: none;
  place-items: center;
  padding: 20px;
}

.fp-admin-modal.active {
  display: grid;
}

.fp-admin-modal-card {
  width: min(820px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
}

.fp-admin-modal-head {
  padding: 18px;
  border-bottom: 1px solid #dbe3ee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fp-admin-modal-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 950;
}

.fp-admin-modal-body {
  padding: 18px;
}

.fp-admin-modal-actions {
  padding: 18px;
  border-top: 1px solid #dbe3ee;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

@media (max-width: 980px) {
  .fp-admin-app {
    grid-template-columns: 1fr;
  }

  .fp-admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 292px;
    z-index: 20;
    transform: translateX(-100%);
    transition: transform .25s ease;
  }

  #fp-admin-panel.sidebar-open .fp-admin-sidebar {
    transform: translateX(0);
  }

  .fp-admin-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fp-admin-form-grid {
    grid-template-columns: 1fr;
  }

  .fp-admin-field.half {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .fp-admin-login-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .fp-admin-kpi-grid {
    grid-template-columns: 1fr;
  }

  .fp-admin-topbar {
    height: auto;
    min-height: 60px;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
  }

  .fp-admin-top-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .fp-admin-btn {
    flex: 1;
  }
}
/* ============================================================
   FIX LOGIN ADMIN FER PAUL
============================================================ */

.fp-admin-login-card {
  width: min(460px, 100%);
  padding: 32px 30px 28px;
  border-radius: 28px;
}

.fp-admin-login-logo {
  text-align: center;
  margin-bottom: 18px;
}

.fp-admin-login-logo strong {
  display: inline-block !important;
  color: #111827;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
}

.fp-admin-login-logo span {
  display: inline !important;
}

.fp-admin-login-card h2 {
  font-size: 24px;
  margin-top: 8px;
}

.fp-admin-login-card p {
  font-size: 15px;
  margin: 10px 0 22px;
}

.fp-admin-login-form {
  gap: 14px;
}

.fp-admin-login-input {
  min-height: 50px;
  font-size: 15px;
}

.fp-admin-login-submit {
  min-height: 52px;
}

.fp-admin-login-message {
  min-height: 48px;
  font-size: 14px;
}

@media (max-width: 520px) {
  .fp-admin-login-card {
    width: min(420px, 100%);
    padding: 28px 22px;
  }

  .fp-admin-login-logo strong {
    font-size: 30px;
  }
}
/* ============================================================
   FER PAUL ADMIN PRODUCCIÓN — FULL SCREEN
============================================================ */

body.fp-admin-page-open {
  overflow: hidden !important;
}

#fp-admin-panel {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  display: none;
  background: #f3f6fa;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#fp-admin-panel.open {
  display: block !important;
}

#fp-admin-panel * {
  box-sizing: border-box;
}

/* LOGIN */

.fp-prod-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 14% 18%, rgba(45, 155, 240, .24), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(19, 184, 170, .20), transparent 28%),
    linear-gradient(135deg, #07172b, #0d2a4d);
}

.fp-prod-login-card {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 34px 30px 30px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .30);
}

.fp-prod-login-logo {
  text-align: center;
  font-size: 36px;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: #101827;
  line-height: 1;
  margin-bottom: 18px;
}

.fp-prod-login-title {
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 950;
  color: #111827;
  letter-spacing: -0.035em;
}

.fp-prod-login-subtitle {
  margin: 10px 0 24px;
  text-align: center;
  color: #6b7280;
  font-size: 15px;
}

.fp-prod-login-form {
  display: grid;
  gap: 14px;
}

.fp-prod-field {
  display: grid;
  gap: 7px;
}

.fp-prod-field label {
  color: #374151;
  font-weight: 850;
  font-size: 14px;
}

.fp-prod-input,
.fp-prod-select,
.fp-prod-textarea {
  width: 100%;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}

.fp-prod-textarea {
  min-height: 88px;
  resize: vertical;
}

.fp-prod-input:focus,
.fp-prod-select:focus,
.fp-prod-textarea:focus {
  border-color: #2d9bf0;
  box-shadow: 0 0 0 3px rgba(45, 155, 240, .13);
}

.fp-prod-login-input-blue {
  background: #eaf2ff;
  border-color: #dbeafe;
}

.fp-prod-login-pass {
  position: relative;
}

.fp-prod-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}

.fp-prod-login-link {
  width: fit-content;
  border: 0;
  background: transparent;
  color: #2563eb;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.fp-prod-login-submit {
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #4285f4, #2563eb);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(37, 99, 235, .28);
}

.fp-prod-login-msg {
  min-height: 44px;
  border-radius: 10px;
  background: #f8fafc;
  color: #64748b;
  padding: 12px;
  font-size: 14px;
}

.fp-prod-login-cancel {
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #475569;
  font-weight: 850;
  cursor: pointer;
}

/* APP */

.fp-prod-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #f3f6fa;
}

.fp-prod-sidebar {
  background: #072747;
  color: #fff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: 8px 0 28px rgba(15, 23, 42, .12);
}

.fp-prod-brand {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.fp-prod-brand-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.fp-prod-brand strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
}

.fp-prod-brand span {
  display: block;
  color: #cbd5e1;
  font-size: 12px;
  margin-top: 4px;
}

.fp-prod-menu {
  padding: 18px 10px;
  overflow-y: auto;
}

.fp-prod-menu-label {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0 14px 12px;
}

.fp-prod-nav-btn {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.fp-prod-nav-btn:hover,
.fp-prod-nav-btn.active {
  background: #2d9bf0;
  color: #fff;
}

.fp-prod-nav-btn svg {
  width: 19px;
  height: 19px;
}

.fp-prod-sidebar-foot {
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.fp-prod-user {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.fp-prod-avatar {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #0f4f89;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.fp-prod-user strong {
  display: block;
  font-size: 13px;
}

.fp-prod-user span {
  display: block;
  color: #cbd5e1;
  font-size: 12px;
}

.fp-prod-main {
  min-width: 0;
  display: grid;
  grid-template-rows: 60px 1fr;
}

.fp-prod-topbar {
  background: #fff;
  border-bottom: 1px solid #dbe3ee;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
}

.fp-prod-top-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fp-prod-menu-toggle {
  width: 42px;
  height: 40px;
  border: 1px solid #cbd5e1;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
}

.fp-prod-top-title h2 {
  margin: 0;
  color: #061327;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.fp-prod-top-title span {
  color: #64748b;
  font-size: 13px;
}

.fp-prod-top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fp-prod-btn {
  min-height: 40px;
  border-radius: 5px;
  border: 1px solid #d6e2f0;
  padding: 0 14px;
  font-weight: 950;
  cursor: pointer;
  background: #fff;
  color: #061327;
  font-size: 13px;
}

.fp-prod-btn.primary {
  background: #2d9bf0;
  border-color: #2d9bf0;
  color: #fff;
}

.fp-prod-btn.success {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.fp-prod-btn.danger {
  background: #fee2e2;
  border-color: #fecaca;
  color: #dc2626;
}

.fp-prod-btn.orange {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #fff;
}

.fp-prod-btn.soft {
  background: #f8fafc;
}

.fp-prod-content {
  overflow: auto;
  padding: 20px;
}

.fp-prod-kpi-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.fp-prod-kpi {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #dbe3ee;
  box-shadow: 0 6px 16px rgba(15,23,42,.07);
  padding: 20px;
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fp-prod-kpi.open {
  background: #4caf50;
  color: #fff;
}

.fp-prod-kpi-icon {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: #2d9bf0;
  color: #fff;
  font-size: 22px;
}

.fp-prod-kpi small {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.fp-prod-kpi.open small {
  color: rgba(255,255,255,.9);
}

.fp-prod-kpi strong {
  display: block;
  margin-top: 5px;
  font-size: 26px;
  font-weight: 950;
}

.fp-prod-card {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 5px;
  box-shadow: 0 6px 16px rgba(15,23,42,.07);
  margin-bottom: 18px;
}

.fp-prod-card-head {
  min-height: 60px;
  border-bottom: 1px solid #dbe3ee;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fp-prod-card-head h3 {
  margin: 0;
  color: #061327;
  font-size: 19px;
  font-weight: 950;
}

.fp-prod-card-head p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
}

.fp-prod-card-body {
  padding: 18px;
}

.fp-prod-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.fp-prod-field.full {
  grid-column: 1 / -1;
}

.fp-prod-field.half {
  grid-column: span 2;
}

.fp-prod-table-wrap {
  overflow-x: auto;
}

.fp-prod-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.fp-prod-table th {
  background: #072747;
  color: #fff;
  text-align: left;
  padding: 12px;
  font-size: 12px;
  text-transform: uppercase;
}

.fp-prod-table td {
  border-bottom: 1px solid #e2e8f0;
  padding: 11px 12px;
  vertical-align: middle;
  color: #0f172a;
  font-size: 14px;
}

.fp-prod-table tr:hover td {
  background: #f8fafc;
}

.fp-prod-thumb {
  width: 68px;
  height: 44px;
  object-fit: cover;
  background: #e2e8f0;
  border-radius: 4px;
}

.fp-prod-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 950;
}

.fp-prod-badge.free { background: #dcfce7; color: #15803d; }
.fp-prod-badge.pro { background: #ffedd5; color: #c2410c; }
.fp-prod-badge.public { background: #dbeafe; color: #1d4ed8; }
.fp-prod-badge.hidden { background: #f1f5f9; color: #475569; }
.fp-prod-badge.event { background: #eff6ff; color: #1d4ed8; }
.fp-prod-badge.pay { background: #fef3c7; color: #92400e; }

.fp-prod-row-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.fp-prod-empty {
  padding: 28px;
  text-align: center;
  color: #64748b;
}

@media (max-width: 980px) {
  .fp-prod-app {
    grid-template-columns: 1fr;
  }

  .fp-prod-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 280px;
    z-index: 20;
    transform: translateX(-100%);
    transition: transform .25s ease;
  }

  #fp-admin-panel.sidebar-open .fp-prod-sidebar {
    transform: translateX(0);
  }

  .fp-prod-kpi-grid,
  .fp-prod-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fp-prod-field.half {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .fp-prod-login-card {
    padding: 28px 22px;
  }

  .fp-prod-kpi-grid,
  .fp-prod-form-grid {
    grid-template-columns: 1fr;
  }

  .fp-prod-topbar {
    min-height: 66px;
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
  }

  .fp-prod-top-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .fp-prod-btn {
    flex: 1;
  }
}
 /* ============================================================
   FIX ADMIN — SCROLL + FLUIDEZ
============================================================ */

#fp-admin-panel {
  height: 100dvh !important;
  overflow: hidden !important;
}

#fp-admin-panel.open {
  display: block !important;
}

.fp-prod-app {
  height: 100dvh !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.fp-prod-sidebar {
  height: 100dvh !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.fp-prod-menu {
  min-height: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding-bottom: 28px !important;
  overscroll-behavior: contain;
}

.fp-prod-main {
  height: 100dvh !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.fp-prod-topbar {
  flex-shrink: 0 !important;
}

.fp-prod-content {
  height: calc(100dvh - 60px) !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding-bottom: 90px !important;
  scroll-behavior: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.fp-prod-card {
  contain: layout paint;
}

.fp-prod-table-wrap {
  max-width: 100%;
  overflow-x: auto !important;
  overflow-y: visible !important;
}

.fp-prod-nav-btn {
  will-change: background, color;
}

.fp-prod-nav-btn.active {
  pointer-events: none;
}

@media (max-width: 980px) {
  .fp-prod-sidebar {
    height: 100dvh !important;
    overflow: hidden !important;
  }

  .fp-prod-menu {
    height: calc(100dvh - 170px) !important;
  }

  .fp-prod-content {
    height: calc(100dvh - 76px) !important;
    padding-bottom: 120px !important;
  }
}
/* ============================================================
   SPINNERS + FEEDBACK FER PAUL
============================================================ */

.fp-admin-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000000;
  min-width: 280px;
  max-width: 420px;
  background: #061327;
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  font-size: 14px;
  font-weight: 850;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.fp-admin-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.fp-admin-toast.success {
  background: #166534;
}

.fp-admin-toast.error {
  background: #991b1b;
}

.fp-admin-toast.info {
  background: #075985;
}

.fp-prod-btn.loading,
.fp-prod-login-submit.loading,
.fp-sub-submit-btn.loading {
  pointer-events: none !important;
  opacity: .78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.fp-prod-spinner,
.fp-sub-spinner {
  width: 17px;
  height: 17px;
  border: 3px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 999px;
  display: inline-block;
  animation: fpSpin .75s linear infinite;
}

.fp-prod-btn.soft .fp-prod-spinner,
.fp-prod-btn .fp-prod-spinner {
  border-color: rgba(6,19,39,.25);
  border-top-color: #061327;
}

@keyframes fpSpin {
  to {
    transform: rotate(360deg);
  }
}

.fp-prod-saving-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 10000001;
  background: linear-gradient(90deg, #2d9bf0, #16a34a, #f59e0b);
  transform-origin: left;
  animation: fpSavingBar 1s ease-in-out infinite;
}

@keyframes fpSavingBar {
  0% { transform: scaleX(.08); opacity: .5; }
  50% { transform: scaleX(.72); opacity: 1; }
  100% { transform: scaleX(1); opacity: .5; }
}
#chatbot-fab,
.chatbot-fab,
.chatbot-panel,
.chatbot-toggle {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#wa-btn,
.wa-btn {
  z-index: 99998 !important;
}
/* ============================================================
   FER PAUL PAGOS V2 — PAYPAL + BINANCE + BNB + YAPE
============================================================ */

.fp-paypal-buttons {
  min-height: 48px;
  margin-top: 12px;
}

.fp-paypal-status {
  margin-top: 12px;
  padding: 11px 13px;
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  background: #f8fafc;
  color: #475569;
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.45;
}

.fp-paypal-status.ready {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.fp-paypal-status.success {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}

.fp-paypal-status.warning {
  border-color: #fde68a;
  background: #fffbeb;
  color: #a16207;
}

.fp-paypal-status.error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.fp-paypal-fallback {
  margin-top: 10px;
  opacity: .88;
}

.fp-payment-qr {
  width: min(210px, 100%);
  aspect-ratio: 1;
  margin: 14px auto;
  object-fit: contain;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}

.fp-payment-data-grid {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.fp-payment-data-grid > div {
  padding: 11px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.fp-payment-data-grid small,
.fp-payment-data-grid strong {
  display: block;
}

.fp-payment-data-grid small {
  color: #64748b;
  font-size: .7rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.fp-payment-data-grid strong {
  margin-top: 3px;
  color: #0f172a;
  font-size: .86rem;
  overflow-wrap: anywhere;
}

.fp-bank-method-label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  text-align: left;
}

.fp-bank-method-label > span {
  color: #334155;
  font-size: .76rem;
  font-weight: 800;
}

.fp-bank-method-label select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-weight: 700;
  outline: none;
}

.fp-bank-method-label select:focus {
  border-color: #0775d8;
  box-shadow: 0 0 0 3px rgba(7, 117, 216, .12);
}

.fp-bank-method-details {
  margin-top: 12px;
}

.fp-sub-form-message.warning {
  color: #92400e;
  border-color: #fde68a;
  background: #fffbeb;
}

.fp-payment-result-card {
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-align: left;
}

.fp-payment-result-card.approved {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.fp-payment-result-card.pending {
  border-color: #fde68a;
  background: #fffbeb;
  color: #854d0e;
}

.fp-payment-result-details {
  display: grid;
  gap: 7px;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  color: #334155;
  font-size: .84rem;
}

.fp-payment-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.fp-payment-support-btn {
  min-height: 46px;
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #16a34a;
  color: #fff;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 10px 24px rgba(22, 163, 74, .18);
}

.fp-payment-support-btn:hover {
  transform: translateY(-1px);
}

#fp-payment-transaction[readonly] {
  background: #f1f5f9;
  color: #475569;
  cursor: not-allowed;
}

@media (max-width: 620px) {
  .fp-payment-result-actions {
    display: grid;
  }

  .fp-payment-result-actions .btn,
  .fp-payment-support-btn {
    width: 100%;
  }
}

/* ============================================================
   PAGOS V3 — IDENTIDAD POR MÉTODO + QR POR PLAN
============================================================ */

#fp-payment-transaction-field[hidden] {
  display: none !important;
}

.fp-sub-payment-modal.payment-paypal .fp-sub-modal-head {
  background: linear-gradient(135deg, #003087 0%, #0070ba 100%) !important;
}

.fp-sub-payment-modal.payment-paypal .fp-sub-modal-summary {
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%) !important;
}

.fp-sub-payment-modal.payment-paypal .fp-sub-modal-plan-icon {
  background: #003087 !important;
  box-shadow: 0 20px 44px rgba(0, 48, 135, .24) !important;
}

.fp-sub-payment-modal.payment-paypal .fp-sub-modal-method-box {
  background: #f2f8ff !important;
  border-color: rgba(0, 112, 186, .45) !important;
}

.fp-sub-payment-modal.payment-paypal .fp-sub-submit-btn {
  background: linear-gradient(180deg, #0878c9 0%, #003087 100%) !important;
  box-shadow: 0 18px 34px rgba(0, 48, 135, .24) !important;
}

.fp-sub-payment-modal.payment-binance .fp-sub-modal-head {
  background: linear-gradient(135deg, #151a22 0%, #242b35 100%) !important;
  color: #f0b90b !important;
}

.fp-sub-payment-modal.payment-binance .fp-sub-modal-summary {
  background: linear-gradient(180deg, #fff9df 0%, #ffffff 100%) !important;
}

.fp-sub-payment-modal.payment-binance .fp-sub-modal-plan-icon {
  background: #1e2329 !important;
  color: #f0b90b !important;
  box-shadow: 0 20px 44px rgba(30, 35, 41, .24) !important;
}

.fp-sub-payment-modal.payment-binance .fp-sub-modal-method-box {
  background: #fffbeb !important;
  border-color: rgba(240, 185, 11, .68) !important;
}

.fp-sub-payment-modal.payment-binance .fp-sub-submit-btn,
.fp-method-open-btn.binance,
.fp-qr-download-btn.binance {
  background: #f0b90b !important;
  color: #171a1f !important;
  box-shadow: 0 18px 34px rgba(240, 185, 11, .28) !important;
}

.fp-sub-payment-modal.payment-bank .fp-sub-modal-head {
  background: linear-gradient(135deg, #006b3c 0%, #00a859 100%) !important;
}

.fp-sub-payment-modal.payment-bank .fp-sub-modal-summary {
  background: linear-gradient(180deg, #ebfff4 0%, #ffffff 100%) !important;
}

.fp-sub-payment-modal.payment-bank .fp-sub-modal-plan-icon {
  background: #008f4d !important;
  box-shadow: 0 20px 44px rgba(0, 143, 77, .24) !important;
}

.fp-sub-payment-modal.payment-bank .fp-sub-modal-method-box {
  background: #effdf5 !important;
  border-color: rgba(0, 168, 89, .48) !important;
}

.fp-sub-payment-modal.payment-bank .fp-sub-submit-btn,
.fp-qr-download-btn.bank {
  background: linear-gradient(180deg, #10b968 0%, #008f4d 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 34px rgba(0, 143, 77, .24) !important;
}

.fp-payment-qr-link {
  display: block !important;
  width: min(330px, 100%) !important;
  margin: 14px auto 10px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid #dbe4ec !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .08) !important;
}

.fp-payment-qr {
  width: 100% !important;
  height: auto !important;
  max-height: 470px !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  background: #ffffff !important;
}

.fp-qr-download-btn {
  width: min(330px, 100%) !important;
  min-height: 44px !important;
  margin: 0 auto 10px !important;
  padding: 11px 16px !important;
  border-radius: 13px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-weight: 950 !important;
}

.fp-payment-qr-empty {
  margin: 14px 0 !important;
  padding: 14px !important;
  border: 1px dashed #cbd5e1 !important;
  border-radius: 14px !important;
  background: #f8fafc !important;
  color: #64748b !important;
  font-weight: 800 !important;
}

@media (max-width: 720px) {
  .fp-payment-qr-link,
  .fp-qr-download-btn {
    width: 100% !important;
  }

  .fp-payment-qr {
    max-height: 410px !important;
  }
}

.fp-pay-btn.bank {
  background: linear-gradient(180deg, #10b968 0%, #008f4d 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(0, 143, 77, .24) !important;
}

.fp-sub-payment-modal.payment-bank .fp-method-chip.bank {
  background: #dff8ea !important;
  color: #007a42 !important;
}

/* ============================================================
   FER PAUL — MOBILE FAST MODE
============================================================ */

@media (max-width: 900px),
       (hover: none) and (pointer: coarse) {

  html {
    scroll-behavior: auto !important;
  }

  body {
    overscroll-behavior-y: auto;
  }

  /*
    Evita renderizar completamente secciones
    que todavía están lejos de la pantalla.
  */
  main > section:not(#inicio) {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
  }


  /* ==========================================
     DESACTIVAR ANIMACIONES INFINITAS
  ========================================== */

  .hero-icons-ring,
  .country-track,
  .tools-stack-track,
  .testimonials-track {
    animation: none !important;
    will-change: auto !important;
  }

  .hero-icons-ring {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    align-self: stretch !important;
    justify-content: flex-start !important;
    padding: 2px 4px 8px !important;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .hero-orbit-icon {
    scroll-snap-align: start;
  }

  /*
    En celular bastan ocho herramientas.
    Las demás siguen disponibles en escritorio.
  */
  .hero-icons-ring
  .hero-orbit-icon:nth-child(n + 9) {
    display: none !important;
  }


  /* ==========================================
     MARQUESINAS → SCROLL NATIVO
  ========================================== */

  .country-strip,
  .tools-stack-marquee,
  .testimonials-slider {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .country-strip::-webkit-scrollbar,
  .tools-stack-marquee::-webkit-scrollbar,
  .testimonials-slider::-webkit-scrollbar,
  .hero-icons-ring::-webkit-scrollbar {
    display: none;
  }


  /* ==========================================
     QUITAR DESENFOQUES GPU PESADOS
  ========================================== */

  .country-mini-card,
  #servicios .fp-inner-stack-bar,
  .fp-sub-modal-backdrop,
  .admin-backdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  #servicios .fp-inner-stack-bar {
    background: rgba(
      255,
      255,
      255,
      .98
    ) !important;
  }

  .fp-sub-modal-backdrop,
  .admin-backdrop {
    background: rgba(
      3,
      18,
      35,
      .78
    ) !important;
  }


  /* ==========================================
     SERVICIOS — SCROLL VERTICAL NATIVO
  ========================================== */

  #servicios.fp-mobile-native-stack {
    height: auto !important;
    min-height: 0 !important;
    padding: 56px 16px !important;
  }

  #servicios.fp-mobile-native-stack
  .fp-inner-stack-screen,
  #servicios.fp-mobile-native-stack
  .fp-inner-stack-stage {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  #servicios.fp-mobile-native-stack
  .fp-inner-stack-stage {
    display: grid !important;
    gap: 16px !important;
  }

  #servicios.fp-mobile-native-stack
  .fp-inner-stack-slide {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: 420px !important;
    transform: none !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    box-shadow:
      0 8px 24px rgba(
        6,
        31,
        61,
        .12
      ) !important;
  }


  /* ==========================================
     PROCESO — TARJETAS VERTICALES NATIVAS
  ========================================== */

  .fp-mobile-native-workflow {
    height: auto !important;
    min-height: 0 !important;
    padding: 56px 16px !important;
  }

  .fp-mobile-native-workflow
  .fp-workflow-horizontal-stage {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: grid !important;
    gap: 16px !important;
    overflow: visible !important;
  }

  .fp-mobile-native-workflow
  .fp-workflow-horizontal-panel {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: 430px !important;
    transform: none !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    box-shadow:
      0 8px 24px rgba(
        6,
        31,
        61,
        .14
      ) !important;
  }

  .fp-mobile-native-workflow
  .fp-workflow-horizontal-dots {
    display: none !important;
  }


  /* ==========================================
     SOMBRAS MÁS LIVIANAS
  ========================================== */

  .fp-sub-card,
  .fp-business-app-card,
  .fp-youtube-course-card,
  .fp-faq-blue-item,
  .fp-contact-main,
  .fp-social-main,
  .fp-template-card,
  .fp-resource-card {
    box-shadow:
      0 7px 20px rgba(
        6,
        31,
        61,
        .10
      ) !important;
  }

  .fp-sub-modal-card {
    box-shadow:
      0 14px 40px rgba(
        0,
        0,
        0,
        .28
      ) !important;
  }


  /* ==========================================
     EVITAR HOVER PEGADO EN CELULAR
  ========================================== */

  .fp-sub-card:hover,
  .fp-business-app-card:hover,
  .fp-youtube-course-card:hover,
  .fp-tool-card:hover,
  .fp-impact-stat-card:hover,
  .country-mini-card:hover,
  .fp-contact-btn:hover,
  .fp-social-icon-pill:hover {
    transform: none !important;
    filter: none !important;
  }

  .reveal {
    transition-duration: .18s !important;
  }

  img {
    transform: translateZ(0);
  }
}


/* Usuarios que desactivan animaciones */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ============================================================
   SERVICIOS — AJUSTE REAL PARA CELULAR
============================================================ */

@media (max-width: 900px) {

  #servicios.fp-inner-stack-section {
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  #servicios .fp-inner-stack-screen,
  #servicios .fp-inner-stack-stage {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  #servicios .fp-inner-stack-slide {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    background: #eef3f7 !important;
  }

  /*
    Contain evita cortar el texto y los celulares
    que forman parte de la imagen.
  */
  #servicios .fp-inner-stack-slide > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center top !important;
    transform: none !important;
    filter: none !important;
    background: #eef3f7 !important;
  }

  #servicios .fp-inner-stack-bar {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
    max-width: calc(100% - 24px) !important;
    grid-template-columns: 52px minmax(0, 1fr) 42px !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    border-radius: 22px !important;
    box-sizing: border-box !important;
  }

  #servicios .fp-inner-stack-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
  }

  #servicios .fp-inner-stack-copy {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  #servicios .fp-inner-stack-copy strong,
  #servicios .fp-inner-stack-copy p {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  #servicios .fp-inner-stack-copy strong {
    font-size: .96rem !important;
  }

  #servicios .fp-inner-stack-copy p {
    font-size: .78rem !important;
  }

  /*
    WhatsApp pequeño, circular y sin texto flotante.
  */
  .wa-btn-fixed {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    padding: 0 !important;
    right: 12px !important;
    bottom: 14px !important;
    border-radius: 50% !important;
    font-size: 0 !important;
    display: grid !important;
    place-items: center !important;
  }

  .wa-btn-fixed span,
  .wa-btn-fixed strong {
    display: none !important;
  }

  .wa-btn-fixed svg {
    width: 27px !important;
    height: 27px !important;
  }
}
/* ============================================================
   TABLA DE PAGOS — ESTADOS POR COLOR
============================================================ */

.fp-payments-table tbody tr > td {
  transition:
    background-color .16s ease,
    border-color .16s ease;
}


/* RECHAZADO / DUPLICADO — ROJO CLARO */

.fp-payments-table
.fp-payment-row-rejected
> td {
  background:
    #fff1f2 !important;

  border-bottom-color:
    #fecdd3 !important;
}

.fp-payments-table
.fp-payment-row-rejected
> td:first-child {
  box-shadow:
    inset 5px 0 0 #ef4444;
}

.fp-payments-table
.fp-payment-row-rejected:hover
> td {
  background:
    #ffe4e6 !important;
}


/* PENDIENTE — AMARILLO CLARO */

.fp-payments-table
.fp-payment-row-pending
> td {
  background:
    #fffbeb !important;

  border-bottom-color:
    #fde68a !important;
}

.fp-payments-table
.fp-payment-row-pending
> td:first-child {
  box-shadow:
    inset 5px 0 0 #f59e0b;
}

.fp-payments-table
.fp-payment-row-pending:hover
> td {
  background:
    #fef3c7 !important;
}


/* APROBADO — VERDE CLARO */

.fp-payments-table
.fp-payment-row-approved
> td {
  background:
    #f0fdf4 !important;

  border-bottom-color:
    #bbf7d0 !important;
}

.fp-payments-table
.fp-payment-row-approved
> td:first-child {
  box-shadow:
    inset 5px 0 0 #22c55e;
}

.fp-payments-table
.fp-payment-row-approved:hover
> td {
  background:
    #dcfce7 !important;
}


/* BADGES */

.fp-payment-badge-rejected {
  background:
    #fecdd3 !important;

  color:
    #9f1239 !important;
}

.fp-payment-badge-pending {
  background:
    #fef3c7 !important;

  color:
    #92400e !important;
}

.fp-payment-badge-approved {
  background:
    #bbf7d0 !important;

  color:
    #166534 !important;
}

.fp-payment-badge-neutral {
  background:
    #e2e8f0 !important;

  color:
    #334155 !important;
}


/* COLUMNA ACCIÓN */

.fp-payment-access-approved {
  color:
    #15803d;

  font-weight:
    800;
}

.fp-payment-access-rejected {
  color:
    #dc2626;

  font-weight:
    800;
}

.fp-payment-no-action {
  color:
    #64748b;
}
/* ============================================================
   CARRUSELES MÓVILES — SECCIONES 3 Y 10
============================================================ */

@media (max-width: 900px),
       (hover: none) and (pointer: coarse) {

  /* ==========================================
     SECCIÓN 3 — SERVICIOS
  ========================================== */

  #servicios.fp-services-mobile-carousel {
    height: auto !important;
    min-height: 0 !important;
    width: 100% !important;
    padding: 42px 0 54px !important;
    overflow: hidden !important;
  }

  #servicios.fp-services-mobile-carousel
  .fp-inner-stack-screen {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  #servicios.fp-services-mobile-carousel
  .fp-inner-stack-stage {
    position: relative !important;
    inset: auto !important;

    display: flex !important;
    gap: 14px !important;

    width: 100% !important;
    height: auto !important;

    padding:
      0 16px 14px !important;

    overflow-x:
      auto !important;

    overflow-y:
      hidden !important;

    scroll-snap-type:
      x mandatory;

    scroll-padding-left:
      16px;

    -webkit-overflow-scrolling:
      touch;

    scrollbar-width:
      none;

    box-sizing:
      border-box !important;
  }

  #servicios.fp-services-mobile-carousel
  .fp-inner-stack-stage::-webkit-scrollbar {
    display: none;
  }

  #servicios.fp-services-mobile-carousel
  .fp-inner-stack-slide {
    position:
      relative !important;

    inset:
      auto !important;

    flex:
      0 0 calc(100vw - 32px);

    width:
      calc(100vw - 32px) !important;

    max-width:
      520px !important;

    min-height:
      520px !important;

    transform:
      none !important;

    scroll-snap-align:
      center;

    scroll-snap-stop:
      always;

    overflow:
      hidden !important;

    border-radius:
      28px !important;

    background:
      #eef3f7 !important;
  }

  #servicios.fp-services-mobile-carousel
  .fp-inner-stack-slide > img {
    width:
      100% !important;

    height:
      100% !important;

    object-fit:
      contain !important;

    object-position:
      center top !important;

    background:
      #eef3f7 !important;
  }

  #servicios.fp-services-mobile-carousel
  .fp-inner-stack-bar {
    left:
      12px !important;

    right:
      12px !important;

    bottom:
      12px !important;

    width:
      auto !important;

    max-width:
      calc(100% - 24px) !important;
  }


  /* ==========================================
     SECCIÓN 10 — PROCESO
  ========================================== */

  .fp-workflow-mobile-carousel {
    height:
      auto !important;

    min-height:
      0 !important;

    width:
      100% !important;

    padding:
      48px 0 56px !important;

    overflow:
      hidden !important;
  }

  .fp-workflow-mobile-carousel
  .fp-workflow-horizontal-stage {
    position:
      relative !important;

    inset:
      auto !important;

    display:
      flex !important;

    gap:
      14px !important;

    width:
      100% !important;

    height:
      auto !important;

    min-height:
      0 !important;

    padding:
      0 16px 14px !important;

    overflow-x:
      auto !important;

    overflow-y:
      hidden !important;

    scroll-snap-type:
      x mandatory;

    scroll-padding-left:
      16px;

    -webkit-overflow-scrolling:
      touch;

    scrollbar-width:
      none;

    box-sizing:
      border-box !important;
  }

  .fp-workflow-mobile-carousel
  .fp-workflow-horizontal-stage::-webkit-scrollbar {
    display: none;
  }

  .fp-workflow-mobile-carousel
  .fp-workflow-horizontal-panel {
    position:
      relative !important;

    inset:
      auto !important;

    flex:
      0 0 calc(100vw - 32px);

    width:
      calc(100vw - 32px) !important;

    max-width:
      520px !important;

    min-height:
      500px !important;

    transform:
      none !important;

    scroll-snap-align:
      center;

    scroll-snap-stop:
      always;

    overflow:
      hidden !important;

    border-radius:
      28px !important;
  }

  .fp-workflow-mobile-carousel
  .fp-workflow-horizontal-panel > img {
    width:
      100% !important;

    height:
      100% !important;

    object-fit:
      cover !important;

    object-position:
      center !important;
  }

  .fp-workflow-mobile-carousel
  .fp-workflow-horizontal-dots {
    position:
      relative !important;

    inset:
      auto !important;

    display:
      flex !important;

    justify-content:
      center !important;

    margin-top:
      14px !important;
  }
}