/* =============================================================
   APTN – Aspirina Para Tu Negocio
   Corporate Identity Override for Klar Bootstrap 5 Template
   ============================================================= */

/* --- 1. VARIABLES GLOBALES CORPORATIVAS --- */
:root {
  --aptn-primary: #0F3D91;
  --aptn-primary-hover: #1857C8;
  --aptn-dark: #0B0F17;
  --aptn-light: #F7F8FA;
  --aptn-text: #1B1F27;
  --aptn-muted: #6B7280;
  --aptn-border: #E2E6EA;

  /* Layout */
  --aptn-container-max: 1200px;
  --aptn-container-pad: 72px;

  /* Override Bootstrap primary */
  --bs-primary: #0F3D91;
  --bs-primary-rgb: 15, 61, 145;
  --bs-link-color: #0F3D91;
  --bs-link-hover-color: #1857C8;
  --bs-body-bg: #F7F8FA;
  --bs-body-color: #1B1F27;
  --bs-dark: #1B1F27;
  --bs-dark-rgb: 27, 31, 39;
}

/* --- 2. BODY & FONDO PRINCIPAL --- */
body {
  background-color: var(--aptn-light) !important;
  color: var(--aptn-text) !important;
}

/* --- 2B. CONTAINER – max-width 1200px, 72px lateral solo ≥1200px --- */
@media (min-width: 1200px) {
  .container {
    max-width: var(--aptn-container-max) !important;
    padding-left: var(--aptn-container-pad) !important;
    padding-right: var(--aptn-container-pad) !important;
  }
}

@media (max-width: 1199.98px) {
  .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* --- 2C. HERO H1 – −2% (solo .display-huge dentro del hero) --- */
.w-100.overflow-hidden .display-huge {
  font-size: calc(2.45rem + 1.47vw);
}

/* --- 3. NAVBAR APTN --- */
.aptn-navbar {
  background: #0A1A2F;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: background-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.aptn-navbar.scrolled {
  background-color: rgba(6, 19, 38, 0.94) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

/* Brand */
.aptn-navbar .navbar-brand {
  display: flex;
  align-items: center;
}

/* Nav links */
.aptn-navlinks {
  gap: 20px;
}

@media (min-width: 992px) {
  .aptn-navlinks {
    display: flex !important;
    align-items: center;
    gap: 20px;
  }

  .aptn-cta-wrapper {
    margin-left: 56px;
    display: flex;
    align-items: center;
  }
}

.aptn-navbar .nav-link,
.aptn-nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.25px;
  text-decoration: none;
  opacity: 0.85;
  padding-left: 18px;
  padding-right: 18px;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.aptn-navbar .nav-link:hover,
.aptn-navbar .nav-link:focus,
.aptn-nav-link:hover,
.aptn-nav-link:focus {
  color: #ffffff !important;
  opacity: 1;
}

/* Toggler – white on blue */
.aptn-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.aptn-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* CTA – global firm style, center-expanding underline */
.aptn-cta-link {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding-bottom: 6px;
  transition: color 0.25s ease;
}

.aptn-cta-link:hover {
  color: rgba(255, 255, 255, 1);
}

.aptn-cta-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: rgba(255, 255, 255, 0.55);
  transform: translateX(-50%);
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

.aptn-cta-link:hover::after {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
}

/* Logo – full opacity, no distortion */
.aptn-navbar .navbar-brand {
  display: flex;
  align-items: center;
}

.aptn-logo {
  display: block;
  max-height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 1 !important;
  filter: none;
}

@media (max-width: 768px) {
  .aptn-logo {
    max-height: 26px;
  }
}

/* Mobile collapse spacing */
@media (max-width: 991.98px) {
  #aptnNavbar {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
  }

  .aptn-nav-link,
  .aptn-navbar .nav-link {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .aptn-cta-outline {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }
}


/* --- 4. BOTONES --- */
.btn-primary {
  background-color: var(--aptn-primary) !important;
  border-color: var(--aptn-primary) !important;
  color: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--aptn-primary-hover) !important;
  border-color: var(--aptn-primary-hover) !important;
  box-shadow: 0 4px 14px rgba(15, 61, 145, 0.25) !important;
}

/* btn-xl from theme - repurpose as primary */
.btn-xl {
  background-color: var(--aptn-primary) !important;
  border-color: var(--aptn-primary) !important;
  color: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.btn-xl:hover,
.btn-xl:focus {
  background-color: var(--aptn-primary-hover) !important;
  border-color: var(--aptn-primary-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(15, 61, 145, 0.25) !important;
}

/* Override btn-light used in dark sections */
.btn-light {
  background-color: var(--aptn-primary) !important;
  border-color: var(--aptn-primary) !important;
  color: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.btn-light:hover,
.btn-light:focus {
  background-color: var(--aptn-primary-hover) !important;
  border-color: var(--aptn-primary-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(15, 61, 145, 0.25) !important;
}

.btn-outline-light {
  border-color: var(--aptn-primary) !important;
  color: var(--aptn-primary) !important;
  background-color: transparent !important;
  transition: background-color 300ms ease, color 300ms ease;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: var(--aptn-primary) !important;
  color: #ffffff !important;
}

/* --- 5. SECCIONES: reemplaza fondos negros y oscuros --- */

/* bg-black → blanco / gris muy claro */
.bg-black {
  background-color: #ffffff !important;
  color: var(--aptn-text) !important;
}

/* bg-dark → gris claro suave */
.bg-dark {
  background-color: var(--aptn-light) !important;
  color: var(--aptn-text) !important;
}

/* Overlay de opacidad sobre hero */
.bg-black.opacity-75 {
  background-color: rgba(15, 61, 145, 0.55) !important;
  opacity: 1 !important;
}

/* --- 6. TEXTOS --- */

/* text-white en secciones con fondo claro → azul oscuro */
.bg-black .text-white,
.bg-dark .text-white {
  color: var(--aptn-text) !important;
}

/* text-secondary ajustado */
.text-secondary {
  color: var(--aptn-muted) !important;
}

/* Headings en fondos claros */
.bg-black h1,
.bg-black h2,
.bg-black h3,
.bg-black h4,
.bg-black h5,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5 {
  color: var(--aptn-text) !important;
}

/* --- 7. SECCIÓN HERO: mantener legibilidad con imagen de fondo --- */
.bg-cover .bg-black {
  background-color: rgba(255, 255, 255, 0.97) !important;
}

/* Hero principal (primer div con bg-black text-white data-aos) */
section.hero-aptn,
div.hero-aptn {
  background: linear-gradient(135deg, #0F3D91 0%, #1857C8 100%) !important;
  color: #ffffff !important;
}

/* --- 8. CARDS --- */
.card .bg-dark {
  background-color: #ffffff !important;
  border: 1px solid var(--aptn-border) !important;
  box-shadow: 0 2px 12px rgba(15, 61, 145, 0.07) !important;
}

/* Testimonials con fondo negro anterior */
.rounded-5.bg-black {
  background-color: #ffffff !important;
  border: 1px solid var(--aptn-border) !important;
  box-shadow: 0 2px 12px rgba(15, 61, 145, 0.08) !important;
}

/* Eliminar gradientes */
.gradient {
  background: #ffffff !important;
}

/* --- 9. FOOTER --- */
footer.bg-black {
  background-color: #1B1F27 !important;
  color: #F7F8FA !important;
}

footer.bg-black .text-secondary {
  color: #9CA3AF !important;
}

footer .link-fancy-light {
  color: #9CA3AF !important;
}

footer .link-fancy-light:hover {
  color: var(--aptn-primary-hover) !important;
}

/* Borde del footer */
footer .border-top.border-dark {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

footer .border-end.border-dark {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* --- 10. SOMBRAS SUTILES (elimina sombras exageradas) --- */
.shadow {
  box-shadow: 0 2px 16px rgba(15, 61, 145, 0.10) !important;
}

.shadow-sm {
  box-shadow: 0 1px 6px rgba(15, 61, 145, 0.08) !important;
}

/* --- 11. LINKS FANCY --- */
.link-fancy {
  color: var(--aptn-primary) !important;
}

.link-fancy:hover {
  color: var(--aptn-primary-hover) !important;
}

.link-fancy-light {
  color: var(--aptn-muted) !important;
}

.link-fancy-light:hover {
  color: var(--aptn-primary) !important;
}

/* --- 12. BORDES --- */
.border-secondary {
  border-color: var(--aptn-border) !important;
}

.border-dark {
  border-color: var(--aptn-border) !important;
}

/* --- 13. HERO SECTION OVERRIDE ---
   El primer bloque hero tiene bg-black text-white con imagen de fondo.
   Lo convertimos a un hero corporativo azul.
*/
.w-100.overflow-hidden.position-relative.bg-black.text-white {
  background: linear-gradient(135deg, #0F3D91 0%, #082466 100%) !important;
  color: #ffffff !important;
}

.w-100.overflow-hidden.position-relative.bg-black.text-white h1,
.w-100.overflow-hidden.position-relative.bg-black.text-white h2,
.w-100.overflow-hidden.position-relative.bg-black.text-white span,
.w-100.overflow-hidden.position-relative.bg-black.text-white p {
  color: #ffffff !important;
}

/* Overlay sobre el hero: hacerlo azul semitransparente */
.w-100.overflow-hidden.position-relative.bg-black.text-white .position-absolute.w-100.h-100.bg-black.opacity-75 {
  background-color: rgba(11, 15, 23, 0.50) !important;
  opacity: 1 !important;
}

/* --- 14. GALERÍA DE IMÁGENES (segunda sección con bg-black) --- */
.w-100.position-relative.bg-black.text-white.bg-cover {
  background-color: #F0F4F8 !important;
  color: var(--aptn-text) !important;
}

/* Mitad inferior bg-dark en galería */
.w-100.position-relative.bg-black.text-white.bg-cover .position-absolute.w-100.h-50.bg-dark.bottom-0 {
  background-color: #F7F8FA !important;
}

/* py-vh styling for the container inside the hero */
.w-100.overflow-hidden.position-relative.bg-black.text-white .h5.text-secondary {
  color: rgba(255, 255, 255, 0.75) !important;
}

.w-100.overflow-hidden.position-relative.bg-black.text-white .lead.text-secondary {
  color: rgba(255, 255, 255, 0.80) !important;
}

/* --- 15. PRECIO / CTA section --- */
.bg-dark.rounded-5 {
  background-color: #EEF2F8 !important;
}

/* Price border color */
.border-bottom.border-5 {
  border-color: var(--aptn-primary) !important;
}

/* --- 16. SECCIÓN CON FONDO DE IMAGEN (abstract12) --- */
.bg-cover.bg-center.rounded-5 .bg-black {
  background-color: rgba(255, 255, 255, 0.97) !important;
}

/* --- 17. TESTIMONIAL DESTACADO (con clase .gradient) --- */
.rounded-5.bg-black.gradient {
  background: linear-gradient(135deg, #0F3D91 0%, #1857C8 100%) !important;
  color: #ffffff !important;
  border: none !important;
}

.rounded-5.bg-black.gradient p,
.rounded-5.bg-black.gradient span,
.rounded-5.bg-black.gradient small {
  color: rgba(255, 255, 255, 0.90) !important;
}

.rounded-5.bg-black.gradient .border-top {
  border-color: rgba(255, 255, 255, 0.25) !important;
}

/* --- 18. LOGO APTN --- (see section 3 – Navbar) */

/* ============================================================
   FIX: Force navbar links visible on desktop (≥992px).
   Overrides any theme.css rule that hides .navbar-collapse.
   ============================================================ */
@media (min-width: 992px) {
  #aptnNavbar {
    display: flex !important;
    flex-basis: auto !important;
    align-items: center;
  }

  #aptnNavbar .navbar-nav {
    flex-direction: row;
  }

  .aptn-navbar .navbar-toggler {
    display: none !important;
  }
}

/* Ensure white links always visible on blue background */
.aptn-navbar .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  opacity: 0.86;
}

.aptn-navbar .nav-link:hover,
.aptn-navbar .nav-link:focus {
  color: #ffffff !important;
  opacity: 1;
}

/* ============================================================
   SISTEMA APTN – Methodology Section
   ============================================================ */
.aptn-system {
  background: var(--aptn-light);
  padding-top: 96px;
  padding-bottom: 96px;
}

/* Section header */
.aptn-system-header {
  max-width: 640px;
  margin-bottom: 72px;
}

.aptn-system-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--aptn-primary);
  opacity: 0.85;
  margin-bottom: 12px;
}

.aptn-system-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--aptn-text);
  margin-bottom: 16px;
  line-height: 1.15;
}

.aptn-system-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--aptn-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}

/* 2-column grid */
.aptn-system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 767.98px) {
  .aptn-system-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual block */
.aptn-system-item {
  padding: 40px 48px 40px 0;
  border-top: 1px solid var(--aptn-border);
}

.aptn-system-item:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
  border-left: 1px solid var(--aptn-border);
}

@media (max-width: 767.98px) {

  .aptn-system-item,
  .aptn-system-item:nth-child(even) {
    padding: 32px 0;
    border-left: none;
  }
}

/* Kicker numerals (01–04) */
.aptn-system-kicker {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--aptn-primary);
  opacity: 0.55;
  margin-bottom: 14px;
}

