@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   TIPOGRAFÍA GLOBAL (OUTFIT)
   ========================================================================== */

body,
p,
span,
li,
a,
div {
    font-family: 'Outfit', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.navbar-brand,
.logo-apx,
.dropdown-heading {
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -0.02em;
}

body {
    font-weight: 400;
}

h1,
h2,
h3,
.display-1,
.display-2,
.display-3 {
    font-weight: 800;
}

h4,
h5,
h6,
.display-4 {
    font-weight: 700;
}

/* ==========================================================================
   PALETA DE COLORES
   ========================================================================== */

:root {
    --apx-primary: #4ECDC4;
    --apx-primary-light: #6EE7DE;
    --apx-primary-dark: #3BA99F;
    --apx-secondary: #45B7D1;
    --apx-secondary-light: #6DD5E7;
    --apx-secondary-dark: #2F9BB4;
    --apx-accent: #96CEB4;
    --apx-bg-white: #FFFFFF;
    --apx-bg-soft: #F8FFFE;
    --apx-bg-light: #F0FFFE;
    --apx-bg-gradient: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 100%);
    --apx-dark: #1E293B;
    --apx-dark-light: #334155;
    --apx-text-dark: #1E293B;
    --apx-text-muted: #64748B;
    --apx-gray: #6B7280;
    --apx-gray-light: #E5E7EB;
    --apx-whatsapp: #25D366;
    --apx-pink: #E91E63;
    --apx-stat-dark: #1E293B;
}

/* ==========================================================================
   BOOTSTRAP / THEME OVERRIDES
   ========================================================================== */

/* Smart Navbar Styles */
.navbar {
    transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1050;
    width: 100%;
}

.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
}

.navbar-hidden {
    transform: translateY(-100%);
}

.text-primary,
.btn-link {
    color: var(--apx-primary) !important;
}

.text-success {
    color: var(--apx-primary) !important;
}

.bg-primary {
    background-color: var(--apx-primary) !important;
}

.btn-primary {
    background-color: var(--apx-primary) !important;
    border-color: var(--apx-primary) !important;
    color: #FFFFFF !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--apx-primary-dark) !important;
    border-color: var(--apx-primary-dark) !important;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4) !important;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--apx-primary) !important;
    border-color: var(--apx-primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--apx-primary) !important;
    color: #FFFFFF !important;
}

.bg-apx-gradient {
    background: var(--apx-bg-gradient) !important;
}

.bg-apx-soft {
    background-color: var(--apx-bg-soft) !important;
}

.bg-apx-light {
    background-color: var(--apx-bg-light) !important;
}

.bg-dark {
    background-color: var(--apx-dark) !important;
}

.card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.15) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--apx-primary);
    box-shadow: 0 0 0 0.25rem rgba(78, 205, 196, 0.25);
}

/* ==========================================================================
   CUSTOM COMPONENTS
   ========================================================================== */

.hero-badge {
    background: linear-gradient(135deg, var(--apx-primary) 0%, var(--apx-secondary) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

/* Separador vertical entre stats */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stat-prefix {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--apx-pink);
    line-height: 1;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--apx-stat-dark);
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    color: var(--apx-stat-dark);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
    opacity: 0.8;
}

@media (max-width: 767.98px) {
    .stat-item::after {
        display: none !important;
    }
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--apx-primary) 0%, var(--apx-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.btn-whatsapp {
    background-color: var(--apx-whatsapp) !important;
    border-color: var(--apx-whatsapp) !important;
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #128C7E !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--apx-whatsapp);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background: var(--apx-bg-gradient);
    color: white;
    transform: scale(1.05);
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(69, 183, 209, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.sector-icon:hover {
    background: var(--apx-bg-gradient);
}

.sector-icon:hover i {
    color: white;
}

.sector-icon i {
    font-size: 2.5rem;
    color: var(--apx-primary);
    transition: color 0.3s ease;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(78, 205, 196, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--apx-primary-dark);
    font-weight: 600;
}

.cta-section {
    position: relative;
    background: var(--apx-dark);
    color: white;
    padding: 140px 0 100px;
    z-index: 10;
    margin-top: 100px;
}

/* Organic Curve Separator */
.cta-curve {
    position: absolute;
    top: -99px;
    left: 0;
    width: 100%;
    height: 100px;
    fill: var(--apx-dark);
    pointer-events: none;
}

.cta-visual-wrapper {
    position: relative;
    z-index: 2;
}

.cta-circle-frame {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 15px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: rotate(-3deg);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-circle-frame:hover {
    transform: rotate(0deg) scale(1.05);
}

.cta-circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

.cta-badge-neon {
    display: inline-block;
    background: var(--apx-primary);
    color: var(--apx-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.cta-premium-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1;
    color: white;
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
}

.cta-premium-title span {
    display: block;
    color: var(--apx-primary);
    opacity: 0.9;
}

.cta-premium-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3.5rem;
}

.cta-premium-list li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.2rem;
    font-weight: 300;
}

.cta-premium-list i {
    color: var(--apx-primary);
    font-size: 1.5rem;
}


.gradient-text {
    background: var(--apx-bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.value-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--apx-primary);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--apx-primary);
    margin-bottom: 1rem;
}

.logo-apx {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--apx-text-dark);
}

.logo-apx span {
    color: var(--apx-primary);
}

.case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.08);
}

