/* =========================================== */
/* CSS - MÓDULO SERVICIOS */
/* =========================================== */

:root {
    --primary: #02cbc4;
    --primary-dark: #019b94;
    --primary-light: #e0f7f6;
    --dark: #2d3e50;
    --darker: #1a2a3a;
    --gray-100: #f8fafc;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(2,203,196,0.2);
}

/* HERO SECTION */
.servicios-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--darker);
    overflow: hidden;
    padding: 100px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(2,203,196,0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollBounce 2s infinite;
    cursor: pointer;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* SECCIÓN CALIDAD */
.calidad-section {
    padding: 80px 0;
    background: white;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.section-title .highlight {
    color: var(--primary);
}

.calidad-text {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.8;
}

.certificaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 800px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary);
}

.cert-info {
    display: flex;
    flex-direction: column;
}

.cert-info strong {
    font-size: 1.1rem;
    color: var(--dark);
}

.cert-info span {
    font-size: 0.9rem;
    color: #718096;
}

/* SECCIÓN TECNOLOGÍA */
.tecnologia-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.tecnologia-content {
    padding-right: 40px;
}

.tecnologia-text {
    font-size: 1.2rem;
    color: #4a5568;
    margin: 30px 0;
    line-height: 1.8;
}

.tecnologia-features {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-item span {
    color: #718096;
    font-size: 0.9rem;
}

.tecnologia-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tecnologia-image img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.tecnologia-image:hover img {
    transform: scale(1.1);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: badgeFloat 3s infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* SERVICIOS GRID */
.servicios-grid-section {
    padding: 115px 0;
    background: radial-gradient(circle at 82% -10%, rgba(2, 203, 196, 0.24) 0%, transparent 42%),
                linear-gradient(140deg, #102534 0%, #17384b 52%, #102534 100%);
    position: relative;
    overflow: hidden;
}

.servicios-grid-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.22;
    pointer-events: none;
}

.servicios-grid-section .section-header {
    max-width: 860px;
    margin: 0 auto 46px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.servicios-grid-section .section-badge {
    display: inline-block;
    background: rgba(2, 203, 196, 0.16);
    border: 1px solid rgba(2, 203, 196, 0.46);
    color: #9ef9f4;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.servicios-grid-section .section-title {
    color: #ffffff;
    margin-bottom: 14px;
}

.servicios-grid-section .section-description {
    font-size: 1.06rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.75;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.servicio-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    backdrop-filter: blur(10px);
}

.servicio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(2, 203, 196, 0.72);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
    background: rgba(255, 255, 255, 0.12);
}

.servicio-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.servicio-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 37, 52, 0.08) 10%, rgba(16, 37, 52, 0.76) 100%);
}

.servicio-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.servicio-card:hover .servicio-media img {
    transform: scale(1.08);
}

.servicio-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    border-radius: 999px;
    background: rgba(2, 203, 196, 0.95);
    color: #08303d;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.servicio-body {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.servicio-card h3 {
    font-size: 1.26rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
}

.servicio-card p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 14px;
    line-height: 1.65;
}

.servicio-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    gap: 8px;
}

.servicio-list li {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
}

.servicio-list li::before {
    content: '';
    color: var(--primary);
    font-weight: 900;
}

.servicio-cta {
    margin-top: auto;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.servicio-cta:hover {
    gap: 10px;
    color: #86fff8;
}

/* PROCESO DE TRABAJO */
.proceso-section {
    padding: 95px 0;
    background: var(--gray-100);
}

.proceso-section .section-header {
    max-width: 860px;
    margin: 0 auto 38px;
    text-align: center;
}

.proceso-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
}

.proceso-intro {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 24px;
    border: 1px solid rgba(2, 203, 196, 0.2);
    box-shadow: var(--shadow);
    height: fit-content;
}

.proceso-intro h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.proceso-intro p {
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 18px;
}

.proceso-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.proceso-kpi {
    background: var(--primary-light);
    border: 1px solid rgba(2, 203, 196, 0.22);
    border-radius: 12px;
    padding: 10px 10px;
}

