/* =====================================================
   NOSOTROS - PYMEVI
===================================================== */


/* =====================================================
   HERO
===================================================== */

.nosotros-hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 120px;
    background:
        linear-gradient(
            135deg,
            #f7fbff 0%,
            #ffffff 52%,
            #edf6ff 100%
        );
}

.nosotros-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bg-one {
    width: 650px;
    height: 650px;
    top: -350px;
    right: -220px;
    background: rgba(13, 98, 173, 0.10);
}

.bg-two {
    width: 500px;
    height: 500px;
    bottom: -280px;
    left: -180px;
    background: rgba(29, 155, 240, 0.08);
}


/* =====================================================
   HERO TEXTO
===================================================== */

.nosotros-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #0d62ad;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.nosotros-tag span {
    width: 35px;
    height: 3px;
    border-radius: 20px;
    background: #0d62ad;
}

.nosotros-hero h1 {
    margin-bottom: 25px;
    color: #172a3d;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
}

.nosotros-hero h1 strong {
    display: block;
    color: #0d62ad;
    font-weight: 800;
}

.nosotros-description {
    max-width: 650px;
    margin-bottom: 35px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.85;
}


/* =====================================================
   BOTONES
===================================================== */

.nosotros-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.nosotros-primary,
.nosotros-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;
}

.nosotros-primary {
    color: #ffffff !important;
    background: #0d62ad;
    box-shadow: 0 12px 30px rgba(13, 98, 173, 0.25);
}

.nosotros-primary:hover {
    color: #ffffff !important;
    background: #084d8a;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(13, 98, 173, 0.35);
}

.nosotros-primary span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.nosotros-primary:hover span {
    transform: translateX(5px);
}

.nosotros-secondary {
    color: #0d62ad !important;
    background: #ffffff;
    border: 1px solid rgba(13, 98, 173, 0.25);
}

.nosotros-secondary:hover {
    color: #0d62ad !important;
    border-color: #0d62ad;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(13, 98, 173, 0.12);
}


/* =====================================================
   ESTADISTICAS HERO
===================================================== */

.nosotros-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.nosotros-stat {
    display: flex;
    align-items: center;
    gap: 13px;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #0d62ad;
    background: rgba(13, 98, 173, 0.10);
    font-size: 18px;
}

.nosotros-stat strong,
.nosotros-stat span {
    display: block;
}

.nosotros-stat strong {
    color: #1e293b;
    font-size: 15px;
}

.nosotros-stat span {
    margin-top: 3px;
    color: #94a3b8;
    font-size: 11px;
}


/* =====================================================
   VISUAL HERO
===================================================== */

.nosotros-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-circle {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #1d9bf0,
            #0d62ad 60%,
            #083d70
        );

    box-shadow:
        0 35px 80px rgba(13, 98, 173, 0.28);
}

.experience-circle::before {
    content: "";

    position: absolute;

    width: 410px;
    height: 410px;

    border-radius: 50%;

    border: 1px solid rgba(13, 98, 173, 0.15);
}

.experience-circle::after {
    content: "";

    position: absolute;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    border: 1px dashed rgba(13, 98, 173, 0.15);
}

.experience-number {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
}

.experience-number strong {
    display: block;
    font-size: 110px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -6px;
}

.experience-number span {
    display: block;
    margin-top: 18px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =====================================================
   CARDS FLOTANTES
===================================================== */

.experience-card {
    position: absolute;
    z-index: 4;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 14px 18px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(13, 98, 173, 0.10);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.12);

    animation: floatExperience 4s ease-in-out infinite;
}

.experience-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    flex-shrink: 0;

    border-radius: 12px;

    color: #0d62ad;

    background: rgba(13, 98, 173, 0.10);
}

.experience-card strong,
.experience-card span {
    display: block;
}

.experience-card strong {
    color: #1e293b;
    font-size: 12px;
}

.experience-card span {
    margin-top: 3px;
    color: #94a3b8;
    font-size: 10px;
}

.card-tech {
    top: 40px;
    left: -20px;
}

.card-software {
    right: -20px;
    top: 190px;
    animation-delay: 1.2s;
}

.card-business {
    bottom: 30px;
    left: 10px;
    animation-delay: 2.2s;
}