.case-card-header {
    background: var(--apx-bg-gradient);
    padding: 1.5rem;
    color: white;
}

.case-card-body {
    padding: 1.5rem;
}

.case-result {
    display: inline-block;
    background: rgba(78, 205, 196, 0.1);
    color: var(--apx-primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--apx-bg-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-link.active,
.nav-link:hover {
    color: var(--apx-primary) !important;
}

/* ==========================================================================
   SECTORES CAROUSEL - PREMIUM CARD STYLES
   ========================================================================== */

.sectores-carousel {
    padding: 60px 0;
    overflow: visible;
}

.sectores-carousel .swiper {
    overflow: visible;
    padding: 40px 0;
}

.sectores-carousel .swiper-wrapper {
    align-items: center;
}

.sector-card-carousel {
    background: #ffffff;
    border-radius: 30px 10px 30px 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(78, 205, 196, 0.1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sector-card-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px 10px 30px 10px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(69, 183, 209, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.sector-card-carousel .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(69, 183, 209, 0.1) 100%);
}

.sector-card-carousel .card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--apx-primary), var(--apx-secondary));
    z-index: -1;
    opacity: 0.6;
}

.sector-card-carousel .card-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: #ffffff;
    z-index: -1;
}

.sector-card-carousel .card-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--apx-primary) 0%, var(--apx-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sector-card-carousel h5 {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--apx-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.sector-card-carousel p {
    color: var(--apx-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.sectores-carousel .swiper-slide {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.6;
    transform: scale(0.85);
}

.sectores-carousel .swiper-slide-prev {
    transform: scale(0.85) rotateY(15deg) translateX(30px);
    opacity: 0.7;
}

.sectores-carousel .swiper-slide-next {
    transform: scale(0.85) rotateY(-15deg) translateX(-30px);
    opacity: 0.7;
}

.sectores-carousel .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
}

.sectores-carousel .swiper-slide-active .sector-card-carousel {
    box-shadow: 0 25px 60px rgba(78, 205, 196, 0.2);
}

.sectores-carousel .swiper-slide-active .sector-card-carousel::before {
    opacity: 1;
}

.sector-card-carousel:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(78, 205, 196, 0.25);
}

.sector-card-carousel:hover .card-icon::before {
    opacity: 1;
}

.sector-card-carousel:hover h5 {
    color: var(--apx-primary);
}

.sectores-carousel .swiper-button-prev,
.sectores-carousel .swiper-button-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sectores-carousel .swiper-button-prev::after,
.sectores-carousel .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
    color: var(--apx-primary);
}

.sectores-carousel .swiper-button-prev:hover,
.sectores-carousel .swiper-button-next:hover {
    background: linear-gradient(135deg, var(--apx-primary) 0%, var(--apx-secondary) 100%);
    transform: scale(1.1);
}

.sectores-carousel .swiper-button-prev:hover::after,
.sectores-carousel .swiper-button-next:hover::after {
    color: #ffffff;
}

.sectores-carousel .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.sectores-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--apx-gray-light);
    opacity: 1;
    transition: all 0.3s ease;
}

.sectores-carousel .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--apx-primary) 0%, var(--apx-secondary) 100%);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 991.98px) {

    .sectores-carousel .swiper-slide-prev,
    .sectores-carousel .swiper-slide-next {
        transform: scale(0.9) rotateY(0deg);
    }

    .sectores-carousel .swiper-slide-active {
        transform: scale(1);
    }
}