.proceso-kpi strong {
    display: block;
    font-size: 1.05rem;
    color: var(--primary-dark);
    line-height: 1.2;
}

.proceso-kpi span {
    font-size: 0.8rem;
    color: #4a5568;
}

.proceso-steps {
    display: grid;
    gap: 14px;
    position: relative;
}

.proceso-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, rgba(2, 203, 196, 0.4) 0%, rgba(2, 203, 196, 0.12) 100%);
}

.step {
    position: relative;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 12px;
    align-items: start;
}

.step-marker {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid rgba(2, 203, 196, 0.45);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.step-content {
    background: #ffffff;
    padding: 18px 18px;
    border-radius: 16px;
    border: 1px solid rgba(2, 203, 196, 0.2);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-4px);
    border-color: rgba(2, 203, 196, 0.45);
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-content p {
    font-size: 0.95rem;
    color: #4a5568;
    margin: 0 0 12px;
    line-height: 1.65;
}

.step-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.step-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(2, 203, 196, 0.25);
    background: rgba(2, 203, 196, 0.08);
    color: #275064;
    font-size: 0.78rem;
    font-weight: 600;
}

.step-meta i {
    color: var(--primary-dark);
}

/* INDUSTRIAS */
.industrias-section {
    padding: 95px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfb 100%);
}

.industrias-section .section-header {
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

.industrias-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    background: #ffffff;
    border: 1px solid rgba(2, 203, 196, 0.22);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 28px;
}

.highlight-image {
    min-height: 320px;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-content {
    padding: 30px 28px;
    background: radial-gradient(circle at top left, rgba(2, 203, 196, 0.14), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-chip {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(2, 203, 196, 0.35);
    background: rgba(2, 203, 196, 0.12);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.highlight-content h3 {
    font-size: 1.65rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.highlight-content p {
    color: #425466;
    line-height: 1.75;
    margin-bottom: 18px;
}

.highlight-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.metric-item {
    border-radius: 12px;
    border: 1px solid rgba(2, 203, 196, 0.2);
    background: #ffffff;
    padding: 10px;
    text-align: center;
}

.metric-item strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.15rem;
    line-height: 1.2;
}

.metric-item span {
    font-size: 0.78rem;
    color: #4a5568;
}

.industrias-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.industria-card {
    background: #ffffff;
    border: 1px solid rgba(2, 203, 196, 0.2);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
}

.industria-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(2, 203, 196, 0.45);
}

.industria-media {
    margin: 0;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.industria-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(15, 34, 47, 0.45) 100%);
    pointer-events: none;
}

.industria-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industria-card:hover .industria-media img {
    transform: scale(1.08);
}

.industria-body {
    padding: 16px 16px 18px;
}

.industria-body h3 {
    font-size: 1.08rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.industria-body p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.92rem;
}
/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    background: var(--darker);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicio-card {
        min-height: 430px;
    }
    
    .proceso-layout {
        grid-template-columns: 1fr;
    }
    .industrias-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .industrias-highlight {
        grid-template-columns: 1fr;
    }

    .highlight-image {
        min-height: 250px;
    }
    .certificaciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicio-card {
        min-height: 430px;
    }

    .servicios-grid-section .section-title {
        font-size: 2.4rem;
    }
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .certificaciones-grid {
        grid-template-columns: 1fr;
    }
    
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .servicio-card {
        min-height: auto;
    }

    .servicio-media {
        height: 180px;
    }

    .servicios-grid-section .section-title {
        font-size: 2rem;
    }
    
    .proceso-kpis {
        grid-template-columns: 1fr;
    }

    .step {
        grid-template-columns: 1fr;
    }

    .proceso-steps::before {
        display: none;
    }

    .step-marker {
        width: 56px;
        height: 56px;
    }

    .highlight-content {
        padding: 22px 18px;
    }

    .highlight-metrics {
        grid-template-columns: 1fr;
    }
    .industrias-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ANIMACIONES */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .calidad-section, .tecnologia-section, .servicio-card, .step, .industria-card {
    animation: fadeIn 1s ease-out;
}







/* MIS PROYECTOS */
.mis-proyectos-section {
    padding: 100px 0;
    background: radial-gradient(circle at 15% -10%, rgba(2, 203, 196, 0.18) 0%, transparent 40%),
                linear-gradient(180deg, #ffffff 0%, #f4fbfb 100%);
}

.mpj-slider-shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 10px;
}

.mpj-slider-window {
    width: 100%;
    overflow: hidden;
    padding: 4px 6px 8px;
}

.mpj-slider-track {
    display: flex;
    transition: transform 0.38s ease;
}

.mpj-slide {
    flex: 0 0 calc(100% / 3);
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.mpj-slide img {
    width: 100%;
    height: clamp(220px, 26vw, 300px);
    border-radius: 14px 14px 0 0;
    object-fit: cover;
    object-position: center 58%;
    display: block;
}

.mpj-slide-body {
    background: #fff;
    border: 1px solid rgba(2, 203, 196, 0.2);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    padding: 16px;
    min-height: 148px;
    height: 100%;
    box-shadow: 0 8px 18px rgba(15, 34, 48, 0.08);
}

.mpj-slide-body h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 1.05rem;
}

.mpj-slide-body p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.92rem;
}

.mpj-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(15, 34, 48, 0.14);
    z-index: 5;
}