/* Block title */
.aptn-system-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--aptn-text);
  margin-bottom: 20px;
  line-height: 1.3;
}

/* List items */
.aptn-system-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aptn-system-list li {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--aptn-muted);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}

.aptn-system-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--aptn-primary);
  opacity: 0.45;
}

/* Bottom CTA */
.aptn-system-cta {
  margin-top: 64px;
  border-top: 1px solid var(--aptn-border);
  padding-top: 40px;
}

/* Animated underline – same pattern as navbar CTA */
.aptn-system-cta-link {
  position: relative;
  display: inline-block;
  color: var(--aptn-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding-bottom: 5px;
  transition: color 0.25s ease;
}

.aptn-system-cta-link:hover {
  color: var(--aptn-primary-hover);
}

.aptn-system-cta-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: var(--aptn-primary);
  opacity: 0.6;
  transform: translateX(-50%);
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.aptn-system-cta-link:hover::after {
  width: 100%;
}

/* ============================================================
   FOOTER – GLOBAL FIRM STANDARD
   ============================================================ */
.aptn-footer {
  background-color: #060E1A;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

/* Grid: 3 cols desktop → 1 col mobile */
.aptn-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
  padding-top: 88px;
  padding-bottom: 72px;
}

@media (max-width: 991.98px) {
  .aptn-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 575.98px) {
  .aptn-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* Brand column */
.aptn-footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.aptn-footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
  max-width: 280px;
  opacity: 0.68;
}

/* Column headings */
.aptn-footer-heading {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.75;
  margin-bottom: 18px;
}

/* Links */
.aptn-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aptn-footer-links a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  padding-bottom: 2px;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.aptn-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.22s ease;
}

.aptn-footer-links a:hover {
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
}

.aptn-footer-links a:hover::after {
  width: 100%;
}

/* Divider */
.aptn-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 64px;
  margin-bottom: 24px;
}

/* Copyright bar */
.aptn-footer-bottom {
  padding-top: 0;
  padding-bottom: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  opacity: 0.6;
}

/* Social icons row */
.aptn-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.aptn-social a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.aptn-social a:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
}

.aptn-social svg {
  display: block;
  width: 17px;
  height: 17px;
}

/* ============================================================
   HERO EXTRAS
   ============================================================ */
.aptn-hero-eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  letter-spacing: 0.3px;
}

.aptn-hero-microcopy {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ============================================================
   SISTEMA APTN EXTRAS
   ============================================================ */
.aptn-system-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--aptn-muted);
  line-height: 1.65;
  margin: 0;
}

.aptn-system-note {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--aptn-muted);
  opacity: 0.75;
  margin-top: 40px;
  margin-bottom: 0;
  font-style: italic;
}

/* ============================================================
   APPLICATION FORM
   ============================================================ */