@media (max-width: 767.98px) {
    .sector-card-carousel {
        padding: 1.5rem 1rem;
        min-height: 240px;
    }

    .sector-card-carousel .card-icon {
        width: 60px;
        height: 60px;
    }

    .sector-card-carousel .card-icon i {
        font-size: 1.5rem;
    }

    .sectores-carousel .swiper-button-prev,
    .sectores-carousel .swiper-button-next {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================================================
   INTEGRATED EDITORIAL FLOW (NATURAL & HANDCRAFTED)
   ========================================================================== */

.integrated-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Typography Impact - Monumental and Asymmetric */
.giant-title {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: var(--apx-dark);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.giant-title span {
    display: block;
    color: var(--apx-primary);
    transform: translateX(1.5rem);
}

.vertical-floating-label {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 900;
    opacity: 0.02;
    position: absolute;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    white-space: nowrap;
}

/* Editorial Narrative (Replaces Cards) */
.editorial-narrative {
    position: relative;
}

.editorial-item {
    position: relative;
    padding: 3.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.editorial-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.editorial-item .item-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--apx-primary);
    margin-bottom: 2.5rem;
    display: block;
    opacity: 0.3;
}

.editorial-item .item-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--apx-primary);
    display: block;
    margin-bottom: 0.75rem;
}

.editorial-item .item-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.editorial-item p {
    font-size: 1.15rem;
    color: #555;
    max-width: 550px;
    line-height: 1.65;
}

.editorial-item:hover {
    padding-left: 2.5rem;
}

.editorial-item:hover .item-number {
    opacity: 1;
    transform: translateX(-15px);
}

/* Neon Impact Badge - Asymmetric and Bold */
.neon-stat-badge {
    background: #FFED03;
    color: #000;
    padding: 3rem;
    display: inline-flex;
    flex-direction: column;
    box-shadow: 25px 25px 0px #000;
    transform: rotate(-3deg);
    position: relative;
    z-index: 5;
    transition: all 0.4s ease;
}

.neon-stat-badge:hover {
    transform: rotate(0) scale(1.05);
}

.neon-stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.8;
}

/* Assets with Natural Animation */
.floating-robot-asset {
    max-width: 100%;
    filter: drop-shadow(40px 40px 80px rgba(0, 0, 0, 0.18));
    animation: floatRobot 8s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes floatRobot {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-40px) rotate(-3deg) scale(1.03);
    }
}

.clover-graphic-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

.circular-crop-premium {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 25px solid white;
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.12);
}

.circular-crop-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .integrated-section {
        padding: 60px 0;
    }

    .giant-title {
        font-size: 3rem;
        letter-spacing: -2px;
        line-height: 0.95;
        margin-bottom: 2rem;
    }

    .giant-title span {
        transform: none;
        display: inline;
    }

    .vertical-floating-label {
        display: none;
    }

    /* Ajuste de márgenes Sigma para móvil */
    .mb-10,
    .mt-10 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important;
    }

    .editorial-item {
        padding: 2rem 0;
    }

    .col-lg-6:first-child .editorial-item:last-child {
        border-bottom: none;
    }

    .editorial-item:hover {
        padding-left: 0;
    }

    .editorial-item:hover .item-number {
        transform: none;
    }

    .floating-robot-asset {
        max-width: 240px;
        margin-top: 3rem;
        margin-bottom: 2rem;
    }

    .neon-stat-badge {
        padding: 1.5rem 2rem;
        box-shadow: 12px 12px 0px #000;
        transform: rotate(-1deg);
    }

    .circular-crop-premium {
        width: 240px;
        height: 240px;
        border-width: 12px;
        margin-bottom: 2rem;
    }

    .clover-graphic-bg {
        width: 100%;
        max-width: 300px;
        overflow: hidden;
    }
}

/* Specific Fixes for very small screens */
@media (max-width: 575.98px) {
    .giant-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .editorial-item .item-title {
        font-size: 1.4rem;
    }

    .editorial-item p {
        font-size: 0.95rem;
    }

    .neon-stat-number {
        font-size: 2.5rem;
    }

    .circular-crop-premium {
        width: 180px;
        height: 180px;
        border-width: 8px;
        margin-left: auto;
        margin-right: auto;
    }

    .integrated-section {
        padding: 50px 0;
    }
}

/* ==========================================================================
   PREMIUM EDITORIAL FOOTER
   ========================================================================== */

.premium-footer {
    background: #0D0D0D;
    color: #fff;
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.footer-giant-bg {
    position: absolute;
    bottom: -10%;
    right: -5%;
    font-size: clamp(8rem, 25vw, 35rem);
    font-weight: 900;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-editorial-col {
    position: relative;
    z-index: 2;
}

.footer-editorial-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--apx-primary);
    margin-bottom: 2.5rem;
    display: block;
}