@keyframes floatExperience {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =====================================================
   HISTORIA
===================================================== */

.nosotros-history {
    padding: 120px 0;
    background: #ffffff;
}

.section-small-title {
    display: block;
    margin-bottom: 18px;
    color: #0d62ad;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.nosotros-history h2,
.nosotros-philosophy h2 {
    margin-bottom: 28px;
    color: #1e293b;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
}

.nosotros-history h2 strong,
.nosotros-philosophy h2 strong {
    display: block;
    color: #0d62ad;
}

.nosotros-history p,
.nosotros-philosophy p {
    margin-bottom: 18px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.9;
}


/* =====================================================
   TIMELINE
===================================================== */

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: "";

    position: absolute;

    top: 10px;
    bottom: 10px;
    left: 15px;

    width: 2px;

    background: #e2e8f0;
}

.timeline-item {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 25px;

    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;

    left: -40px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    color: #64748b;

    background: #f1f5f9;

    border: 4px solid #ffffff;

    font-size: 10px;
    font-weight: 800;

    z-index: 2;
}

.timeline-item.active .timeline-year {
    color: #ffffff;
    background: #0d62ad;
    box-shadow: 0 0 0 7px rgba(13, 98, 173, 0.10);
}

.timeline-content {
    width: 100%;

    padding: 25px;

    border-radius: 18px;

    background: #f8fafc;

    border: 1px solid #edf2f7;

    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(7px);
    background: #ffffff;
    border-color: rgba(13, 98, 173, 0.20);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.07);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
}

.timeline-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
}


/* =====================================================
   SECTORES
===================================================== */

.nosotros-sectors {
    padding: 120px 0;
    background: #f6f9fc;
}

.sectors-header {
    max-width: 750px;
    margin: 0 auto 65px;
    text-align: center;
}

.sectors-header h2 {
    margin-bottom: 22px;
    color: #1e293b;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
}

.sectors-header h2 strong {
    display: block;
    color: #0d62ad;
}

.sectors-header p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   CARDS SECTORES
===================================================== */

.sector-card {
    height: 100%;
    min-height: 280px;

    padding: 35px 28px;

    margin-bottom: 30px;

    border-radius: 20px;

    background: #ffffff;

    border: 1px solid #edf2f7;

    transition: all 0.35s ease;
}

.sector-card:hover {
    transform: translateY(-8px);

    border-color: rgba(13, 98, 173, 0.25);

    box-shadow:
        0 25px 50px rgba(15, 23, 42, 0.10);
}

.sector-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    margin-bottom: 28px;

    border-radius: 17px;

    color: #0d62ad;

    background: rgba(13, 98, 173, 0.10);

    font-size: 22px;

    transition: all 0.3s ease;
}

.sector-card:hover .sector-icon {
    color: #ffffff;
    background: #0d62ad;
}

.sector-card h3 {
    margin-bottom: 13px;
    color: #1e293b;
    font-size: 20px;
    font-weight: 700;
}

.sector-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   FILOSOFIA
===================================================== */

.nosotros-philosophy {
    padding: 120px 0;
    background: #ffffff;
}


/* =====================================================
   VISUAL FILOSOFIA
===================================================== */

.philosophy-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 480px;
}

.philosophy-main {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 270px;
    height: 270px;

    border-radius: 50%;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0d62ad,
            #083d70
        );

    box-shadow:
        0 30px 70px rgba(13, 98, 173, 0.25);
}

.philosophy-main i {
    margin-bottom: 20px;
    font-size: 45px;
}

.philosophy-main strong {
    font-size: 20px;
}

.philosophy-main span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
}


/* ITEMS */

.philosophy-item {
    position: absolute;

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 20px;

    border-radius: 14px;

    color: #334155;

    background: #ffffff;

    border: 1px solid #edf2f7;

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.10);

    font-size: 12px;
    font-weight: 700;

    animation: floatPhilosophy 4s ease-in-out infinite;
}

.philosophy-item i {
    color: #0d62ad;
}

.item-one {
    top: 55px;
    left: 0;
}

.item-two {
    top: 150px;
    right: 0;
    animation-delay: 1.2s;
}

.item-three {
    bottom: 65px;
    left: 30px;
    animation-delay: 2.3s;
}

@keyframes floatPhilosophy {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =====================================================
   LISTA FILOSOFIA
===================================================== */

.philosophy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;

    margin-top: 30px;
}

.philosophy-list div {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px;

    border-radius: 12px;

    color: #475569;

    background: #f8fafc;

    font-size: 13px;
    font-weight: 600;
}