.aptn-form .form-control {
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 15px;
  padding: 10px 0;
  box-shadow: none;
  transition: border-color 0.22s ease;
}

.aptn-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.aptn-form .form-control:focus {
  border-bottom-color: rgba(255, 255, 255, 0.65);
  outline: none;
  box-shadow: none;
  background: transparent !important;
}

.aptn-form .form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45) !important;
  margin-bottom: 4px;
}

/* ============================================================
   APLICAR.HTML — PAGE STYLES (apl-*)
   ============================================================ */

/* Full-page blue background */
.apl-page {
  background-color: #0F3D91;
  color: rgba(255, 255, 255, 0.90);
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ── Navbar mínimo ── */
.apl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 61, 145, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.apl-nav-logo img {
  height: 28px;
  width: auto;
}

.apl-nav-back {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.apl-nav-back:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Main container ── */
.apl-main {
  padding: 0;
}

.apl-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 120px 32px 100px;
}

@media (max-width: 767.98px) {
  .apl-container {
    padding: 80px 24px 72px;
  }
}

@media (max-width: 575.98px) {
  .apl-container {
    padding: 64px 18px 60px;
  }
}

/* ── Hero ── */
.apl-header {
  margin-bottom: 64px;
}

.apl-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.apl-h1 {
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 20px;
}

.apl-sub {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ── Form ── */
.apl-form {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Fieldset */
.apl-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.apl-legend {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding-bottom: 10px;
  margin-bottom: 28px;
  width: 100%;
}

/* Field wrapper */
.apl-field {
  margin-bottom: 22px;
}

.apl-field:last-child {
  margin-bottom: 0;
}

/* Label */
.apl-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

/* Input / Textarea */
.apl-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.90);
  font-size: 15px;
  font-weight: 400;
  font-family: inherit;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.22s ease;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.apl-input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.apl-input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.60);
}

.apl-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}

/* Radio buttons */
.apl-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 14px;
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.18s ease;
}

.apl-radio-label:last-child {
  margin-bottom: 0;
}

.apl-radio-label:hover {
  color: rgba(255, 255, 255, 0.95);
}

.apl-radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.18s ease;
}

.apl-radio-label input[type="radio"]:checked {
  border-color: rgba(255, 255, 255, 0.80);
  background: rgba(255, 255, 255, 0.80);
}

.apl-radio-label input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0F3D91;
}

/* Submit button */
.apl-submit-wrap {
  padding-top: 16px;
}

.apl-btn {
  display: block;
  width: 100%;
  background: #ffffff;
  color: #0F3D91;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 16px 32px;
  cursor: pointer;
  transition: opacity 0.22s ease;
  border-radius: 0;
}

.apl-btn:hover {
  opacity: 0.88;
}

.apl-btn:active {
  opacity: 0.80;
}

/* ── Confirmation state ── */
.apl-confirmation {
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.apl-confirm-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.apl-confirm-sub {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.apl-confirm-link {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.apl-confirm-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   APPLY / CONFIRM / INSIGHTS — aptn-apply-* PREFIX
   ============================================================ */

/* Full-page blue background */
.aptn-apply-page {
  background-color: #0c2d72;
  color: rgba(255, 255, 255, 0.88);
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ── Navbar mínimo ── */
.aptn-apply-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 45, 114, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 575.98px) {
  .aptn-apply-nav {
    padding: 16px 20px;
  }
}

.aptn-apply-nav-logo img {
  height: 26px;
  width: auto;
}

.aptn-apply-nav-back {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  transition: color 0.2s ease;
}

.aptn-apply-nav-back:hover {
  color: rgba(255, 255, 255, 1);
}

/* ── Main / Container ── */
.aptn-apply-main {
  padding: 0;
}

.aptn-apply-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 120px 32px 100px;
}

@media (max-width: 767.98px) {
  .aptn-apply-container {
    padding: 80px 24px 72px;
  }
}

@media (max-width: 575.98px) {
  .aptn-apply-container {
    padding: 64px 20px 64px;
  }
}

/* ── Hero ── */
.aptn-apply-hero {
  margin-bottom: 64px;
}

.aptn-apply-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 22px;
}

.aptn-apply-h1 {
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.10;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

.aptn-apply-sub {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* ── Form ── */
.aptn-apply-form {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* Fieldset */
.aptn-apply-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.aptn-apply-legend {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding-bottom: 12px;
  margin-bottom: 30px;
  width: 100%;
  display: block;
}

/* Field wrapper */
.aptn-apply-field {
  margin-bottom: 24px;
}

.aptn-apply-field:last-child {
  margin-bottom: 0;
}

/* Label */
.aptn-apply-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 10px;
}

/* Input / Textarea */
.aptn-apply-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.90);
  font-size: 15px;
  font-weight: 400;
  font-family: inherit;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.22s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.aptn-apply-input::placeholder {
  color: rgba(255, 255, 255, 0.20);
}

.aptn-apply-input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.aptn-apply-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.65;
}

/* Radio buttons */
.aptn-apply-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 16px;
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.18s ease;
  user-select: none;
}

.aptn-apply-radio:last-child {
  margin-bottom: 0;
}

.aptn-apply-radio:hover {
  color: rgba(255, 255, 255, 0.96);
}

.aptn-apply-radio input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.18s ease, background 0.18s ease;
  margin: 0;
}

.aptn-apply-radio input[type="radio"]:checked {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.82);
}

.aptn-apply-radio input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0c2d72;
}

/* Submit area */
.aptn-apply-submit {
  padding-top: 8px;
}

.aptn-apply-btn {
  display: block;
  width: 100%;
  background: #ffffff;
  color: #0c2d72;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 16px 32px;
  cursor: pointer;
  transition: opacity 0.22s ease;
  border-radius: 0;
}

.aptn-apply-btn:hover {
  opacity: 0.92;
}

.aptn-apply-btn:active {
  opacity: 0.82;
}

.aptn-apply-microcopy {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ── Confirmación ── */
.aptn-confirm-hero {
  margin-bottom: 72px;
}

.aptn-confirm-insights {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 48px;
}

.aptn-confirm-insights-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.aptn-confirm-insights-text {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  max-width: 440px;
}

/* Animated underline CTA – global firm style */
.aptn-confirm-insights-link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.22s ease;
}

.aptn-confirm-insights-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: rgba(255, 255, 255, 0.55);
  transform: translateX(-50%);
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.aptn-confirm-insights-link:hover {
  color: #ffffff;
}

.aptn-confirm-insights-link:hover::after {
  width: 100%;
}

/* ── Insights placeholder ── */
.aptn-insights-placeholder {
  margin-top: 16px;
}

.aptn-insights-placeholder-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.aptn-insights-placeholder-sub {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.50);
  max-width: 440px;
  margin-bottom: 36px;
}

/* ========================================================
   RESULTADOS / CASOS DE INTERVENCIÓN (#resultados)
   ======================================================== */

.aptn-resultados {
  background: #0a0f1a;
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aptn-resultados-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
}

.aptn-resultados-hd {
  margin-bottom: 64px;
}

.aptn-resultados-kicker {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 16px;
}

.aptn-resultados-h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
}

.aptn-resultados-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  margin: 0;
}

/* Case grid — 3 columns */
.aptn-casos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.aptn-caso {
  padding: 40px 36px 40px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.aptn-caso:last-child {
  border-right: none;
  padding-right: 0;
}

.aptn-caso:not(:first-child) {
  padding-left: 36px;
}

/* Case header */
.aptn-caso-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aptn-caso-id {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.aptn-caso-h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.90);
  margin: 0;
}

/* Case blocks */
.aptn-caso-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aptn-caso-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.aptn-caso-h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.aptn-caso-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aptn-caso-list li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.aptn-caso-list li:last-child {
  border-bottom: none;
}

.aptn-caso-list li::before {
  content: '·\00a0\00a0';
  color: rgba(255, 255, 255, 0.30);
}

/* Resultado block — subtle elevation */
.aptn-caso-resultado .aptn-caso-h4 {
  color: rgba(255, 255, 255, 0.75);
}

.aptn-caso-resultado .aptn-caso-list li {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

/* Footnote */
.aptn-resultados-footnote {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.42);
}