.footer-editorial-link {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-editorial-link:hover {
    color: #FFED03;
    padding-left: 10px;
}

.footer-social-circle {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.footer-social-circle:hover {
    background: #FFED03;
    border-color: #FFED03;
    color: #000;
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom-editorial {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .premium-footer {
        padding: 80px 0 40px;
    }

    .footer-editorial-title {
        margin-bottom: 1.5rem;
        margin-top: 2rem;
    }

    .footer-editorial-link {
        font-size: 1.1rem;
    }

    .footer-giant-bg {
        display: none;
    }
}

/* Editorial Scroll Path - Guided Background Line */
main {
    position: relative;
    overflow-x: hidden;
}

main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='1000' height='2400' viewBox='0 0 1000 2400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 0V800H900V1600H100V2400' stroke='%234ECDC4' stroke-width='2' stroke-opacity='0.2'/%3E%3Ccircle cx='100' cy='800' r='5' fill='%234ECDC4' fill-opacity='0.4'/%3E%3Ccircle cx='900' cy='800' r='5' fill='%234ECDC4' fill-opacity='0.4'/%3E%3Ccircle cx='900' cy='1600' r='5' fill='%234ECDC4' fill-opacity='0.4'/%3E%3Ccircle cx='100' cy='1600' r='5' fill='%234ECDC4' fill-opacity='0.4'/%3E%3C/svg%3E");
    background-repeat: repeat-y;
    background-size: 100% 2400px;
    background-position: center top;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

section,
.integrated-section,
.cta-section {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   FOUNDER SECTION ENHANCEMENTS (CLEAN & INTEGRATED)
   ========================================================================== */
.premium-portrait-wrapper {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    padding: 20px;
    /* Reducido para mejor aprovechamiento del espacio */
}

.portrait-main-frame {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    /* Mantiene la imagen dentro de los bordes redondeados */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    background: #fff;
    border: 8px solid #fff;
}

.portrait-main-frame img {
    width: 100%;
    height: auto;
    filter: grayscale(1);
    transition: all 0.6s ease;
    display: block;
}

.premium-portrait-wrapper:hover .portrait-main-frame img {
    filter: grayscale(0);
}

/* Seal Design for Experience */
.experience-seal {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 110px;
    height: 110px;
    background: var(--apx-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
    border: 4px solid #fff;
    transform: rotate(-10deg);
}

.experience-seal .number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.experience-seal .label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
    margin-top: 4px;
}

/* Dynamic Name Tag */
.founder-name-tag {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #000;
    color: #fff;
    padding: 1.2rem 2rem;
    z-index: 5;
    box-shadow: 10px 10px 0 var(--apx-primary);
}

.founder-name-tag h5 {
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 1px;
}

.founder-name-tag p {
    font-size: 0.7rem;
    color: var(--apx-primary) !important;
    text-transform: uppercase;
    font-weight: 700 !important;
    margin: 0;
    letter-spacing: 2px;
}

/* Commitment Section Adjustments */
.premium-commitment-section {
    background: #fff;
    padding: 20px 0 100px;
    margin-top: -40px;
}

.commitment-card-luxury {
    background: #0d1117;
    border-radius: 40px;
    padding: 4rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    border: none;
}

.commitment-card-luxury::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #D4AF37;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.luxury-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.luxury-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 700px;
    line-height: 1.6;
}

.commitment-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ==========================================================================
   ANIMACIONES CUSTOM
   ========================================================================== */

@keyframes subtleFloatHorizontal {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(15px);
    }
}

.sticky-title,
.sticky-wrapper h3 {
    animation: subtleFloatHorizontal 2.5s ease-in-out infinite;
    display: inline-block;
}

/* ==========================================================================
   STATIC SECTOR CARDS (Adapted from Sectors 3D)
   ========================================================================== */
.sector-card-static {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    width: 100%;
    min-height: 380px;
    position: relative;
    transition: all 0.4s ease;
    color: var(--apx-text-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    clip-path: polygon(0% 0%, 75% 0%, 100% 18%, 100% 90%, 82% 90%, 75% 100%, 0% 100%, 0% 55%, 4% 50%, 0% 45%);
    display: flex;
    flex-direction: column;
}

.sector-card-static:hover {
    background: var(--apx-dark);
    color: #FFFFFF;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(78, 205, 196, 0.25);
}

.sector-card-static .card-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 65px;
    height: 65px;
    background: var(--apx-primary);
    clip-path: polygon(100% 0, 100% 100%, 30% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-card-static .card-arrow i {
    color: #FFFFFF;
    font-size: 1.3rem;
    transform: translate(10px, 6px);
}

.sector-card-static .card-icon {
    margin-bottom: 2rem;
}

.sector-card-static .card-icon i {
    font-size: 3rem;
    color: var(--apx-primary);
    transition: all 0.3s ease;
}

.sector-card-static:hover .card-icon i {
    color: #FFFFFF;
}

.sector-card-static .card-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.sector-card-static .card-divider {
    width: 40px;
    height: 4px;
    background: var(--apx-primary);
    margin-bottom: 1.2rem;
}

.sector-card-static .card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
}

.sector-card-static:hover .card-description {
    opacity: 1;
}