.philosophy-list i {
    color: #0d62ad;
}


/* =====================================================
   VALORES
===================================================== */

.nosotros-values {
    padding: 120px 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #082c4c,
            #0d62ad
        );
}

.values-header {
    max-width: 780px;
    margin: 0 auto 65px;
    text-align: center;
}

.values-header > span {
    display: block;
    margin-bottom: 18px;
    color: #8bd2ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.values-header h2 {
    margin: 0;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
}

.values-header h2 strong {
    display: block;
    color: #a9ddff;
}


/* =====================================================
   CARDS VALORES
===================================================== */

.value-card {
    height: 100%;
    min-height: 280px;

    padding: 35px 30px;

    margin-bottom: 30px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.13);
}

.value-number {
    margin-bottom: 35px;

    color: #8bd2ff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 700;
}

.value-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
    line-height: 1.85;
}


/* =====================================================
   CTA FINAL
===================================================== */

.nosotros-cta {
    padding: 90px 0;
    background: #ffffff;
}

.nosotros-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;

    padding: 65px;

    border-radius: 30px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0d62ad,
            #083d70
        );

    box-shadow:
        0 25px 60px rgba(13, 98, 173, 0.25);
}

.nosotros-cta-content > div {
    max-width: 720px;
}

.nosotros-cta-content > div > span {
    display: block;

    margin-bottom: 15px;

    color: #9bd8ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.nosotros-cta-content h2 {
    margin-bottom: 15px;

    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;

    line-height: 1.15;
}

.nosotros-cta-content h2 strong {
    color: #b6e5ff;
}

.nosotros-cta-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 16px;
    line-height: 1.8;
}

.nosotros-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    flex-shrink: 0;

    padding: 17px 30px;

    border-radius: 12px;

    color: #0d62ad !important;

    background: #ffffff;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.nosotros-cta-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.15);
}

.nosotros-cta-button span {
    font-size: 20px;
}


/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media (max-width: 991px) {

    .nosotros-hero {
        padding: 140px 0 90px;
    }

    .nosotros-visual {
        margin-top: 80px;
    }

    .nosotros-history,
    .nosotros-philosophy {
        padding: 90px 0;
    }

    .philosophy-visual {
        margin-bottom: 70px;
    }

    .nosotros-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =====================================================
   RESPONSIVE MOBILE
===================================================== */

@media (max-width: 767px) {

    .nosotros-hero {
        padding: 120px 0 70px;
    }

    .nosotros-hero h1 {
        font-size: 2.7rem;
        letter-spacing: -1px;
    }

    .nosotros-description {
        font-size: 16px;
    }

    .nosotros-buttons {
        flex-direction: column;
    }

    .nosotros-primary,
    .nosotros-secondary {
        width: 100%;
    }

    .nosotros-stats {
        flex-direction: column;
        gap: 18px;
    }

    .nosotros-visual {
        min-height: 470px;
        margin-top: 40px;
        transform: scale(0.88);
    }

    .experience-circle {
        width: 290px;
        height: 290px;
    }

    .experience-circle::before {
        width: 350px;
        height: 350px;
    }

    .experience-circle::after {
        width: 400px;
        height: 400px;
    }

    .experience-number strong {
        font-size: 90px;
    }

    .nosotros-history,
    .nosotros-sectors,
    .nosotros-philosophy,
    .nosotros-values {
        padding: 80px 0;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-year {
        left: -30px;
    }

    .philosophy-list {
        grid-template-columns: 1fr;
    }

    .philosophy-visual {
        transform: scale(0.88);
        margin-left: -5%;
        margin-right: -5%;
    }

    .nosotros-cta {
        padding: 60px 0;
    }

    .nosotros-cta-content {
        padding: 38px 25px;
        border-radius: 22px;
    }

    .nosotros-cta-button {
        width: 100%;
    }

}


/* =====================================================
   MOBILE PEQUEÑO
===================================================== */

@media (max-width: 480px) {

    .nosotros-visual {
        transform: scale(0.76);
        margin-left: -15%;
        margin-right: -15%;
    }

    .experience-card {
        padding: 10px 12px;
    }

    .experience-card strong {
        font-size: 10px;
    }

    .experience-card span {
        font-size: 9px;
    }

    .experience-card-icon {
        width: 35px;
        height: 35px;
    }

    .philosophy-visual {
        transform: scale(0.75);
        margin-left: -18%;
        margin-right: -18%;
    }

}