/* Responsive */
@media (max-width: 1024px) {
  .aptn-resultados-inner {
    padding: 0 48px;
  }

  .aptn-casos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .aptn-resultados {
    padding: 80px 0;
  }

  .aptn-resultados-inner {
    padding: 0 24px;
  }

  .aptn-casos-grid {
    grid-template-columns: 1fr;
  }

  .aptn-caso {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .aptn-caso:last-child {
    border-bottom: none;
  }

  .aptn-caso:not(:first-child) {
    padding-left: 0;
  }
}

/* ========================================================
   TRANSITION BAND — editorial post-hero (#inicio → #sistema)
   ======================================================== */


.aptn-band {
  background: #071a2d;
  padding: 96px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aptn-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
}

.aptn-band-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.aptn-band-kicker {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 14px;
}

.aptn-band-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 600px;
}

.aptn-band-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 22px 0;
  max-width: 480px;
}

/* Editorial text-link — no blue, no button */
.aptn-text-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  position: relative;
  transition: color 220ms ease;
}

.aptn-text-link::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -4px;
  height: 1px;
  background: rgba(255, 255, 255, 0.50);
  transition: left 220ms ease, right 220ms ease;
}

.aptn-text-link:hover {
  color: rgba(255, 255, 255, 0.96);
}

.aptn-text-link:hover::after {
  left: 0;
  right: 0;
}

@media (max-width: 900px) {
  .aptn-band-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aptn-band-title {
    font-size: 2rem;
  }

  .aptn-band-inner {
    padding: 0 24px;
  }

  .aptn-band {
    padding: 72px 0;
  }
}

/* ── Body continuity: prevent white gap between hero → band → sistema ── */
body {
  background: #061829 !important;
}

/* ========================================================
   NOSOTROS — EDITORIAL INSTITUTIONAL (#nosotros)
   ======================================================== */


.aptn-nosotros {
  background: #061829;
  padding: 120px 0;
}

.aptn-nosotros-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
}

.aptn-nosotros-hd {
  margin-bottom: 48px;
}

.aptn-nosotros-kicker {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 16px;
}

.aptn-nosotros-h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
}

.aptn-nosotros-body {
  max-width: 720px;
}

.aptn-nosotros-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 24px;
}

.aptn-nosotros-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.aptn-nosotros-authority {
  color: rgba(255, 255, 255, 0.72);
}

.aptn-nosotros-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
}

.aptn-nosotros-list li {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.01em;
}

.aptn-nosotros-list li::before {
  content: '—\00a0';
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

@media (max-width: 1024px) {
  .aptn-nosotros-inner {
    padding: 0 48px;
  }
}

@media (max-width: 768px) {
  .aptn-nosotros {
    padding: 80px 0;
  }

  .aptn-nosotros-inner {
    padding: 0 24px;
  }

  .aptn-nosotros-h2 {
    font-size: 1.875rem;
  }
}

/* ========================================================
   SISTEMA APTN — INSTITUTIONAL SECTION (#sistema)
   ======================================================== */


.aptn-sistema {
  padding: 100px 0 80px;
  background: #0a0f1a;
}

.aptn-sistema-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
}

/* Header */
.aptn-sistema-hd {
  margin-bottom: 0;
}

.aptn-sistema-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.aptn-sistema-h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
}

.aptn-sistema-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 62ch;
  margin-bottom: 0;
}

.aptn-sistema-rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 28px;
  margin-bottom: 44px;
}

/* Panel grid */
.aptn-sistema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.aptn-sistema-panel {
  padding: 40px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 220ms ease;
  position: relative;
}

/* Left-column panels get right hairline */
.aptn-sistema-panel:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

/* Hover: subtle background lift only */
.aptn-sistema-panel:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Title underline micro-animation on hover */
.aptn-sistema-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.aptn-sistema-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.40);
  transition: left 220ms ease, right 220ms ease;
}

.aptn-sistema-panel:hover .aptn-sistema-title::after {
  left: 0;
  right: 0;
}

.aptn-sistema-kicker {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 12px;
}

.aptn-sistema-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  max-width: 52ch;
}

/* Footnote */
.aptn-sistema-footnote {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 44px;
  padding-top: 24px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

/* CTA */
.aptn-sistema-cta-wrap {
  margin-top: 32px;
}

/* Editorial CTA — no button, no blue */
.aptn-sistema-cta-wrap .aptn-system-cta-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color 220ms ease;
}

.aptn-sistema-cta-wrap .aptn-system-cta-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.48);
  transition: left 220ms ease, right 220ms ease;
}

.aptn-sistema-cta-wrap .aptn-system-cta-link:hover {
  color: rgba(255, 255, 255, 0.92);
}

.aptn-sistema-cta-wrap .aptn-system-cta-link:hover::after {
  left: 0;
  right: 0;
}

/* Responsive — 1024px */
@media (max-width: 1024px) {
  .aptn-sistema-inner {
    padding: 0 48px;
  }
}

/* Responsive — 768px: 1 column */
@media (max-width: 768px) {
  .aptn-sistema {
    padding: 72px 0 60px;
  }

  .aptn-sistema-inner {
    padding: 0 24px;
  }

  .aptn-sistema-grid {
    grid-template-columns: 1fr;
  }

  .aptn-sistema-panel {
    padding: 28px 24px;
  }

  .aptn-sistema-panel:nth-child(odd) {
    border-right: none;
  }
}


/* ========================================================
   APPLY PAGES — INSTITUTIONAL (McKinsey/BlackRock level)
   scope: body.aptn-apply
   ======================================================== */

body {
  height: 100%;
}

body.aptn-apply {
  min-height: 100vh;
  background-color: #061829 !important;
  background-image: none !important;
  color: rgba(255, 255, 255, 0.84);
  font-family: 'Inter', system-ui, sans-serif;
  display: flex;
  flex-direction: column;
}


/* Prevent internal wrappers from adding competing backgrounds */
body.aptn-apply main,
body.aptn-apply .aptn-apply-bg,
body.aptn-apply .apply-section,
body.aptn-apply .page-wrap {
  background: transparent !important;
}

/* ── Sticky footer layout ── */
body.aptn-apply .page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.aptn-apply .page-main {
  flex: 1 0 auto;
  padding-bottom: 56px;
}

body.aptn-apply .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* Transparent internal wrappers */
body.aptn-apply main,
body.aptn-apply .page-main,
body.aptn-apply section,
body.aptn-apply .container,
body.aptn-apply .form-wrap,
body.aptn-apply .form-card {
  background: transparent !important;
}

/* ── Container ── */
body.aptn-apply .aptn-apply-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 132px 32px 120px;
}

@media (max-width: 768px) {
  body.aptn-apply .aptn-apply-wrap {
    padding: 96px 20px 96px;
  }
}

/* ── Institutional panel ── */
body.aptn-apply .aptn-apply-panel {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 44px 44px 40px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

@media (max-width: 768px) {
  body.aptn-apply .aptn-apply-panel {
    padding: 28px 18px;
    border-radius: 16px;
  }
}

/* ── Navbar ── */
body.aptn-apply .aptn-apply-nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 20, 37, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 575.98px) {
  body.aptn-apply .aptn-apply-nav {
    padding: 0 20px;
  }
}

body.aptn-apply .aptn-apply-back {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  transition: color 0.18s ease;
}

body.aptn-apply .aptn-apply-back:hover {
  color: rgba(255, 255, 255, 0.92);
}

/* ── Eyebrow ── */
body.aptn-apply .aptn-apply-eyebrow {
  color: rgba(255, 255, 255, 0.58) !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 14px;
}

/* ── H1 ── */
body.aptn-apply h1,
body.aptn-apply .aptn-apply-h1 {
  color: rgba(255, 255, 255, 0.98) !important;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 14px;
}

/* ── Lead text ── */
body.aptn-apply .aptn-apply-lead {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15px;
  line-height: 1.65;
  max-width: 54ch;
  margin-bottom: 48px;
}

/* ── Generic paragraph fallback ── */
body.aptn-apply p {
  color: rgba(255, 255, 255, 0.76);
}

