/* =====================================================
   IMPLEMENTACION - PYMEVI
===================================================== */


/* =====================================================
   HERO
===================================================== */

.implementacion-hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 110px;
    background:
        linear-gradient(
            135deg,
            #f7fbff 0%,
            #ffffff 50%,
            #edf7ff 100%
        );
}

.implementacion-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bg-one {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -180px;
    background: rgba(13, 98, 173, 0.10);
}

.bg-two {
    width: 420px;
    height: 420px;
    bottom: -220px;
    left: -180px;
    background: rgba(29, 155, 240, 0.08);
}


/* =====================================================
   HERO TEXTO
===================================================== */

.implementacion-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #0d62ad;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.implementacion-tag span {
    width: 35px;
    height: 3px;
    border-radius: 10px;
    background: #0d62ad;
}

.implementacion-hero h1 {
    margin-bottom: 25px;
    color: #172a3d;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
}

.implementacion-hero h1 strong {
    display: block;
    color: #0d62ad;
    font-weight: 800;
}

.implementacion-description {
    max-width: 600px;
    margin-bottom: 35px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.85;
}


/* =====================================================
   BOTONES
===================================================== */

.implementacion-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.implementacion-primary,
.implementacion-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 15px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.implementacion-primary {
    color: #ffffff !important;
    background: #0d62ad;
    box-shadow: 0 12px 30px rgba(13, 98, 173, 0.25);
}

.implementacion-primary:hover {
    color: #ffffff !important;
    background: #084d8a;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(13, 98, 173, 0.35);
}

.implementacion-primary span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.implementacion-primary:hover span {
    transform: translateX(5px);
}

.implementacion-secondary {
    color: #0d62ad !important;
    background: #ffffff;
    border: 1px solid rgba(13, 98, 173, 0.25);
}

.implementacion-secondary:hover {
    color: #0d62ad !important;
    border-color: #0d62ad;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(13, 98, 173, 0.12);
}


/* =====================================================
   ESTADISTICAS
===================================================== */

.implementacion-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.implementacion-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.implementacion-stat i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 12px;
    color: #0d62ad;
    background: rgba(13, 98, 173, 0.10);
    font-size: 17px;
}

.implementacion-stat strong,
.implementacion-stat span {
    display: block;
}

.implementacion-stat strong {
    color: #1e293b;
    font-size: 13px;
}

.implementacion-stat span {
    margin-top: 3px;
    color: #94a3b8;
    font-size: 11px;
}


/* =====================================================
   VISUAL HERO
===================================================== */

.implementacion-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.implementacion-circle {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(13, 98, 173, 0.14),
            rgba(13, 98, 173, 0.02)
        );
}


/* =====================================================
   CARD PRINCIPAL
===================================================== */

.implementacion-main-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 470px;
    padding: 32px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(13, 98, 173, 0.12);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.13);
    backdrop-filter: blur(15px);
}

.implementation-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf2f7;
}

.implementation-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    color: #ffffff;
    background: linear-gradient(135deg, #0d62ad, #1d9bf0);
    font-size: 22px;
}

.implementation-card-header span,
.implementation-card-header strong {
    display: block;
}

