/**
 * Professional Fusion - Hoja de Estilos Principal
 * Arquitectura modular, moderna, accesible y responsive.
 */

/* ==========================================================================
   1. RESET Y CONFIGURACIÓN BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--pf-font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    color: var(--pf-text-body, #475569);
    background-color: var(--pf-bg-white, #ffffff);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

#page.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.site-main {
    flex: 1 0 auto;
}

/* Enlaces y botones base */
a {
    color: var(--pf-primary, #2563eb);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a:hover {
    color: var(--pf-primary-hover, #1d4ed8);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--pf-primary, #2563eb);
    outline-offset: 3px;
}

ul, ol {
    list-style: none;
}

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

/* Contenedor centralizado */
.site-container {
    width: 100%;
    max-width: var(--pf-container-max, 1200px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 768px) {
    .site-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Clases de utilidad */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.pf-text-center {
    text-align: center;
}

.pf-bg-white {
    background-color: #ffffff;
}

.pf-bg-slate {
    background-color: #f8fafc;
}

/* Botones universales */
.pf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.25;
    padding: 0.625rem 1.25rem;
    border-radius: var(--pf-radius-sm, 6px);
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.pf-btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
}

.pf-btn-lg {
    padding: 0.8125rem 1.75rem;
    font-size: 1rem;
    border-radius: var(--pf-radius-md, 10px);
}

.pf-btn-primary {
    background-color: var(--pf-primary, #2563eb);
    color: #ffffff;
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.2);
}

.pf-btn-primary:hover {
    background-color: var(--pf-primary-hover, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.pf-btn-outline {
    background-color: transparent;
    border-color: var(--pf-border-color, #e2e8f0);
    color: var(--pf-secondary, #0f172a);
}

.pf-btn-outline:hover {
    background-color: var(--pf-bg-slate, #f8fafc);
    border-color: #cbd5e1;
    color: var(--pf-primary, #2563eb);
}

.pf-btn-white {
    background-color: #ffffff;
    color: #0f172a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pf-btn-white:hover {
    background-color: #f8fafc;
    color: #2563eb;
    transform: translateY(-1px);
}

.pf-btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
}

.pf-btn-outline-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #1e40af;
}

.pf-btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}

.pf-btn-whatsapp:hover {
    background-color: #1eb956;
    color: #ffffff;
    transform: translateY(-1px);
}

.pf-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 9999px;
    background-color: #dbeafe;
    color: #1e40af;
}

.pf-badge-hero {
    background-color: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.pf-badge-secondary {
    background-color: #f1f5f9;
    color: #475569;
}

.pf-badge-accent {
    background-color: #e0f2fe;
    color: #0369a1;
}

.pf-badge-light {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   2. TOPBAR CORPORATIVA
   ========================================================================== */
.pf-topbar {
    background-color: #0f172a;
    color: #94a3b8;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pf-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    min-height: 38px;
}

.pf-topbar-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.pf-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.pf-topbar-item:hover {
    color: #ffffff;
}

.pf-topbar-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.8;
}

.pf-topbar-links {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .pf-topbar-links {
        display: flex;
    }
}

.pf-topbar-link {
    color: #94a3b8;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.pf-topbar-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.pf-topbar-link.is-highlight {
    color: #38bdf8;
    font-weight: 500;
}

.pf-topbar-link.is-highlight:hover {
    color: #bae6fd;
}

/* ==========================================================================
   3. HEADER Y NAVEGACIÓN PRINCIPAL
   ========================================================================== */
.pf-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--pf-border-color, #e2e8f0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.pf-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.pf-logo-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.pf-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.pf-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.pf-brand-text {
    display: flex;
    flex-direction: column;
}

.pf-brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--pf-secondary, #0f172a);
    letter-spacing: -0.02em;
}

.pf-brand-subtitle {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pf-text-muted, #64748b);
}

/* Navegación Desktop */
.pf-nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .pf-nav-desktop {
        display: flex;
    }
}

.pf-menu-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pf-menu-item {
    position: relative;
}

.pf-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--pf-secondary-light, #1e293b);
    border-radius: var(--pf-radius-sm, 6px);
    transition: all 0.15s ease;
}

.pf-menu-link:hover,
.pf-menu-item:focus-within > .pf-menu-link {
    color: var(--pf-primary, #2563eb);
    background-color: var(--pf-bg-slate, #f8fafc);
}

.pf-menu-link svg.pf-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.pf-menu-item:hover .pf-menu-link svg.pf-arrow,
.pf-menu-item:focus-within .pf-menu-link svg.pf-arrow {
    transform: rotate(180deg);
}

/* Dropdown / Submenús Desktop */
.pf-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background-color: #ffffff;
    border: 1px solid var(--pf-border-color, #e2e8f0);
    border-radius: var(--pf-radius-md, 10px);
    box-shadow: var(--pf-shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.08));
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1050;
}

.pf-menu-item:hover > .pf-dropdown-menu,
.pf-menu-item:focus-within > .pf-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.pf-dropdown-link {
    display: flex;
    flex-direction: column;
    padding: 0.625rem 0.75rem;
    border-radius: var(--pf-radius-sm, 6px);
    color: var(--pf-secondary, #0f172a);
    transition: all 0.15s ease;
}

.pf-dropdown-link:hover,
.pf-dropdown-link:focus-visible {
    background-color: var(--pf-bg-slate, #f8fafc);
    color: var(--pf-primary, #2563eb);
}

.pf-dropdown-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
}

.pf-dropdown-desc {
    font-size: 0.75rem;
    color: var(--pf-text-muted, #64748b);
    line-height: 1.3;
    margin-top: 0.15rem;
}

/* Header CTAs Desktop */
.pf-header-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .pf-header-actions {
        display: flex;
    }
}

/* Botón Hamburguesa Móvil */
.pf-hamburger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--pf-border-color, #e2e8f0);
    border-radius: var(--pf-radius-sm, 6px);
    color: var(--pf-secondary, #0f172a);
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (min-width: 1024px) {
    .pf-hamburger-btn {
        display: none;
    }
}

.pf-hamburger-btn:hover {
    background-color: var(--pf-bg-slate, #f8fafc);
    color: var(--pf-primary, #2563eb);
}

.pf-hamburger-icon {
    width: 22px;
    height: 22px;
    position: relative;
    display: block;
}

.pf-hamburger-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.pf-hamburger-icon span:nth-child(1) { top: 4px; }
.pf-hamburger-icon span:nth-child(2) { top: 10px; }
.pf-hamburger-icon span:nth-child(3) { top: 16px; }

.pf-hamburger-btn[aria-expanded="true"] .pf-hamburger-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.pf-hamburger-btn[aria-expanded="true"] .pf-hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.pf-hamburger-btn[aria-expanded="true"] .pf-hamburger-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Drawer Móvil */
.pf-mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pf-mobile-backdrop.is-active {
    opacity: 1;
    visibility: visible;
}

.pf-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1050;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.pf-mobile-drawer.is-open {
    transform: translateX(0);
}

.pf-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--pf-border-color, #e2e8f0);
}

.pf-mobile-close-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--pf-text-muted, #64748b);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.pf-mobile-close-btn:hover {
    color: var(--pf-secondary, #0f172a);
    background-color: var(--pf-bg-slate, #f8fafc);
}

.pf-mobile-nav {
    padding: 1rem 0;
    flex: 1 0 auto;
}

.pf-mobile-menu {
    display: flex;
    flex-direction: column;
}

.pf-mobile-item {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.pf-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pf-secondary, #0f172a);
    text-decoration: none;
}

.pf-mobile-link:hover {
    background-color: var(--pf-bg-slate, #f8fafc);
    color: var(--pf-primary, #2563eb);
}

.pf-mobile-submenu-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--pf-text-muted, #64748b);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pf-mobile-submenu-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.pf-mobile-submenu-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.pf-mobile-submenu {
    display: none;
    background-color: var(--pf-bg-slate, #f8fafc);
    padding: 0.5rem 1.25rem 0.75rem 1.5rem;
}

.pf-mobile-submenu.is-visible {
    display: block;
}

.pf-mobile-sublink {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--pf-text-body, #475569);
    font-weight: 500;
}

.pf-mobile-sublink:hover {
    color: var(--pf-primary, #2563eb);
}

.pf-mobile-footer-actions {
    padding: 1.25rem;
    border-top: 1px solid var(--pf-border-color, #e2e8f0);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: var(--pf-bg-white, #ffffff);
}

.pf-mobile-client-links {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   4. ESTRUCTURA DE SECCIONES GLOBALES
   ========================================================================== */
.pf-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
}

@media (min-width: 1024px) {
    .pf-section {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }
}

.pf-section-header {
    margin-bottom: 2.25rem;
}

.pf-section-title {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .pf-section-title {
        font-size: 2.25rem;
    }
}

.pf-section-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   5. SECCIÓN HERO
   ========================================================================== */
.pf-hero-section {
    padding-top: 3rem;
    padding-bottom: 3.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--pf-border-color, #e2e8f0);
}

@media (min-width: 1024px) {
    .pf-hero-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.pf-hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pf-hero-container {
        grid-template-columns: 1.05fr 1.15fr;
        gap: 2.75rem;
    }
}

.pf-hero-eyebrow {
    margin-bottom: 1.25rem;
}

.pf-hero-title {
    font-size: 2.125rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .pf-hero-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1200px) {
    .pf-hero-title {
        font-size: 3.125rem;
    }
}

.pf-hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 540px;
}

.pf-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}

.pf-hero-microtrust {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

@media (min-width: 640px) {
    .pf-hero-microtrust {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }
}

.pf-hero-microitem {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}

/* Mockup de Navegador con Captura de SOR */
.pf-hero-visual {
    position: relative;
}

.pf-browser-mockup {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
}

.pf-mockup-header {
    background-color: #f1f5f9;
    padding: 0.625rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pf-mockup-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pf-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pf-dot-red { background-color: #ef4444; }
.pf-dot-yellow { background-color: #f59e0b; }
.pf-dot-green { background-color: #10b981; }

.pf-mockup-url {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.2rem 0.75rem;
    font-size: 0.6875rem;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex: 1;
    max-width: 240px;
}

.pf-mockup-body {
    background-color: #f8fafc;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pf-mockup-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.pf-mockup-placeholder {
    padding: 3rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
}

.pf-mockup-placeholder p {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.125rem;
}

.pf-mockup-placeholder span {
    font-size: 0.875rem;
}

.pf-mockup-floating-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.625rem 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    gap: 0.625rem;
    z-index: 5;
}

@media (min-width: 640px) {
    .pf-mockup-floating-badge {
        display: flex;
    }
}

.pf-floating-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #dcfce7;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-floating-text {
    display: flex;
    flex-direction: column;
}

.pf-floating-text strong {
    font-size: 0.8125rem;
    color: #0f172a;
    line-height: 1.2;
}

.pf-floating-text span {
    font-size: 0.6875rem;
    color: #64748b;
}

/* ==========================================================================
   6. FRANJA DE CONFIANZA VERIFICADA
   ========================================================================== */
.pf-trust-section {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

.pf-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pf-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pf-trust-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }
}

.pf-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pf-trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-trust-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.pf-trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pf-trust-text strong {
    font-size: 0.875rem;
    color: #0f172a;
    line-height: 1.3;
}

.pf-trust-text span {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
}

/* ==========================================================================
   7. BANNER COMERCIAL DESTACADO
   ========================================================================== */
.pf-featured-banner-section {
    padding: 2.75rem 0 3.25rem;
    background: #ffffff;
}

.pf-featured-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 18px;
    background: linear-gradient(135deg, #0f172a 0%, #172554 58%, #1e3a8a 100%);
    box-shadow: 0 18px 45px -24px rgba(15, 23, 42, 0.58);
}

.pf-featured-banner-content {
    padding: 2rem 1.25rem;
    color: #ffffff;
}

.pf-featured-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(253, 230, 138, 0.42);
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: #fef3c7;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.pf-featured-banner-title {
    max-width: 680px;
    margin-top: 0.9rem;
    color: #ffffff;
    font-size: clamp(1.75rem, 7.2vw, 2.85rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
}

.pf-featured-banner-subtitle {
    margin-top: 0.8rem;
    color: #bfdbfe;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.pf-featured-banner-description {
    max-width: 680px;
    margin-top: 1rem;
    color: #dbeafe;
    font-size: 0.9375rem;
    line-height: 1.65;
}

.pf-featured-banner-benefits {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.pf-featured-banner-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    min-width: 0;
    color: #f8fafc;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
}

.pf-featured-banner-benefits svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin-top: 0.05rem;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.16);
    fill: #86efac;
}

.pf-featured-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.pf-featured-banner-primary {
    border-color: #ffffff;
    background: #ffffff;
    color: #1e3a8a;
}

.pf-featured-banner-primary:hover {
    border-color: #dbeafe;
    background: #dbeafe;
    color: #172554;
}

.pf-featured-banner-secondary {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.pf-featured-banner-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.pf-featured-banner-secondary svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.pf-featured-banner-primary:focus-visible,
.pf-featured-banner-secondary:focus-visible {
    outline: 3px solid #fbbf24;
    outline-offset: 3px;
}

.pf-featured-banner-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 255px;
    padding: 1.25rem;
    overflow: hidden;
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 64%, #bfdbfe 100%);
}

.pf-featured-banner-art {
    width: min(100%, 460px);
}

.pf-featured-banner-art svg {
    display: block;
    width: 100%;
    height: auto;
}

.pf-featured-banner-visual.has-image {
    padding: 0;
}

.pf-featured-banner-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 255px;
    object-fit: cover;
}

.pf-featured-banner-seal {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 94px;
    min-height: 94px;
    padding: 0.65rem;
    border: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: #1e3a8a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
    color: #ffffff;
    font-size: 0.625rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-align: center;
}

.pf-featured-banner-seal .is-number {
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

@media (min-width: 600px) {
    .pf-featured-banner-content {
        padding: 2.5rem;
    }

    .pf-featured-banner-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pf-featured-banner-visual,
    .pf-featured-banner-image {
        min-height: 340px;
    }
}

@media (min-width: 1024px) {
    .pf-featured-banner-section {
        padding: 3.25rem 0 3.75rem;
    }

    .pf-featured-banner {
        grid-template-columns: minmax(0, 58fr) minmax(360px, 42fr);
    }

    .pf-featured-banner-content {
        padding: 3rem;
    }

    .pf-featured-banner-title {
        font-size: 2.85rem;
    }

    .pf-featured-banner-visual,
    .pf-featured-banner-image {
        min-height: 100%;
    }
}

@media (max-width: 430px) {
    .pf-featured-banner-actions .pf-btn {
        width: 100%;
    }
}

/* ==========================================================================
   8. PRESENTACIÓN DE SOR (PILARES)
   ========================================================================== */
.pf-intro-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .pf-intro-pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.pf-pillar-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.35rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.75rem;
    align-items: center;
}

.pf-pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.06);
}

.pf-pillar-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #93c5fd;
    line-height: 1;
    margin-bottom: 0;
}

.pf-pillar-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
}

.pf-pillar-text {
    grid-column: 1 / -1;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
    margin-top: 0.65rem;
}

/* ==========================================================================
   8. MÓDULOS DE SOR (CUADRÍCULA)
   ========================================================================== */
.pf-modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .pf-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.pf-module-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.pf-module-card-featured {
    border-color: #93c5fd;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pf-module-card-ph {
    border-color: #3b82f6;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    grid-column: 1 / -1;
}

.pf-module-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.pf-module-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.pf-module-icon-box svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.pf-module-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.pf-module-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1.25rem;
    flex: 1 0 auto;
}

.pf-module-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
    color: #334155;
    font-weight: 500;
}

.pf-module-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    margin-top: auto;
}

.pf-module-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* ==========================================================================
   9. PROPIEDAD HORIZONTAL DESTACADO
   ========================================================================== */
.pf-ph-section {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pf-ph-wrapper {
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 2.25rem 1.25rem;
}

@media (min-width: 768px) {
    .pf-ph-wrapper {
        padding: 2.75rem 2.25rem;
    }
}

/* Flujo Horizontal de 7 Pasos */
.pf-ph-flow-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .pf-ph-flow-container {
        flex-direction: row;
        gap: 0.5rem;
    }
}

.pf-ph-step {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem 0.875rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1024px) {
    .pf-ph-step {
        width: 135px;
        min-height: 108px;
        justify-content: center;
    }
}

.pf-step-highlight {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

.pf-step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.pf-step-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.pf-step-desc {
    font-size: 0.6875rem;
    color: #64748b;
    margin-top: 0.25rem;
    line-height: 1.2;
}

.pf-ph-arrow {
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-ph-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* En móvil las flechas apuntan hacia abajo */
@media (max-width: 1023px) {
    .pf-ph-arrow svg {
        transform: rotate(90deg);
    }
}

.pf-ph-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .pf-ph-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.pf-ph-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pf-ph-feat-item strong {
    display: block;
    font-size: 0.9375rem;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.pf-ph-feat-item p {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
}

/* ==========================================================================
   10. SERVICIOS PROFESIONALES
   ========================================================================== */
.pf-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .pf-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pf-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.pf-service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.pf-service-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.pf-service-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f1f5f9;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pf-service-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.pf-service-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.pf-service-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1rem;
    flex: 1 0 auto;
}

.pf-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
}

/* ==========================================================================
   11. DIFERENCIADORES
   ========================================================================== */
.pf-diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pf-diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pf-diff-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.pf-diff-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.pf-diff-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pf-diff-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.pf-diff-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.pf-diff-text {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

/* ==========================================================================
   12. CTA FINAL Y SECCIÓN DE CONTACTO
   ========================================================================== */
.pf-cta-contact-section {
    padding-top: 3rem;
    padding-bottom: 3.75rem;
    background-color: #ffffff;
}

.pf-cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
    color: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.2);
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .pf-cta-card {
        padding: 3rem 2.5rem;
    }
}

.pf-cta-header {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pf-cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .pf-cta-title {
        font-size: 2.375rem;
    }
}

.pf-cta-desc {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.pf-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Bloque de Contacto Directo */
.pf-contact-block {
    scroll-margin-top: 90px;
}

.pf-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .pf-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

.pf-contact-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.pf-contact-lead {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 1.75rem;
}

.pf-contact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pf-contact-detail-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pf-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.pf-contact-detail-card small {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.pf-contact-detail-card strong {
    font-size: 0.9375rem;
    color: #0f172a;
}

.pf-contact-detail-card a strong {
    color: #2563eb;
    transition: color 0.2s ease;
}

.pf-contact-detail-card a strong:hover {
    color: #1d4ed8;
}

/* Tarjeta contenedora del formulario */
.pf-form-wrapper-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pf-form-header {
    margin-bottom: 1.5rem;
}

.pf-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.pf-form-desc {
    font-size: 0.875rem;
    color: #64748b;
}

.pf-form-placeholder-box {
    background-color: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.pf-form-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
}

.pf-form-placeholder-inner strong {
    color: #0f172a;
    font-size: 1rem;
}

.pf-form-placeholder-inner p {
    font-size: 0.8125rem;
    line-height: 1.5;
    max-width: 380px;
}

/* ==========================================================================
   13. FOOTER CORPORATIVO
   ========================================================================== */
.pf-footer {
    background-color: var(--pf-secondary, #0f172a);
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pf-footer-top {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
}

.pf-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .pf-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pf-footer-grid {
        grid-template-columns: 1.5fr repeat(4, 1fr);
        gap: 2rem;
    }
}

.pf-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pf-footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.pf-footer-logo-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.pf-footer-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    max-width: 320px;
}

.pf-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pf-radius-sm, 6px);
    color: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

.pf-footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pf-footer-title {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.pf-footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.pf-footer-link {
    color: #94a3b8;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.pf-footer-link:hover {
    color: #38bdf8;
    transform: translateX(2px);
}

.pf-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    color: #94a3b8;
}

.pf-footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: #38bdf8;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pf-footer-contact-item a {
    color: #94a3b8;
}

.pf-footer-contact-item a:hover {
    color: #ffffff;
}

.pf-footer-bottom {
    background-color: #0b1120;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.pf-footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .pf-footer-bottom-inner {
        flex-direction: row;
        text-align: left;
    }
}

.pf-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.pf-footer-bottom-links a {
    color: #64748b;
}

.pf-footer-bottom-links a:hover {
    color: #cbd5e1;
}

/* ==========================================================================
   PÁGINA COMERCIAL DE SOFTWARE SOR
   ========================================================================== */
.pf-sor-page {
    overflow: hidden;
    background: #ffffff;
}

.pf-sor-page-section {
    padding: 3.5rem 0;
}

.pf-sor-page-section-muted {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pf-sor-page-heading {
    max-width: 780px;
    margin: 0 auto 2.25rem;
}

.pf-sor-page-heading h2,
.pf-sor-page-split h2,
.pf-sor-page-cta h2 {
    margin-top: 0.75rem;
    color: #0f172a;
    font-size: clamp(1.75rem, 5.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.pf-sor-page-heading p,
.pf-sor-page-split > div > p {
    margin-top: 0.9rem;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

.pf-sor-page-hero {
    padding: 3.25rem 0 3.75rem;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    border-bottom: 1px solid #dbeafe;
}

.pf-sor-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
    align-items: center;
}

.pf-sor-page-hero-title {
    max-width: 720px;
    margin-top: 0.85rem;
    color: #0f172a;
    font-size: clamp(2rem, 8vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
}

.pf-sor-page-hero-lead {
    max-width: 680px;
    margin-top: 1rem;
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.pf-sor-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.pf-sor-page-actions a:focus-visible,
.pf-sor-page-text-link:focus-visible {
    outline: 3px solid #f59e0b;
    outline-offset: 3px;
}

.pf-sor-page-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin: 1.5rem 0 0;
    padding: 1.1rem 0 0;
    border-top: 1px solid #cbd5e1;
    list-style: none;
}

.pf-sor-page-hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #334155;
    font-size: 0.8125rem;
    font-weight: 650;
}

.pf-sor-page-hero-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
}

.pf-sor-page-hero-visual {
    min-width: 0;
}

.pf-sor-page-screen {
    overflow: hidden;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 22px 45px -24px rgba(15, 23, 42, 0.45);
}

.pf-sor-page-screen-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 38px;
    padding: 0 0.8rem;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.pf-sor-page-screen-bar > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
}

.pf-sor-page-screen-bar > span:first-child {
    background: #f87171;
}

.pf-sor-page-screen-bar > span:nth-child(2) {
    background: #fbbf24;
}

.pf-sor-page-screen-bar > span:nth-child(3) {
    background: #4ade80;
}

.pf-sor-page-screen-bar div {
    margin-left: 0.4rem;
    color: #64748b;
    font-size: 0.6875rem;
    font-weight: 600;
}

.pf-sor-page-screen img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1371 / 654;
    object-fit: cover;
}

.pf-sor-page-screen-fallback {
    display: grid;
    min-height: 230px;
    place-items: center;
    align-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    color: #475569;
    text-align: center;
}

.pf-sor-page-screen-fallback svg {
    width: min(100%, 240px);
}

.pf-sor-page-pillars {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.pf-sor-page-pillars article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.3rem 0.75rem;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
}

.pf-sor-page-pillars article > span {
    grid-row: 1 / span 2;
    color: #93c5fd;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
}

.pf-sor-page-pillars h3 {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 750;
}

.pf-sor-page-pillars p {
    color: #64748b;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.pf-sor-page-modules {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
}

.pf-sor-page-module {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 1.4rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    scroll-margin-top: 90px;
}

.pf-sor-page-module.is-featured {
    border-color: #93c5fd;
}

.pf-sor-page-module.is-ph {
    border-color: #60a5fa;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.pf-sor-page-module-icon {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 0.9rem;
    place-items: center;
    border-radius: 9px;
    background: #eff6ff;
    color: #2563eb;
}

.pf-sor-page-module-icon svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.pf-sor-page-module-label {
    margin-bottom: 0.35rem;
    color: #2563eb;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.pf-sor-page-module h3 {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 750;
}

.pf-sor-page-module > p {
    margin-top: 0.55rem;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.55;
}

.pf-sor-page-module ul {
    display: grid;
    gap: 0.35rem;
    margin: 0.9rem 0 1.1rem;
    padding: 0;
    list-style: none;
}

.pf-sor-page-module li {
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.4;
}

.pf-sor-page-module li::before {
    content: "✓";
    margin-right: 0.4rem;
    color: #2563eb;
    font-weight: 800;
}

.pf-sor-page-text-link {
    margin-top: auto;
    color: #1d4ed8;
    font-size: 0.8125rem;
    font-weight: 700;
}

.pf-sor-page-text-link:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.pf-sor-page-feature {
    scroll-margin-top: 90px;
}

.pf-sor-page-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.pf-sor-page-split > div > .pf-btn {
    margin-top: 1.25rem;
}

.pf-sor-page-capabilities {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
}

.pf-sor-page-capabilities article {
    padding: 1rem 1.1rem;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    background: #f8fafc;
}

.pf-sor-page-capabilities strong,
.pf-sor-page-capabilities span {
    display: block;
}

.pf-sor-page-capabilities strong {
    color: #0f172a;
    font-size: 0.9375rem;
}

.pf-sor-page-capabilities span {
    margin-top: 0.25rem;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.45;
}

.pf-sor-page-ph {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    scroll-margin-top: 90px;
}

.pf-sor-page-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pf-sor-page-flow li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem;
    border: 1px solid #dbeafe;
    border-radius: 9px;
    background: #ffffff;
    color: #334155;
    font-size: 0.8125rem;
    font-weight: 700;
}