/* ── Form section title ── */
body.aptn-apply .aptn-form-section-title {
  margin-top: 28px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}

/* ── Hairline divider ── */
body.aptn-apply .aptn-hairline {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  border: 0;
  margin: 14px 0 22px;
}

/* ── Labels ── */
body.aptn-apply label,
body.aptn-apply .aptn-apply-label,
body.aptn-apply .form-label {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

/* ── Inputs / Textarea ── */
body.aptn-apply .aptn-apply-input,
body.aptn-apply .form-control,
body.aptn-apply .form-select,
body.aptn-apply textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: none !important;
  transition: border-color 0.18s ease;
  width: 100%;
  font-family: inherit;
}

body.aptn-apply .aptn-apply-input::placeholder,
body.aptn-apply textarea::placeholder {
  color: rgba(255, 255, 255, 0.50) !important;
}

body.aptn-apply .aptn-apply-input:focus,
body.aptn-apply .form-control:focus,
body.aptn-apply .form-select:focus,
body.aptn-apply textarea:focus {
  border-color: rgba(255, 255, 255, 0.45) !important;
  box-shadow: none !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

/* ── Textarea specific ── */
body.aptn-apply .aptn-apply-textarea {
  resize: vertical;
  min-height: 96px;
}

/* ── Radio buttons ── */
body.aptn-apply .aptn-apply-radio {
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 14px;
  font-weight: 400;
}

body.aptn-apply .aptn-apply-radio:hover {
  color: rgba(255, 255, 255, 0.96) !important;
}

body.aptn-apply .aptn-apply-radio input[type="radio"] {
  border-color: rgba(255, 255, 255, 0.25);
}

body.aptn-apply .aptn-apply-radio input[type="radio"]:checked {
  border-color: rgba(255, 255, 255, 0.80);
  background: rgba(255, 255, 255, 0.80);
}

body.aptn-apply .aptn-apply-radio input[type="radio"]:checked::after {
  background: #041425;
}

/* ── Submit button ── */
body.aptn-apply .btn-aptn-apply {
  background: rgba(255, 255, 255, 0.96) !important;
  color: #041425 !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 13px 32px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.03em;
  box-shadow: none !important;
  transition: transform 0.18s ease, opacity 0.18s ease !important;
  display: inline-block;
  width: auto !important;
}

body.aptn-apply .btn-aptn-apply:hover {
  opacity: 0.92 !important;
  transform: translateY(-1px) !important;
  color: #041425 !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

body.aptn-apply .aptn-apply-submit {
  padding-top: 8px;
}

/* ── Microcopy ── */
body.aptn-apply .aptn-micro,
body.aptn-apply .aptn-apply-microcopy {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.70) !important;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ── Links ── */
body.aptn-apply a {
  color: rgba(255, 255, 255, 0.78);
}

body.aptn-apply a:hover {
  color: rgba(255, 255, 255, 0.98);
}

/* ── Confirmation specific ── */
body.aptn-apply .aptn-confirm-insights {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 52px;
  margin-top: 64px;
}

body.aptn-apply .aptn-confirm-insights-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88) !important;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

body.aptn-apply .aptn-confirm-insights-text {
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 14px;
  line-height: 1.68;
  max-width: 42ch;
  margin-bottom: 28px;
}

body.aptn-apply .aptn-confirm-insights-link {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* ── Insights placeholder ── */
body.aptn-apply .aptn-insights-placeholder-text {
  color: rgba(255, 255, 255, 0.88) !important;
}

body.aptn-apply .aptn-insights-placeholder-sub {
  color: rgba(255, 255, 255, 0.50) !important;
}

/* end */

/* ========================================================
   SITE FOOTER — scope: body.aptn-apply
   ======================================================== */
body.aptn-apply .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 32px 32px;
  background: transparent;
}

body.aptn-apply .aptn-footer-inner {
  max-width: 640px;
  margin: 0 auto;
}

/* Top row: logo + nav links */
body.aptn-apply .aptn-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

body.aptn-apply .aptn-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

body.aptn-apply .aptn-footer-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: color 0.18s ease;
}

body.aptn-apply .aptn-footer-links a:hover {
  color: rgba(255, 255, 255, 0.88);
}

/* Mid row: email + social icons */
body.aptn-apply .aptn-footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.aptn-apply .aptn-footer-email {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.18s ease;
}

body.aptn-apply .aptn-footer-email:hover {
  color: rgba(255, 255, 255, 0.82);
}

body.aptn-apply .aptn-footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.aptn-apply .aptn-footer-social a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.18s ease;
}

body.aptn-apply .aptn-footer-social a:hover {
  color: rgba(255, 255, 255, 0.80);
}

/* Bottom row: copyright */
body.aptn-apply .aptn-footer-bottom p {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.28) !important;
  margin: 0;
}

@media (max-width: 575.98px) {
  body.aptn-apply .site-footer {
    padding: 36px 20px 28px;
  }

  body.aptn-apply .aptn-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  body.aptn-apply .aptn-footer-mid {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =================================================================
   KILL-SWITCH: force dark bg regardless of Bootstrap load order
   ================================================================= */
html.h-100,
html {
  background: #061829 !important;
}

body.aptn-apply,
body.aptn-apply .page-shell {
  background-color: #061829 !important;
  background-image: none !important;
}

body.aptn-apply .aptn-apply-panel {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* Typography */
body.aptn-apply h1,
body.aptn-apply .aptn-apply-h1 {
  color: rgba(255, 255, 255, 0.92) !important;
}

body.aptn-apply .aptn-apply-lead {
  color: rgba(255, 255, 255, 0.78) !important;
}

body.aptn-apply label,
body.aptn-apply .aptn-apply-label,
body.aptn-apply .form-label {
  color: rgba(255, 255, 255, 0.72) !important;
}

body.aptn-apply .aptn-micro,
body.aptn-apply .aptn-apply-microcopy {
  color: rgba(255, 255, 255, 0.62) !important;
}

/* Inputs */
body.aptn-apply .form-control,
body.aptn-apply .form-select,
body.aptn-apply .aptn-apply-input,
body.aptn-apply textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: rgba(255, 255, 255, 0.86) !important;
}

body.aptn-apply .form-control::placeholder,
body.aptn-apply .aptn-apply-input::placeholder,
body.aptn-apply textarea::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* ========================================================
   CASOS DE INTERVENCIÓN (#resultados)
   Light-background institutional version
   ======================================================== */

.aptn-casos {
  background: #F7F9FC;
  padding: 120px 0;
  border-top: 1px solid rgba(10, 20, 40, 0.07);
}

.aptn-casos-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
}

/* Header */
.aptn-casos-hd {
  margin-bottom: 64px;
}

.aptn-casos-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 20, 40, 0.52);
  margin-bottom: 16px;
}

.aptn-casos-h2 {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0B1320;
  margin-bottom: 14px;
}

.aptn-casos-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #344155;
  max-width: 56ch;
  margin: 0;
}

/* 3-column card grid */
.aptn-casos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(10, 20, 40, 0.08);
}

.aptn-caso-card {
  padding: 40px 36px 40px 0;
  border-right: 1px solid rgba(10, 20, 40, 0.07);
  transition: transform 200ms ease;
}

.aptn-caso-card:hover {
  transform: translateY(-2px);
}

.aptn-caso-card:last-child {
  border-right: none;
  padding-right: 0;
}

.aptn-caso-card:not(:first-child) {
  padding-left: 36px;
}

/* Card header */
.aptn-caso-card-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.aptn-caso-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(10, 20, 40, 0.45);
}

.aptn-caso-loc {
  font-size: 11px;
  font-weight: 400;
  color: rgba(10, 20, 40, 0.40);
  letter-spacing: 0.02em;
}

.aptn-caso-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: #0B1320;
  margin: 0 0 28px 0;
}

/* Content sections within card */
.aptn-caso-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(10, 20, 40, 0.06);
}

.aptn-caso-section:last-of-type {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
}

.aptn-caso-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 20, 40, 0.42);
  margin-bottom: 10px;
}