.implementation-card-header span {
    margin-bottom: 4px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.implementation-card-header strong {
    color: #1e293b;
    font-size: 17px;
}


/* =====================================================
   BARRA DE PROGRESO
===================================================== */

.implementation-progress {
    padding: 28px 0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-info span {
    color: #64748b;
    font-size: 13px;
}

.progress-info strong {
    color: #0d62ad;
    font-size: 18px;
}

.progress-bar-custom {
    width: 100%;
    height: 10px;
    overflow: hidden;
    border-radius: 20px;
    background: #eaf0f6;
}

.progress-value {
    width: 75%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0d62ad, #1d9bf0);
    animation: progressAnimation 1.5s ease;
}

@keyframes progressAnimation {
    from {
        width: 0;
    }

    to {
        width: 75%;
    }
}


/* =====================================================
   ETAPAS
===================================================== */

.implementation-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.implementation-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px;
    border-radius: 14px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.implementation-step:hover {
    transform: translateX(5px);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 11px;
    color: #94a3b8;
    background: #e8eef4;
    font-size: 13px;
}

.implementation-step strong,
.implementation-step span {
    display: block;
}

.implementation-step strong {
    color: #334155;
    font-size: 13px;
}

.implementation-step span {
    margin-top: 2px;
    color: #94a3b8;
    font-size: 11px;
}

.implementation-step.active .step-icon {
    color: #ffffff;
    background: #0d62ad;
}

.implementation-step.current {
    background: rgba(13, 98, 173, 0.07);
    border: 1px solid rgba(13, 98, 173, 0.15);
}

.implementation-step.current .step-icon {
    color: #0d62ad;
    background: rgba(13, 98, 173, 0.12);
}


/* =====================================================
   CARDS FLOTANTES
===================================================== */

.implementation-floating {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(13, 98, 173, 0.10);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
    animation: floatImplementation 4s ease-in-out infinite;
}

.implementation-floating i {
    color: #0d62ad;
    font-size: 18px;
}

.implementation-floating strong,
.implementation-floating span {
    display: block;
}

.implementation-floating strong {
    color: #1e293b;
    font-size: 12px;
}

.implementation-floating span {
    margin-top: 3px;
    color: #94a3b8;
    font-size: 10px;
}

.floating-one {
    top: 55px;
    left: -10px;
}

.floating-two {
    right: -10px;
    bottom: 55px;
    animation-delay: 1.5s;
}

@keyframes floatImplementation {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* =====================================================
   INTRODUCCION
===================================================== */

.implementacion-intro {
    padding: 110px 0;
    background: #ffffff;
}

.intro-label {
    margin-bottom: 18px;
    color: #0d62ad;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.implementacion-intro h2 {
    margin: 0;
    color: #1e293b;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
}

.implementacion-intro h2 strong {
    display: block;
    color: #0d62ad;
}

.implementacion-intro p {
    margin-bottom: 18px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.9;
}


/* =====================================================
   PROCESO
===================================================== */

.implementacion-process {
    padding: 110px 0;
    background: #f6f9fc;
}

.process-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.section-small-title {
    display: block;
    margin-bottom: 18px;
    color: #0d62ad;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.process-header h2 {
    margin: 0;
    color: #1e293b;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
}

.process-header h2 strong {
    display: block;
    color: #0d62ad;
}

.process-header p {
    max-width: 420px;
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   CARDS PROCESO
===================================================== */

.process-card {
    position: relative;
    height: 100%;
    min-height: 280px;
    padding: 35px 30px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #edf2f7;
    transition: all 0.35s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 98, 173, 0.25);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.10);
}

.process-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #e2e8f0;
    font-size: 30px;
    font-weight: 800;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    border-radius: 17px;
    color: #0d62ad;
    background: rgba(13, 98, 173, 0.10);
    font-size: 22px;
}

.process-card h3 {
    margin-bottom: 14px;
    color: #1e293b;
    font-size: 20px;
    font-weight: 700;
}

.process-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   QUE INCLUYE
===================================================== */

.implementacion-includes {
    padding: 110px 0;
    background: #ffffff;
}

.implementacion-includes h2 {
    margin-bottom: 25px;
    color: #1e293b;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
}

.implementacion-includes h2 strong {
    display: block;
    color: #0d62ad;
}

.implementacion-includes p {
    margin-bottom: 30px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.9;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 80px;
    padding: 18px;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.include-item:hover {
    background: #ffffff;
    transform: translateY(-4px);
    border-color: rgba(13, 98, 173, 0.25);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

.include-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #0d62ad;
    font-size: 11px;
}


/* =====================================================
   ACOMPAÑAMIENTO
===================================================== */

.implementacion-support {
    padding: 120px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #092c4b, #0d62ad);
}

.support-header {
    max-width: 750px;
    margin: 0 auto 75px;
    text-align: center;
}

.support-header > span {
    display: block;
    margin-bottom: 18px;
    color: #8bd2ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.support-header h2 {
    margin-bottom: 22px;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
}

.support-header h2 strong {
    display: block;
    color: #9bd8ff;
}

.support-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   TIMELINE
===================================================== */

.support-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.support-item {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.12);
}

.support-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    border-radius: 17px;
    color: #0d62ad;
    background: #ffffff;
    font-size: 20px;
}