.mpj-prev {
    left: -18px;
}

.mpj-next {
    right: -18px;
}

.mpj-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.mpj-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #c7d3dd;
}

.mpj-dot.active {
    background: var(--primary);
}

/* Ajustes finos de encuadre por proyecto */
.mpj-slide:nth-child(1) img { object-position: center 62%; }
.mpj-slide:nth-child(2) img { object-position: center 55%; }
.mpj-slide:nth-child(3) img { object-position: center 58%; }
.mpj-slide:nth-child(4) img { object-position: center 60%; }
.mpj-slide:nth-child(5) img { object-position: center 52%; }
.mpj-slide:nth-child(6) img { object-position: center 56%; }
.mpj-slide:nth-child(7) img { object-position: center 54%; }

.mpj-process-panel {
    margin-top: 26px;
    background: #fff;
    border: 1px solid rgba(2, 203, 196, 0.22);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 22px;
}

.mpj-process-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.mpj-process-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(2, 203, 196, 0.35);
    background: rgba(2, 203, 196, 0.12);
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mpj-process-head h3 {
    margin: 0;
    color: var(--dark);
    font-size: 1.25rem;
}

.mpj-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.mpj-step {
    border: 1px solid rgba(2, 203, 196, 0.2);
    background: #f8fcfc;
    border-radius: 12px;
    padding: 12px;
}

.mpj-step-num {
    display: inline-block;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.mpj-step h4 {
    margin: 0 0 6px;
    font-size: 0.95rem;
    color: var(--dark);
}

.mpj-step p {
    margin: 0;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .mpj-slide {
        flex: 0 0 calc(100% / 2);
    }

    .mpj-prev {
        left: -12px;
    }

    .mpj-next {
        right: -12px;
    }

    .mpj-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .mpj-slider-window {
        padding: 0 4px 8px;
    }

    .mpj-slide {
        flex: 0 0 100%;
    }

    .mpj-slide img {
        height: 220px;
    }

    .mpj-nav {
        width: 36px;
        height: 36px;
    }

    .mpj-prev {
        left: 4px;
    }

    .mpj-next {
        right: 4px;
    }

    .mpj-process-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .certificaciones-grid {
        grid-template-columns: 1fr;
    }
    
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .servicio-card {
        min-height: auto;
    }

    .servicio-media {
        height: 180px;
    }

    .servicios-grid-section .section-title {
        font-size: 2rem;
    }
    
    .proceso-kpis {
        grid-template-columns: 1fr;
    }

    .step {
        grid-template-columns: 1fr;
    }

    .proceso-steps::before {
        display: none;
    }

    .step-marker {
        width: 56px;
        height: 56px;
    }

    .highlight-content {
        padding: 22px 18px;
    }

    .highlight-metrics {
        grid-template-columns: 1fr;
    }
    .industrias-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ANIMACIONES */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .calidad-section, .tecnologia-section, .servicio-card, .step, .industria-card {
    animation: fadeIn 1s ease-out;
}