/* Intervention bullet list */
.aptn-caso-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aptn-caso-ul li {
  font-size: 13.5px;
  line-height: 1.6;
  color: #344155;
  padding: 4px 0;
  border-bottom: 1px solid rgba(10, 20, 40, 0.04);
}

.aptn-caso-ul li:last-child {
  border-bottom: none;
}

.aptn-caso-ul li::before {
  content: '·\00a0\00a0';
  color: rgba(10, 20, 40, 0.28);
}

/* Metric rows */
.aptn-caso-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aptn-caso-metrics li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(10, 20, 40, 0.05);
  color: #344155;
}

.aptn-caso-metrics li:last-child {
  border-bottom: none;
}

.aptn-caso-metrics li span:first-child {
  color: rgba(10, 20, 40, 0.55);
  font-weight: 400;
}

.aptn-caso-metrics li span:last-child {
  color: #0B1320;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Per-card microcopy */
.aptn-caso-micro {
  font-size: 11px;
  color: rgba(10, 20, 40, 0.38);
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.5;
}

/* Bottom CTA */
.aptn-casos-cta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(10, 20, 40, 0.07);
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
}

.aptn-casos-cta-text {
  font-size: 15px;
  line-height: 1.6;
  color: #344155;
  max-width: 58ch;
  margin: 0;
}

.aptn-casos-cta-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #0B1320;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color 200ms ease;
}

.aptn-casos-cta-link::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -3px;
  height: 1px;
  background: #0B1320;
  transition: left 220ms ease, right 220ms ease;
}

.aptn-casos-cta-link:hover {
  color: #0B1320;
}

.aptn-casos-cta-link:hover::after {
  left: 0;
  right: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .aptn-casos-inner {
    padding: 0 48px;
  }
}

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

  .aptn-caso-card:nth-child(2) {
    border-right: none;
  }

  .aptn-caso-card:nth-child(3) {
    grid-column: span 2;
    border-right: none;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .aptn-casos {
    padding: 80px 0;
  }

  .aptn-casos-inner {
    padding: 0 24px;
  }

  .aptn-casos-grid {
    grid-template-columns: 1fr;
  }

  .aptn-caso-card {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid rgba(10, 20, 40, 0.07);
  }

  .aptn-caso-card:last-child {
    border-bottom: none;
  }

  .aptn-caso-card:not(:first-child) {
    padding-left: 0;
  }

  .aptn-caso-card:nth-child(3) {
    grid-column: span 1;
  }

  .aptn-casos-cta {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========================================================
   PRINCIPIOS DE INTERVENCIÓN (Matrix block)
   ======================================================== */

.aptn-principios {
  margin-top: 120px;
  padding-top: 80px;
  border-top: 1px solid rgba(10, 20, 40, 0.08);
  /* Adjusted to match light-bg scheme */
}

.aptn-principios-kicker {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 20, 40, 0.52);
  margin-bottom: 12px;
}

.aptn-principios-h3 {
  font-size: 32px;
  font-weight: 600;
  color: #0B1320;
  margin: 12px 0 56px 0;
  letter-spacing: -0.01em;
}

.aptn-principios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.aptn-principio-h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0B1320;
  margin-bottom: 12px;
}

.aptn-principio-p {
  font-size: 15px;
  line-height: 1.65;
  color: #344155;
  opacity: 0.82;
  margin: 0;
}

@media (max-width: 900px) {
  .aptn-principios {
    margin-top: 80px;
    padding-top: 64px;
  }

  .aptn-principios-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .aptn-principios-h3 {
    font-size: 26px;
    margin-bottom: 40px;
  }
}

/* ========================================================
   HERO REFINEMENTS
   ======================================================== */

.aptn-hero {
  padding: 72px 0 !important;
}

.aptn-hero .py-vh-3 {
  padding-top: 5vh !important;
  padding-bottom: 5vh !important;
}

.aptn-hero-eyebrow {
  color: rgba(255, 255, 255, 0.60) !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}



.aptn-hero-microcopy {
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  color: rgba(255, 255, 255, 0.60) !important;
  margin-top: 24px !important;
}

/* ========================================================
   FINAL STRATEGIC CTA & BRANDING
   ======================================================== */

.aptn-final-cta {
  background: #04101c !important;
  /* Deepest elite navy */
  padding: 160px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.aptn-final-cta h2 {
  font-size: clamp(2.25rem, 6vw, 52px) !important;
  font-weight: 600 !important;
  color: #F2F4F8 !important;
  /* Definitive white legibility */
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
  max-width: 900px;
  margin: 0 auto 32px auto !important;
  text-align: center;
  opacity: 1 !important;
  /* Ensure no global opacity overrides */
}

.aptn-final-cta .lead {
  font-size: 18px !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 720px;
  margin: 0 auto 48px auto !important;
  text-align: center;
}



.aptn-cta-micro {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 22px !important;
  text-align: center;
}

.aptn-cta-signature {
  margin-top: 36px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.35;
  text-align: center;
  color: #ffffff;
  /* Explicit for dark background */
}

@media (max-width: 992px) {
  .aptn-final-cta {
    padding: 120px 0;
  }
}

@media (max-width: 768px) {
  .aptn-final-cta {
    padding: 100px 0;
  }

  .aptn-final-cta h2 {
    font-size: 32px !important;
  }


}

/* ========================================================
   DEFINITIVE CONTRAST & LEGIBILITY FIX
   ======================================================== */

/* Fix legibilidad H1 hero y claim final */
.aptn-hero h1,
.aptn-final-cta h1,
.aptn-final-claim,
.display-huge,
h1 {
  color: #F2F4F8 !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  -webkit-text-fill-color: #F2F4F8 !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35) !important;
}

/* Ensure parents don't dim the content */
.aptn-hero .container,
.aptn-final-cta .container,
.aptn-cta-action {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  position: relative;
  z-index: 2;
}

/* Fix Hero Overlay to be behind text */
.aptn-hero .bg-black.opacity-75 {
  opacity: 0.15 !important;
  z-index: 1 !important;
}

.hero .aptn-cta {
  margin-top: 20px !important;
}

.aptn-cta {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;

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

  padding: 0 !important;
  margin: 0 !important;

  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none !important;

  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  padding-bottom: 4px;

  cursor: pointer;
  transition: transform .22s ease, opacity .22s ease, border-color .22s ease;
}

.aptn-cta .aptn-cta-arrow {
  display: inline-block;
  transform: translateY(1px);
  transition: transform .22s ease;
}

.aptn-cta:hover {
  opacity: 0.80;
  transform: translateX(2px);
  border-bottom-color: rgba(255, 255, 255, 0.85);
}

.aptn-cta:hover .aptn-cta-arrow {
  transform: translate(2px, 1px);
}

.aptn-cta-dark {
  color: #0F1C2E !important;
  border-bottom: 1px solid rgba(15, 28, 46, 0.35) !important;
}

.aptn-cta-dark:hover {
  border-bottom: 1px solid #0F1C2E !important;
}

.aptn-cta-dark .aptn-cta-arrow {
  color: #0F1C2E !important;
}

.admission-cta-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url("../img/hero/stok/stock-hero.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 45, 0.72);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
}




/* ===== SISTEMA APTN VISUAL ===== */
.aptn-visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

@media (max-width: 992px) {
  .aptn-visual {
    margin-top: 20px;
  }
}

/* ===== CASOS VISUAL ===== */

/* mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 65vh;
  }
}

/* accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

/* ============================================================
   MÓDULO: INSIGHT INSTITUCIONAL
   Estética McKinsey / BCG – minimalista, editorial, alto contraste
   ============================================================ */

/* Sección raíz */
.aptn-insight-section {
  background-color: var(--aptn-light);
  padding-top: 80px;
  padding-bottom: 96px;
}

/* Contenedor centrado de lectura */
.aptn-insight-container {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Wrapper del artículo (usado como <section> semántica en el HTML) */
.aptn-insight-article {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56px;
  padding-bottom: 80px;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── Título principal (h1) ── */
.aptn-insight-title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--aptn-text);
  margin-top: 0;
  margin-bottom: 24px;
}

/* ── Subtítulo editorial (h2 de apertura) ── */
.aptn-insight-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--aptn-muted);
  margin-top: 16px;
  margin-bottom: 48px;
  max-width: 780px;
}