.support-item h3 {
    margin-bottom: 13px;
    font-size: 20px;
    font-weight: 700;
}

.support-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   CTA FINAL
===================================================== */

.implementacion-cta {
    padding: 90px 0;
    background: #ffffff;
}

.implementacion-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
    border-radius: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #0d62ad, #083d70);
    box-shadow: 0 25px 60px rgba(13, 98, 173, 0.25);
}

.implementacion-cta-content > div {
    max-width: 720px;
}

.implementacion-cta-content > div > span {
    display: block;
    margin-bottom: 15px;
    color: #9bd8ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.implementacion-cta-content h2 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
}

.implementacion-cta-content h2 strong {
    color: #b6e5ff;
}

.implementacion-cta-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.8;
}

.implementacion-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-shrink: 0;
    padding: 17px 28px;
    border-radius: 12px;
    color: #0d62ad !important;
    background: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.implementacion-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.implementacion-cta-button span {
    margin: 0;
    color: #0d62ad;
    font-size: 20px;
}


/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media (max-width: 991px) {

    .implementacion-hero {
        padding: 140px 0 80px;
    }

    .implementacion-visual {
        margin-top: 70px;
    }

    .process-header {
        display: block;
    }

    .process-header p {
        margin-top: 25px;
    }

    .support-timeline {
        grid-template-columns: 1fr;
    }

    .implementacion-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =====================================================
   RESPONSIVE MOBILE
===================================================== */

@media (max-width: 767px) {

    .implementacion-hero {
        padding: 120px 0 70px;
    }

    .implementacion-hero h1 {
        font-size: 2.7rem;
        letter-spacing: -1px;
    }

    .implementacion-description {
        font-size: 16px;
    }

    .implementacion-buttons {
        flex-direction: column;
    }

    .implementacion-primary,
    .implementacion-secondary {
        width: 100%;
    }

    .implementacion-stats {
        flex-direction: column;
        gap: 16px;
    }

    .implementacion-stat {
        width: 100%;
    }

    .implementacion-visual {
        min-height: 500px;
        margin-top: 30px;
        transform: scale(0.92);
    }

    .implementacion-main-card {
        padding: 22px;
    }

    .floating-one {
        top: 10px;
        left: -10px;
    }

    .floating-two {
        right: -10px;
        bottom: 10px;
    }

    .implementacion-intro,
    .implementacion-process,
    .implementacion-includes,
    .implementacion-support {
        padding: 80px 0;
    }

    .process-header {
        margin-bottom: 40px;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }

    .implementacion-cta {
        padding: 60px 0;
    }

    .implementacion-cta-content {
        padding: 35px 25px;
        border-radius: 22px;
    }

    .implementacion-cta-button {
        width: 100%;
    }

}


/* =====================================================
   MOBILE PEQUEÑO
===================================================== */

@media (max-width: 480px) {

    .implementacion-visual {
        transform: scale(0.82);
        margin-left: -8%;
        margin-right: -8%;
    }

    .implementation-floating {
        padding: 10px 12px;
    }

    .implementation-floating strong {
        font-size: 10px;
    }

    .implementation-floating span {
        font-size: 9px;
    }

    .implementacion-main-card {
        border-radius: 20px;
    }

    .implementation-step {
        padding: 10px;
    }

}