.pf-sor-page-flow span {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.6875rem;
}

.pf-sor-page-section-action {
    margin-top: 1.5rem;
}

.pf-sor-page-concept-visual {
    display: grid;
    gap: 0.55rem;
    padding: 1.25rem;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: linear-gradient(145deg, #eff6ff, #ffffff);
}

.pf-sor-page-concept-visual div {
    padding: 0.9rem;
    border: 1px solid #bfdbfe;
    border-radius: 9px;
    background: #ffffff;
    color: #1e3a8a;
    font-size: 0.875rem;
    font-weight: 750;
    text-align: center;
}

.pf-sor-page-concept-visual span {
    display: block;
    margin-bottom: 0.2rem;
    color: #60a5fa;
    font-size: 0.7rem;
}

.pf-sor-page-concept-visual svg {
    width: 22px;
    height: 22px;
    margin: 0 auto;
    fill: none;
    stroke: #60a5fa;
    stroke-width: 2;
    transform: rotate(90deg);
}

.pf-sor-page-check-list {
    display: grid;
    gap: 0.55rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.pf-sor-page-check-list li {
    color: #334155;
    font-size: 0.9rem;
}

.pf-sor-page-check-list li::before {
    content: "✓";
    margin-right: 0.5rem;
    color: #2563eb;
    font-weight: 800;
}

.pf-sor-page-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.pf-sor-page-support-grid article {
    padding: 1.35rem;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    background: #ffffff;
}

.pf-sor-page-support-grid article > div {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 0.9rem;
    place-items: center;
    border-radius: 9px;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 800;
}

.pf-sor-page-support-grid h3 {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 750;
}

.pf-sor-page-support-grid p {
    margin-top: 0.45rem;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.55;
}

.pf-sor-page-cta-section {
    padding: 3.5rem 0;
    background: #ffffff;
}

.pf-sor-page-cta {
    padding: 2.25rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    text-align: center;
}

.pf-sor-page-cta h2 {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    color: #ffffff;
}

.pf-sor-page-cta p {
    max-width: 700px;
    margin: 0.9rem auto 0;
    color: #dbeafe;
    font-size: 0.95rem;
    line-height: 1.65;
}

.pf-sor-page-actions-centered {
    justify-content: center;
}

@media (min-width: 640px) {
    .pf-sor-page-pillars,
    .pf-sor-page-capabilities,
    .pf-sor-page-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pf-sor-page-modules {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pf-sor-page-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pf-sor-page-cta {
        padding: 3rem 2rem;
    }
}

@media (min-width: 1024px) {
    .pf-sor-page-section {
        padding: 4.25rem 0;
    }

    .pf-sor-page-hero {
        padding: 4.25rem 0 4.75rem;
    }

    .pf-sor-page-hero-grid {
        grid-template-columns: minmax(0, 56fr) minmax(400px, 44fr);
        gap: 3rem;
    }

    .pf-sor-page-pillars {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .pf-sor-page-modules {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pf-sor-page-module.is-ph {
        box-shadow: inset 0 3px 0 #2563eb;
    }

    .pf-sor-page-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 3.5rem;
    }

    .pf-sor-page-split-reverse > div:first-child {
        order: 2;
    }

    .pf-sor-page-concept-visual {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
    }

    .pf-sor-page-concept-visual svg {
        transform: none;
    }

    .pf-sor-page-flow {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .pf-sor-page-flow li {
        flex-direction: column;
        justify-content: center;
        min-height: 92px;
        text-align: center;
    }

    .pf-sor-page-support-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pf-sor-page-cta-section {
        padding: 4.25rem 0;
    }
}

@media (max-width: 430px) {
    .pf-sor-page-actions .pf-btn,
    .pf-sor-page-section-action .pf-btn {
        width: 100%;
    }
}

/* ========================================================================== 
   14. RESPONSIVE ADAPTATIVO ESPECÍFICO (320px a 1440px)
   ========================================================================== */
@media (max-width: 374px) {
    .site-container {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    .pf-hero-title {
        font-size: 1.75rem;
    }

    .pf-hero-subtitle {
        font-size: 0.9375rem;
    }

    .pf-hero-actions .pf-btn {
        width: 100%;
    }

    .pf-section-title {
        font-size: 1.5rem;
    }

    .pf-cta-title {
        font-size: 1.5rem;
    }

    .pf-ph-step {
        max-width: 100%;
    }
}

@media (min-width: 1440px) {
    :root {
        --pf-container-max: 1320px;
    }
}

/* Respeto estricto a accesibilidad y movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================================================== 
   PÁGINA SOR · PROPIEDAD HORIZONTAL
   ========================================================================== */
.pf-sor-ph-page {
    overflow: hidden;
    background: #ffffff;
    color: #475569;
}

.pf-sor-ph-page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border-bottom: 1px solid #dbeafe;
}

.pf-sor-ph-page-hero-grid,
.pf-sor-ph-page-split {
    display: grid;
    gap: 2rem;
}

.pf-sor-ph-page-hero h1 {
    max-width: 850px;
    margin: 1rem 0;
    color: #0f172a;
    font-size: clamp(2.15rem, 5vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.pf-sor-ph-page-hero p {
    max-width: 760px;
    font-size: 1.1rem;
    line-height: 1.75;
}

.pf-sor-ph-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.pf-sor-ph-page-back {
    display: inline-block;
    margin-top: 1.25rem;
    color: #1d4ed8;
    font-weight: 700;
}

.pf-sor-ph-page-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-content: center;
}

.pf-sor-ph-page-visual span {
    display: flex;
    min-height: 94px;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: #1e3a8a;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    font-size: 0.75rem;
    font-weight: 800;
    text-align: center;
}

.pf-sor-ph-page-section {
    padding: 3.5rem 0;
}

.pf-sor-ph-page-section-muted {
    background: #f8fafc;
    border-block: 1px solid #e2e8f0;
}

.pf-sor-ph-page-section-dark {
    background: #0f2747;
    color: #dbeafe;
}

.pf-sor-ph-page-heading {
    max-width: 850px;
    margin: 0 auto 2rem;
    text-align: center;
}

.pf-sor-ph-page-heading h2,
.pf-sor-ph-page-split h2,
.pf-sor-ph-page-cta h2 {
    margin: 0.75rem 0 1rem;
    color: #0f172a;
    font-size: clamp(1.7rem, 3.5vw, 2.65rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.pf-sor-ph-page-section-dark .pf-sor-ph-page-heading h2 {
    color: #ffffff;
}

.pf-sor-ph-page-heading p,
.pf-sor-ph-page-split > div > p {
    line-height: 1.75;
}

.pf-sor-ph-page-flow {
    display: grid;
    gap: 0.75rem;
    counter-reset: none;
}

.pf-sor-ph-page-flow li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    padding: 1rem;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.pf-sor-ph-page-flow li span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-weight: 800;
}

.pf-sor-ph-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.pf-sor-ph-page-grid article {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.pf-sor-ph-page-section-dark .pf-sor-ph-page-grid article {
    border-color: rgba(191, 219, 254, 0.2);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.pf-sor-ph-page-grid h3 {
    margin-bottom: 0.65rem;
    color: #0f172a;
    font-size: 1.1rem;
}

.pf-sor-ph-page-section-dark .pf-sor-ph-page-grid h3 {
    color: #ffffff;
}

.pf-sor-ph-page-grid p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.pf-sor-ph-page-benefits {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
}

.pf-sor-ph-page-benefits li {
    padding: 1rem 1.25rem;
    border-left: 3px solid #2563eb;
    border-radius: 0 10px 10px 0;
    background: #f8fafc;
    color: #1e293b;
    font-weight: 700;
}

.pf-sor-ph-page-cta-section {
    padding: 3.5rem 0;
    background: #1d4ed8;
}

.pf-sor-ph-page-cta {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f2747, #1e40af);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
    text-align: center;
}

.pf-sor-ph-page-cta h2 {
    color: #ffffff;
}

.pf-sor-ph-page-cta p {
    max-width: 760px;
    margin: 0 auto;
    color: #dbeafe;
    line-height: 1.75;
}

.pf-sor-ph-page-cta .pf-sor-ph-page-actions {
    justify-content: center;
}

@media (min-width: 640px) {
    .pf-sor-ph-page-flow,
    .pf-sor-ph-page-grid,
    .pf-sor-ph-page-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .pf-sor-ph-page-hero-grid,
    .pf-sor-ph-page-split {
        grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
        align-items: center;
        gap: 3.5rem;
    }

    .pf-sor-ph-page-flow {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .pf-sor-ph-page-flow li {
        flex-direction: column;
        justify-content: center;
        min-height: 112px;
        text-align: center;
    }

    .pf-sor-ph-page-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .pf-sor-ph-page-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 430px) {
    .pf-sor-ph-page-actions {
        flex-direction: column;
    }

    .pf-sor-ph-page-actions .pf-btn {
        width: 100%;
        white-space: normal;
    }
}

/* ==========================================================================
   PÁGINA COMERCIAL DE SERVICIOS
   ========================================================================== */
.pf-services-page { overflow: hidden; background: #fff; color: #475569; }
.pf-services-page-hero { padding: 4rem 0; background: linear-gradient(135deg, #f8fafc, #eff6ff); border-bottom: 1px solid #dbeafe; }
.pf-services-page-hero-grid, .pf-services-page-remote-grid, .pf-services-page-sor-grid { display: grid; gap: 2rem; }
.pf-services-page-hero h1 { max-width: 800px; margin: 1rem 0; color: #0f172a; font-size: clamp(2.15rem, 5vw, 3.75rem); line-height: 1.08; letter-spacing: -.035em; }
.pf-services-page-hero p { max-width: 740px; font-size: 1.1rem; line-height: 1.75; }
.pf-services-page-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.pf-services-page-hero-visual { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; align-content: center; }
.pf-services-page-visual-core { grid-column: 1 / -1; display: grid; min-height: 150px; place-items: center; padding: 1.5rem; border-radius: 18px; background: linear-gradient(135deg, #0f2747, #1d4ed8); color: #fff; text-align: center; box-shadow: 0 20px 45px rgba(15, 39, 71, .2); }
.pf-services-page-visual-core svg { width: 48px; height: 48px; margin-bottom: .75rem; fill: none; stroke: currentColor; stroke-width: 2; }
.pf-services-page-visual-core strong { font-size: .8rem; letter-spacing: .06em; }
.pf-services-page-visual-card { display: flex; min-height: 84px; align-items: center; justify-content: center; padding: 1rem; border: 1px solid #bfdbfe; border-radius: 14px; background: rgba(255,255,255,.92); color: #1e3a8a; box-shadow: 0 8px 24px rgba(15,23,42,.07); font-size: .85rem; font-weight: 800; text-align: center; }
.pf-services-page-trust { border-bottom: 1px solid #e2e8f0; background: #fff; }
.pf-services-page-trust ul { display: grid; grid-template-columns: 1fr; gap: .65rem; padding: 1rem 0; }
.pf-services-page-trust li { display: flex; align-items: center; gap: .55rem; color: #334155; font-size: .85rem; font-weight: 700; }
.pf-services-page-trust li::before { content: '✓'; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: #dbeafe; color: #1d4ed8; font-size: .7rem; }
.pf-services-page-section { padding: 3.5rem 0; }
.pf-services-page-heading { max-width: 850px; margin: 0 auto 2rem; text-align: center; }
.pf-services-page-heading h2, .pf-services-page-remote-grid h2, .pf-services-page-sor h2, .pf-services-page-cta h2 { margin: .75rem 0 1rem; color: #0f172a; font-size: clamp(1.7rem, 3.5vw, 2.65rem); line-height: 1.2; letter-spacing: -.025em; }
.pf-services-page-heading p, .pf-services-page-remote-grid p, .pf-services-page-sor p { line-height: 1.75; }
.pf-services-page-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1rem; }
.pf-services-page-card { display: flex; min-width: 0; flex-direction: column; padding: 1.5rem; border: 1px solid #e2e8f0; border-radius: 16px; background: #fff; box-shadow: 0 7px 22px rgba(15,23,42,.05); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.pf-services-page-card:hover { transform: translateY(-3px); border-color: #bfdbfe; box-shadow: 0 14px 32px rgba(15,23,42,.1); }
.pf-services-page-card-icon { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 1rem; border-radius: 11px; background: #eff6ff; color: #2563eb; }
.pf-services-page-card-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pf-services-page-card-category { margin-bottom: .55rem; color: #2563eb; font-size: .68rem; font-weight: 800; letter-spacing: .08em; }
.pf-services-page-card h3, .pf-services-page-differentiators h3 { margin-bottom: .65rem; color: #0f172a; font-size: 1.12rem; line-height: 1.3; }
.pf-services-page-card > p { margin-bottom: 1rem; font-size: .93rem; line-height: 1.7; }
.pf-services-page-card ul { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.15rem; }
.pf-services-page-card li { padding: .3rem .55rem; border-radius: 999px; background: #f1f5f9; color: #475569; font-size: .72rem; font-weight: 700; }
.pf-services-page-card-link { margin-top: auto; color: #1d4ed8; font-size: .85rem; font-weight: 800; }
.pf-services-page-card-renta { border-color: #bfdbfe; background: linear-gradient(145deg, #fff, #f8fbff); }
.pf-services-page-us-contact { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .75rem; margin: auto 0 1rem; padding: .75rem .85rem; border-radius: 10px; background: #eff6ff; color: #475569; font-size: .78rem; }
.pf-services-page-us-contact a { display: inline-flex; min-height: 44px; align-items: center; color: #1d4ed8; font-weight: 800; text-decoration: none; }
.pf-services-page-us-contact a:hover { text-decoration: underline; }
.pf-services-page-card-renta .pf-services-page-card-link { margin-top: 0; }
.pf-services-page-section-dark { background: #0f2747; color: #dbeafe; }
.pf-services-page-section-dark h2 { color: #fff; }
.pf-services-page-remote-grid > ul { display: grid; grid-template-columns: minmax(0, 1fr); gap: .75rem; }
.pf-services-page-remote-grid li { padding: 1rem 1.2rem; border: 1px solid rgba(191,219,254,.18); border-radius: 11px; background: rgba(255,255,255,.06); color: #e0f2fe; font-weight: 700; }
.pf-services-page-sor { background: linear-gradient(135deg, #172554, #1e40af); }
.pf-services-page-sor h2 { color: #fff; }
.pf-services-page-sor p { color: #dbeafe; }
.pf-services-page-sor-modules { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
.pf-services-page-sor-modules li { padding: .9rem; border-radius: 10px; background: rgba(255,255,255,.1); color: #fff; font-size: .85rem; font-weight: 700; text-align: center; }
.pf-services-page-differentiators { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1rem; }
.pf-services-page-differentiators article { padding: 1.4rem; border-left: 3px solid #2563eb; border-radius: 0 12px 12px 0; background: #f8fafc; }
.pf-services-page-differentiators article > span { color: #2563eb; font-size: .75rem; font-weight: 800; }
.pf-services-page-differentiators h3 { margin-top: .45rem; }
.pf-services-page-differentiators p { color: #64748b; font-size: .9rem; line-height: 1.65; }
.pf-services-page-cta-section { padding: 3.5rem 0; background: #1d4ed8; }
.pf-services-page-cta { max-width: 900px; margin: 0 auto; padding: 2.5rem 1.5rem; border-radius: 20px; background: linear-gradient(135deg,#0f2747,#1e40af); box-shadow: 0 18px 45px rgba(15,23,42,.2); text-align: center; }
.pf-services-page-cta h2 { color: #fff; }
.pf-services-page-cta p { color: #dbeafe; line-height: 1.75; }
.pf-services-page-cta .pf-services-page-actions { justify-content: center; }
@media (min-width: 640px) { .pf-services-page-trust ul { grid-template-columns: repeat(3,minmax(0,1fr)); } .pf-services-page-grid, .pf-services-page-remote-grid > ul, .pf-services-page-differentiators { grid-template-columns: repeat(2,minmax(0,1fr)); } .pf-services-page-card-renta { grid-column: 1 / -1; } }
@media (min-width: 1024px) { .pf-services-page-hero-grid { grid-template-columns: minmax(0,1.2fr) minmax(360px,.8fr); align-items: center; gap: 3.5rem; } .pf-services-page-trust ul { grid-template-columns: repeat(5,minmax(0,1fr)); } .pf-services-page-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; } .pf-services-page-card-renta { grid-column: span 2; } .pf-services-page-remote-grid { grid-template-columns: repeat(2,minmax(0,1fr)); align-items: center; gap: 3.5rem; } .pf-services-page-sor-grid { grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr); align-items: center; gap: 3.5rem; } .pf-services-page-differentiators { grid-template-columns: repeat(4,minmax(0,1fr)); } }
@media (max-width: 430px) { .pf-services-page-actions { flex-direction: column; } .pf-services-page-actions .pf-btn { width: 100%; white-space: normal; } }


/* ==========================================================================
   LANDING COMERCIAL SOPORTE HELISA
   ========================================================================== */
.pf-helisa-page { overflow:hidden; background:#fff; color:#475569; }
.pf-helisa-page-hero { padding:4rem 0; background:linear-gradient(135deg,#f8fafc,#eff6ff); border-bottom:1px solid #dbeafe; }
.pf-helisa-page-hero-grid { display:grid; gap:2rem; }
.pf-helisa-page-hero h1 { max-width:760px; margin:1rem 0; color:#0f172a; font-size:clamp(2.2rem,5vw,3.9rem); line-height:1.06; letter-spacing:-.04em; }
.pf-helisa-page-hero p { max-width:720px; font-size:1.08rem; line-height:1.75; }
.pf-helisa-page-actions { display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1.5rem; }
.pf-helisa-page-points { display:grid; grid-template-columns:minmax(0,1fr); gap:.7rem; margin-top:2rem; }
.pf-helisa-page-points li { display:grid; grid-template-columns:34px minmax(0,1fr); column-gap:.75rem; align-items:center; }
.pf-helisa-page-points span { grid-row:1/3; display:grid; width:34px; height:34px; place-items:center; border-radius:9px; background:#1d4ed8; color:#fff; font-size:.68rem; font-weight:800; }
.pf-helisa-page-points strong { color:#0f172a; font-size:.82rem; }
.pf-helisa-page-points small { color:#64748b; font-size:.72rem; line-height:1.4; }
.pf-helisa-page-hero-visual { position:relative; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.85rem; align-content:center; }
.pf-helisa-page-mockup { grid-column:1/-1; overflow:hidden; border:1px solid #bfdbfe; border-radius:18px; background:#fff; box-shadow:0 22px 50px rgba(15,39,71,.18); }
.pf-helisa-page-mockup-bar { display:flex; height:38px; align-items:center; gap:.35rem; padding:0 .75rem; background:#0f2747; color:#bae6fd; }
.pf-helisa-page-mockup-bar i { width:8px; height:8px; border-radius:50%; background:#64748b; }
.pf-helisa-page-mockup-bar span { margin-left:auto; font-size:.52rem; font-weight:800; letter-spacing:.07em; }
.pf-helisa-page-mockup-body { display:grid; grid-template-columns:64px minmax(0,1fr); min-height:250px; }
.pf-helisa-page-mockup-nav { display:grid; align-content:start; gap:.7rem; padding:1rem .7rem; background:#eff6ff; }
.pf-helisa-page-mockup-nav b { display:block; width:100%; height:9px; border-radius:4px; background:#93c5fd; }
.pf-helisa-page-mockup-data { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:.6rem; padding:1rem; }
.pf-helisa-page-mockup-data > span { display:block; height:46px; border-radius:8px; background:#f1f5f9; }
.pf-helisa-page-chart { grid-column:1/-1; display:flex; height:120px; align-items:flex-end; gap:9%; padding:1rem; border:1px solid #e2e8f0; border-radius:10px; background:#fff; }
.pf-helisa-page-chart i { display:block; width:14%; border-radius:4px 4px 0 0; background:linear-gradient(#3b82f6,#1d4ed8); }
.pf-helisa-page-chart i:nth-child(1){height:42%}.pf-helisa-page-chart i:nth-child(2){height:68%}.pf-helisa-page-chart i:nth-child(3){height:54%}.pf-helisa-page-chart i:nth-child(4){height:84%}
.pf-helisa-page-support-card,.pf-helisa-page-config-card { display:flex; min-height:92px; align-items:center; gap:.65rem; padding:1rem; border:1px solid #bfdbfe; border-radius:14px; background:#fff; box-shadow:0 10px 28px rgba(15,23,42,.1); }
.pf-helisa-page-support-card { flex-direction:column; justify-content:center; text-align:center; }
.pf-helisa-page-support-icon { display:grid; width:40px; height:40px; place-items:center; border-radius:10px; background:#dbeafe; color:#1d4ed8; }
.pf-helisa-page-support-card strong { color:#0f172a; font-size:.8rem; }.pf-helisa-page-support-card small{color:#64748b;font-size:.65rem}.pf-helisa-page-config-card{color:#1e3a8a;font-size:.78rem;font-weight:800}
.pf-helisa-page-support-icon svg,.pf-helisa-page-config-card svg { display:block; width:24px; height:24px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.pf-helisa-page-capabilities { border-bottom:1px solid #e2e8f0; background:#fff; }
.pf-helisa-page-capabilities ul { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.55rem .8rem; padding:1rem 0; }
.pf-helisa-page-capabilities li { display:flex; align-items:center; gap:.5rem; color:#334155; font-size:.78rem; font-weight:700; }
.pf-helisa-page-capabilities svg { display:block; width:20px; height:20px; flex:0 0 20px; fill:none; stroke:#2563eb; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.pf-helisa-page-section { padding:3.5rem 0; }.pf-helisa-page-section-muted{background:#f8fafc;border-block:1px solid #e2e8f0}
.pf-helisa-page-heading { max-width:800px; margin:0 auto 2rem; text-align:center; }
.pf-helisa-page-heading h2,.pf-helisa-page-professional-grid h2,.pf-helisa-page-sor h2,.pf-helisa-page-cta h2 { margin:.75rem 0 1rem; color:#0f172a; font-size:clamp(1.75rem,3.5vw,2.65rem); line-height:1.2; letter-spacing:-.025em; }
.pf-helisa-page-heading p,.pf-helisa-page-professional-grid p,.pf-helisa-page-sor p{line-height:1.75}
.pf-helisa-page-services { display:grid; grid-template-columns:minmax(0,1fr); gap:1rem; }
.pf-helisa-page-services article { display:flex; min-width:0; flex-direction:column; padding:1.4rem; border:1px solid #e2e8f0; border-radius:15px; background:#fff; box-shadow:0 7px 22px rgba(15,23,42,.05); transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.pf-helisa-page-services article:hover { transform:translateY(-3px); border-color:#bfdbfe; box-shadow:0 14px 30px rgba(15,23,42,.09); }
.pf-helisa-page-service-icon { display:grid; width:44px; height:44px; flex:0 0 44px; place-items:center; margin-bottom:1rem; border-radius:10px; background:#eff6ff; color:#2563eb; }
.pf-helisa-page-service-icon svg { display:block; width:24px; height:24px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.pf-helisa-page-services h3 { margin-bottom:.6rem; color:#0f172a; font-size:1.05rem; }.pf-helisa-page-services p{font-size:.9rem;line-height:1.7}
.pf-helisa-page-process { display:grid; grid-template-columns:minmax(0,1fr); gap:.85rem; counter-reset:none; }
.pf-helisa-page-process li { display:flex; align-items:center; gap:.8rem; min-width:0; padding:1rem; border:1px solid #e2e8f0; border-radius:12px; background:#fff; }
.pf-helisa-page-process span { display:grid; width:38px; height:38px; flex:0 0 38px; place-items:center; border-radius:50%; background:#1d4ed8; color:#fff; font-weight:800; }.pf-helisa-page-process strong{color:#1e293b;font-size:.9rem;line-height:1.45}
.pf-helisa-page-professional-grid { display:grid; gap:2rem; }
.pf-helisa-page-professional-grid > ul { display:grid; grid-template-columns:minmax(0,1fr); gap:.75rem; }
.pf-helisa-page-professional-grid li { padding:1rem 1.2rem; border-left:3px solid #2563eb; border-radius:0 11px 11px 0; background:#f8fafc; color:#334155; font-weight:700; }
.pf-helisa-page-sor { background:linear-gradient(135deg,#eff6ff,#f8fafc); border-block:1px solid #dbeafe; }
.pf-helisa-page-sor > div > div { display:grid; gap:1.5rem; align-items:center; }.pf-helisa-page-sor .pf-btn{width:fit-content;justify-self:center}
.pf-helisa-page-cta-section { padding:3.5rem 0; background:#1d4ed8; }
.pf-helisa-page-cta { max-width:900px; margin:0 auto; padding:2.5rem 1.5rem; border-radius:20px; background:linear-gradient(135deg,#0f2747,#1e40af); box-shadow:0 18px 45px rgba(15,23,42,.2); text-align:center; }
.pf-helisa-page-cta h2{color:#fff}.pf-helisa-page-cta p{color:#dbeafe;line-height:1.75}.pf-helisa-page-cta .pf-helisa-page-actions{justify-content:center}
@media (min-width:640px){.pf-helisa-page-capabilities ul{grid-template-columns:repeat(4,minmax(0,1fr))}.pf-helisa-page-services,.pf-helisa-page-process,.pf-helisa-page-professional-grid>ul{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (min-width:1024px){.pf-helisa-page-hero-grid{grid-template-columns:minmax(0,1.15fr) minmax(380px,.85fr);align-items:center;gap:3.5rem}.pf-helisa-page-points{grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.pf-helisa-page-capabilities ul{grid-template-columns:repeat(8,minmax(0,1fr))}.pf-helisa-page-services{grid-template-columns:repeat(4,minmax(0,1fr));gap:1.1rem}.pf-helisa-page-process{grid-template-columns:repeat(4,minmax(0,1fr))}.pf-helisa-page-professional-grid{grid-template-columns:repeat(2,minmax(0,1fr));align-items:center;gap:3.5rem}.pf-helisa-page-sor>div>div{grid-template-columns:minmax(0,1fr) auto}.pf-helisa-page-sor .pf-btn{justify-self:end}}
@media (max-width:430px){.pf-helisa-page-actions{flex-direction:column}.pf-helisa-page-actions .pf-btn{width:100%;white-space:normal}.pf-helisa-page-capabilities ul{grid-template-columns:minmax(0,1fr)}}

/* Nosotros: presentación institucional encapsulada */
.pf-about-page { background:#f8fbff; color:#172b4d; }
.pf-about-page-hero { padding:clamp(3.5rem,7vw,6.5rem) 0; background:linear-gradient(135deg,#f5f9ff 0%,#eaf3ff 100%); overflow:hidden; }
.pf-about-page-hero-inner,.pf-about-page-experience-grid,.pf-about-page-sor-inner { display:grid; gap:clamp(2rem,5vw,5rem); align-items:center; }
.pf-about-page-hero-copy h1 { max-width:720px; margin:1.25rem 0; font-size:clamp(2.35rem,5vw,4.25rem); line-height:1.08; }
.pf-about-page-lead { max-width:680px; color:#526581; font-size:1.08rem; line-height:1.75; }
.pf-about-page-actions { display:flex; flex-wrap:wrap; gap:.85rem; margin-top:1.75rem; }
.pf-about-page-hero-visual { position:relative; min-height:390px; display:grid; place-items:center; }
.pf-about-page-visual-card { width:min(100%,360px); padding:2rem; border:1px solid #cbdcf3; border-radius:1.5rem; background:#fff; box-shadow:0 1.25rem 3rem rgba(24,71,129,.14); transform:rotate(-3deg); }
.pf-about-page-visual-card strong { display:block; margin:1rem 0 1.5rem; color:#1769c2; font-size:1.55rem; }
.pf-about-page-visual-label { color:#6a7f9d; font-size:.7rem; font-weight:800; letter-spacing:.14em; }
.pf-about-page-visual-line { display:block; width:80%; height:9px; margin-top:.8rem; border-radius:99px; background:#dceafa; }
.pf-about-page-visual-line.short { width:55%; background:#edf3fb; }
.pf-about-page-orbit { position:absolute; border:1px solid #b9d4f4; border-radius:50%; }
.pf-about-page-orbit-one { width:420px; height:420px; }.pf-about-page-orbit-two { width:310px; height:310px; border-style:dashed; }
.pf-about-page-visual-chip { position:absolute; right:2%; bottom:8%; display:flex; gap:.5rem; align-items:center; padding:.7rem .9rem; border-radius:.9rem; background:#fff; box-shadow:0 .8rem 1.8rem rgba(24,71,129,.14); color:#35516f; font-size:.78rem; font-weight:700; }
.pf-about-page-chip-icon { display:grid; place-items:center; width:22px; height:22px; border-radius:50%; background:#e5f8f0; color:#16845a; }
.pf-about-page-section { padding:clamp(3.5rem,7vw,6rem) 0; }.pf-about-page-section-header { max-width:720px; margin-bottom:2.5rem; }.pf-about-page-section h2 { margin:1rem 0 1.1rem; font-size:clamp(2rem,3.5vw,3rem); line-height:1.15; }
.pf-about-page-principles { display:grid; gap:1rem; grid-template-columns:repeat(3,minmax(0,1fr)); }.pf-about-page-principle,.pf-about-page-value-card { padding:1.5rem; border:1px solid #dce7f4; border-radius:1.15rem; background:#fff; box-shadow:0 .55rem 1.5rem rgba(24,71,129,.06); }.pf-about-page-principle-number { color:#2177d2; font-size:.75rem; font-weight:800; letter-spacing:.12em; }.pf-about-page-principle h3,.pf-about-page-value-card h3 { margin:1rem 0 .65rem; font-size:1.2rem; }.pf-about-page-principle p,.pf-about-page-value-card p { color:#627691; line-height:1.65; }
.pf-about-page-values { background:#edf5ff; }.pf-about-page-values-grid { display:grid; gap:1rem; grid-template-columns:repeat(5,minmax(0,1fr)); }.pf-about-page-value-icon { color:#2177d2; font-size:1.25rem; }
.pf-about-page-experience { background:#fff; }.pf-about-page-experience-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.8rem 1.5rem; margin:0; padding:0; list-style:none; color:#385473; }.pf-about-page-experience-list li { padding:1rem 1.1rem; border-radius:.85rem; background:#f2f7fd; }.pf-about-page-experience-list li::before { content:'✓'; margin-right:.65rem; color:#16845a; font-weight:800; }
.pf-about-page-sor { background:#eaf3ff; }.pf-about-page-sor-inner h2 { max-width:620px; }.pf-about-page-sor-inner p { max-width:650px; color:#526581; line-height:1.7; }
.pf-about-page-cta { padding:clamp(3.5rem,7vw,5.5rem) 0; background:linear-gradient(135deg,#083b84,#1267c7); color:#fff; }.pf-about-page-cta-inner { max-width:820px; margin:auto; text-align:center; }.pf-about-page-cta h2 { margin:1rem 0; font-size:clamp(2rem,4vw,3.2rem); }.pf-about-page-cta p { margin:0 auto; color:#d8e9ff; line-height:1.7; }.pf-about-page-cta .pf-about-page-actions { justify-content:center; }.pf-about-page-cta .pf-btn-primary { background:#fff; color:#0b4e9c; }.pf-about-page-cta .pf-btn-whatsapp { border-color:#8de0b9; color:#fff; }
@media (min-width:1024px) { .pf-about-page-hero-inner { grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr); }.pf-about-page-experience-grid { grid-template-columns:1fr 1fr; }.pf-about-page-sor-inner { grid-template-columns:1fr auto; } }
@media (max-width:900px) { .pf-about-page-values-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:640px) { .pf-about-page-hero-visual { min-height:300px; }.pf-about-page-orbit-one { width:290px; height:290px; }.pf-about-page-orbit-two { width:220px; height:220px; }.pf-about-page-visual-chip { right:0; bottom:0; }.pf-about-page-principles,.pf-about-page-values-grid,.pf-about-page-experience-list { grid-template-columns:1fr; }.pf-about-page-actions { flex-direction:column; align-items:stretch; }.pf-about-page-actions .pf-btn { width:100%; } }