/* ── Títulos de sección (h2 numerados: I, II, III…) ── */
.aptn-insight-section-title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: var(--aptn-text);
  margin-top: 56px;
  margin-bottom: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--aptn-border);
}

/* ── Encabezado de bloque menor (h3 de subsección) ── */
.aptn-insight-section-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--aptn-primary);
  opacity: 0.75;
  margin-top: 40px;
  margin-bottom: 12px;
}

.aptn-insight-subsection {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  color: var(--aptn-text);
  margin-top: 36px;
  margin-bottom: 12px;
}

/* ── Bloque de contenido ── */
.aptn-insight-block {
  margin-top: 40px;
}

/* ── Subbloque (agrupación secundaria) ── */
.aptn-insight-subblock {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 2px solid var(--aptn-border);
}

/* ── Párrafo base ── */
.aptn-insight-paragraph,
.aptn-insight-body {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: #3a3a3a;
  margin-top: 18px;
  margin-bottom: 0;
}

/* ── Párrafo de énfasis estratégico ── */
.aptn-insight-emphasis {
  font-size: 17px;
  font-weight: 500;
  color: var(--aptn-text);
  line-height: 1.75;
  margin-top: 22px;
}

/* ── Lista editorial ── */
.aptn-insight-list {
  list-style: none;
  padding: 0;
  margin-top: 18px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aptn-insight-list li {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: #3a3a3a;
  padding-left: 20px;
  position: relative;
}

.aptn-insight-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--aptn-primary);
  opacity: 0.5;
}

/* ── Firma institucional ── */
.aptn-insight-firma {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--aptn-muted);
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--aptn-border);
}

/* ── Divider horizontal ── */
.aptn-insight-divider {
  border: none;
  border-top: 1px solid var(--aptn-border);
  margin-top: 64px;
  margin-bottom: 64px;
}

/* ── Responsive: tablet y mobile ── */
@media (max-width: 767.98px) {
  .aptn-insight-section {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .aptn-insight-article {
    padding-top: 36px;
    padding-bottom: 56px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .aptn-insight-title {
    font-size: 28px;
    letter-spacing: -0.3px;
  }

  .aptn-insight-subtitle {
    font-size: 17px;
    margin-bottom: 36px;
  }

  .aptn-insight-section-title {
    font-size: 20px;
    margin-top: 40px;
    padding-top: 24px;
  }

  .aptn-insight-subsection {
    font-size: 18px;
    margin-top: 28px;
  }

  .aptn-insight-paragraph,
  .aptn-insight-body {
    font-size: 16px;
    line-height: 1.75;
  }

  .aptn-insight-emphasis {
    font-size: 16px;
  }

  .aptn-insight-list li {
    font-size: 16px;
  }

  .aptn-insight-divider {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .aptn-insight-firma {
    margin-top: 40px;
    padding-top: 24px;
  }
}

@media (max-width: 575.98px) {
  .aptn-insight-article {
    padding-left: 16px;
    padding-right: 16px;
  }

  .aptn-insight-title {
    font-size: 24px;
  }

  .aptn-insight-section-title {
    font-size: 18px;
  }
}

/* ============================================================
   MÓDULO: INSIGHT PAGE – HERO EDITORIAL + BODY REDISEÑADO
   Estilo global firm: McKinsey / BCG
   ============================================================ */

/* Page wrapper */
.aptn-insight-page {
  background-color: #ffffff;
  color: #111111;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── HERO ────────────────────────────────────────────────── */
.aptn-insight-hero {
  background-color: #060E1A;
  color: #ffffff;
  padding-top: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aptn-insight-hero-inner {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}

/* Columna izquierda: texto */
.aptn-insight-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Metadatos */
.aptn-insight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.aptn-insight-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.aptn-insight-meta-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

.aptn-insight-meta-date,
.aptn-insight-meta-type {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.2px;
}

/* Título h1 */
.aptn-insight-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 24px;
}

/* Subtítulo hero */
.aptn-insight-subtitle {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 640px;
}

/* ── ART PANEL (columna derecha) ────────────────────────── */
.aptn-insight-art {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  /* patrón dot sutil */
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 18px 18px;
  background-color: rgba(15, 61, 145, 0.08);
}

.aptn-insight-art-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  width: 100%;
}

.aptn-insight-art-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.aptn-insight-art-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.aptn-insight-art-rule {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 8px 0;
}

.aptn-insight-art-stat {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ── BODY ────────────────────────────────────────────────── */
.aptn-insight-body {
  background-color: #ffffff;
  padding-top: 72px;
  padding-bottom: 96px;
}

.aptn-insight-container {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* h2 de secciones */
.aptn-insight-h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: #111111;
  margin-top: 0;
  margin-bottom: 20px;
}

/* h3 de subsecciones */
.aptn-insight-h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  color: #111111;
  margin-top: 36px;
  margin-bottom: 12px;
}

/* Párrafo base */
.aptn-insight-p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.85;
  color: #2a2a2a;
  margin-top: 16px;
  margin-bottom: 0;
}

/* Párrafo de énfasis */
.aptn-insight-p.aptn-insight-emphasis,
.aptn-insight-emphasis {
  font-weight: 500;
  color: #111111;
}

/* Lista editorial */
.aptn-insight-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aptn-insight-list li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #2a2a2a;
  padding-left: 22px;
  position: relative;
}

.aptn-insight-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--aptn-primary);
  opacity: 0.5;
}

/* Divider */
.aptn-insight-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin-top: 56px;
  margin-bottom: 56px;
}

/* Firma */
.aptn-insight-firma {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #888888;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid #e8e8e8;
}

/* Backlink – versión navbar */
.aptn-insight-backlink {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.aptn-insight-backlink:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Backlink – versión pie del body */
.aptn-insight-backlink--body {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--aptn-muted);
  text-decoration: none;
  margin-top: 32px;
  letter-spacing: 0.1px;
  transition: color 0.2s ease;
}

.aptn-insight-backlink--body:hover {
  color: var(--aptn-primary);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .aptn-insight-hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .aptn-insight-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .aptn-insight-title {
    font-size: 36px;
  }

  .aptn-insight-art {
    min-height: 160px;
  }
}

@media (max-width: 767.98px) {
  .aptn-insight-hero {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .aptn-insight-hero-inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 32px;
  }

  .aptn-insight-title {
    font-size: 32px;
    letter-spacing: -0.3px;
  }

  .aptn-insight-subtitle {
    font-size: 17px;
  }

  .aptn-insight-body {
    padding-top: 44px;
    padding-bottom: 64px;
  }

  .aptn-insight-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .aptn-insight-h2 {
    font-size: 20px;
  }

  .aptn-insight-h3 {
    font-size: 17px;
  }

  .aptn-insight-p,
  .aptn-insight-list li {
    font-size: 17px;
  }

  .aptn-insight-divider {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  .aptn-insight-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .aptn-insight-hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .aptn-insight-title {
    font-size: 28px;
  }
}

/* ============================================================
   MÓDULO: BARRA DE PROGRESO DE LECTURA
   Solo activa en insights.html
   ============================================================ */

.aptn-read-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  z-index: 1100;
  /* por encima del navbar (z-index 1030 en Bootstrap) */
  pointer-events: none;
}

/* El navbar tiene padding-top en mobile; en desktop la barra queda justo
   arriba del header. Como está fixed top:0 y el navbar también es fixed,
   la barra queda detrás visualmente al primer pixel — perfecto. */
.aptn-read-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--aptn-primary, #0F3D91);
  transition: width 0.1s linear;
  will-change: width;
}

/* ============================================================
   MÓDULO: RATING 5 ESTRELLAS
   Solo en insights.html, al final del artículo
   ============================================================ */

.aptn-rating-block {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aptn-rating-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #555555;
  margin: 0;
}

.aptn-stars {
  display: flex;
  gap: 8px;
  align-items: center;
}

.aptn-star-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: #cccccc;
  transition: color 0.15s ease, transform 0.1s ease;
  -webkit-appearance: none;
  appearance: none;
}

.aptn-star-btn:hover,
.aptn-star-btn.aptn-star--hover {
  color: var(--aptn-primary, #0F3D91);
  transform: scale(1.15);
}

.aptn-star-btn.aptn-star--filled {
  color: var(--aptn-primary, #0F3D91);
}

.aptn-star-btn.aptn-star--locked {
  cursor: default;
}

.aptn-star-btn.aptn-star--locked:hover {
  transform: none;
}

.aptn-star-btn:focus-visible {
  outline: 2px solid var(--aptn-primary, #0F3D91);
  outline-offset: 3px;
  border-radius: 2px;
}

.aptn-rating-confirm {
  font-size: 13px;
  font-weight: 400;
  color: var(--aptn-muted, #6B7280);
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-height: 1.5em;
}

@media (max-width: 767.98px) {
  .aptn-rating-block {
    margin-top: 48px;
    padding-top: 32px;
    gap: 14px;
  }

  .aptn-star-btn {
    font-size: 28px;
    /* más fácil de tocar en mobile */
  }
}

/* ============================================================
   KICKER SPACING — Aire visual bajo la navbar fija
   La navbar fija mide ~64px. El hero añade padding-top propio,
   pero necesitamos asegurar que el kicker tenga 48px de respiro
   desde el borde inferior de la nav.
   ============================================================ */

/* Sobrescribe el padding del hero para compensar navbar fija */
.aptn-insight-hero {
  padding-top: calc(64px + 48px);
  /* navbar-height + breathing room */
}

/* El span .aptn-insight-kicker ya existe; añadimos propiedades
   adicionales para la legibilidad editorial */
.aptn-insight-kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

@media (max-width: 991.98px) {
  .aptn-insight-hero {
    padding-top: calc(60px + 32px);
    /* navbar más pequeña en mobile + 32px */
  }
}

/* ============================================================
   MÓDULO: INSIGHTS ÍNDICE (insights.html)
   Hero simple + listado de tarjetas
   ============================================================ */

/* ── Hero del índice ──────────────────────────────────────── */
.aptn-insights-index-hero {
  background-color: #060E1A;
  color: #ffffff;
  padding-top: calc(64px + 56px);
  /* navbar ~64px + aire */
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.aptn-insights-index-hero-inner {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.aptn-insights-index-title {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 16px;
}

.aptn-insights-index-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 560px;
}

/* ── Cuerpo del índice ────────────────────────────────────── */
.aptn-insights-index-body {
  background-color: #ffffff;
  padding-top: 72px;
  padding-bottom: 96px;
}

.aptn-insights-index-container {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ── Tarjeta de insight ───────────────────────────────────── */
.aptn-insight-card {
  padding: 32px 0 32px;
  border-top: 1px solid #e8e8e8;
}

.aptn-insight-card:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.aptn-insight-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.aptn-insight-card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--aptn-primary, #0F3D91);
}

.aptn-insight-card-dot {
  font-size: 11px;
  color: #cccccc;
}

.aptn-insight-card-date {
  font-size: 12px;
  font-weight: 400;
  color: var(--aptn-muted, #6B7280);
}

.aptn-insight-card-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: #111111;
  margin-top: 0;
  margin-bottom: 12px;
}

.aptn-insight-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.aptn-insight-card-title a:hover {
  color: var(--aptn-primary, #0F3D91);
}

.aptn-insight-card-excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #4a4a4a;
  margin-top: 0;
  margin-bottom: 20px;
}

.aptn-insight-card-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--aptn-primary, #0F3D91);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: opacity 0.15s ease;
}

.aptn-insight-card-cta:hover {
  opacity: 0.7;
}

/* ── Backlink top (en detalle artículo) ───────────────────── */
.aptn-insight-backlink--top {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: var(--aptn-muted, #6B7280);
  text-decoration: none;
  margin-bottom: 40px;
  letter-spacing: 0.1px;
  transition: color 0.15s ease;
}

.aptn-insight-backlink--top:hover {
  color: var(--aptn-primary, #0F3D91);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .aptn-insights-index-hero {
    padding-top: calc(60px + 40px);
    padding-bottom: 48px;
  }

  .aptn-insights-index-title {
    font-size: 40px;
  }

  .aptn-insights-index-hero-inner,
  .aptn-insights-index-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767.98px) {
  .aptn-insights-index-hero {
    padding-top: calc(60px + 32px);
    padding-bottom: 40px;
  }

  .aptn-insights-index-title {
    font-size: 32px;
  }

  .aptn-insights-index-sub {
    font-size: 16px;
  }

  .aptn-insights-index-body {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .aptn-insights-index-hero-inner,
  .aptn-insights-index-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .aptn-insight-card-title {
    font-size: 19px;
  }
}

/* ============================================================
   MÓDULO: LAYOUT EDITORIAL 2 COLUMNAS (insight-001.html)
   article (columna principal) + aside (sidebar sticky)
   ============================================================ */

/* ── Wrapper exterior del body ────────────────────────────── */
.aptn-insight-layout-wrap {
  background-color: #ffffff;
  padding-top: 64px;
  padding-bottom: 96px;
  /* Hereda el max-width del contenedor del artículo original;
     el grid interior gestiona las anchos internamente */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ── Grid 2 columnas ──────────────────────────────────────── */
.aptn-insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
}

/* ── Columna principal ────────────────────────────────────── */
.aptn-insight-main {
  min-width: 0;
  /* previene overflow en grid */
}

/* ── Sidebar ──────────────────────────────────────────────── */
.aptn-insight-aside {
  position: sticky;
  /* navbar ~64px + 32px breathing = 96px */
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Módulo genérico (rating, most popular) ───────────────── */
.aptn-insight-module {
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 20px 22px 22px;
}

.aptn-insight-module-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #888888;
  margin-top: 0;
  margin-bottom: 16px;
}

/* ── Lista "Más leídos" ───────────────────────────────────── */
.aptn-insight-module-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aptn-insight-module-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  /* contador ordinal con padding-left */
  counter-increment: insight-counter;
  position: relative;
  padding-left: 28px;
}

.aptn-insight-module-list li::before {
  content: counter(insight-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 13px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #bbbbbb;
}

.aptn-insight-module-list {
  counter-reset: insight-counter;
}

.aptn-insight-module-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.aptn-insight-module-list a {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #222222;
  text-decoration: none;
  display: block;
  transition: color 0.15s ease;
}

.aptn-insight-module-list a:hover {
  color: var(--aptn-primary, #0F3D91);
}

/* ── Backlink del aside ───────────────────────────────────── */
.aptn-insight-aside-back {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: var(--aptn-muted, #6B7280);
  text-decoration: none;
  padding: 10px 0 2px;
  letter-spacing: 0.1px;
  transition: color 0.15s ease;
}

.aptn-insight-aside-back:hover {
  color: var(--aptn-primary, #0F3D91);
}

/* ── Responsive: sidebar baja al fondo ───────────────────── */
@media (max-width: 960px) {
  .aptn-insight-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .aptn-insight-aside {
    position: static;
    /* En mobile el aside viene después del artículo en el DOM,
       así que automáticamente baja. */
  }

  .aptn-insight-layout-wrap {
    padding-top: 48px;
    padding-bottom: 72px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767.98px) {
  .aptn-insight-layout-wrap {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .aptn-insight-module {
    padding: 18px 18px 20px;
  }
}

/* ============================================================
   MÓDULO: FAQ SECTION (AEO / SEO)
   Solo en insight-001.html, dentro de .aptn-insight-main
   ============================================================ */

.aptn-faq {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
}

.aptn-faq-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #888888;
  margin-top: 0;
  margin-bottom: 32px;
}

.aptn-faq-item {
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}

.aptn-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.aptn-faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #111111;
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.1px;
}

.aptn-faq-item p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

@media (max-width: 767.98px) {
  .aptn-faq {
    margin-top: 48px;
    padding-top: 32px;
  }

  .aptn-faq-item {
    padding: 20px 0;
  }

  .aptn-faq-item h3 {
    font-size: 15px;
  }
}