/* CSS para la sección Proceso de Trabajo */
.process-section {
    background-color: #f9fafc;
    position: relative;
    overflow: hidden;
padding: 100px 0 0 0;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/process-bg-pattern.png') repeat;
    opacity: 0.03;
    z-index: 0;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.process-step {
    position: relative;
    margin-bottom: 50px;
    z-index: 2;
    transition: all 0.4s ease;
}

.step-number {
    position: absolute;
    left: 30px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.step-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-left: 80px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.step-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.step-description {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.step-details {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.step-details p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.step-details i {
    margin-right: 10px;
    color: var(--success-color);
}

.payment-info {
    background: white;
    border-radius: 8px;
    padding: 15px;
    border: 1px dashed var(--light-gray);
}

.payment-info h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-info ul {
    margin-left: 5px;
}

.payment-info li {
    margin-bottom: 5px;
    color: var(--gray-color);
    display: flex;
    align-items: center;
}

.payment-info i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.step-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.feature-item i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1rem;
}

.feature-item span {
    color: var(--dark-color);
    font-size: 0.95rem;
}

.adjustments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.adjustment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: var(--transition);
}

.adjustment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.1);
}

.adjustment-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.adjustment-item span {
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.launch-conditions {
    margin-top: 20px;
}

.condition-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
}

.condition-check {
    width: 25px;
    height: 25px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.condition-check i {
    color: white;
    font-size: 0.8rem;
}

.condition-item span {
    color: var(--dark-color);
    font-size: 0.95rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.support-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.support-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.support-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.support-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.delivery-times {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin: 60px auto 0;
    max-width: 900px;
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 1px solid var(--light-gray);
}

.delivery-title {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.delivery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.delivery-card {
    padding: 25px 20px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.03);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: var(--transition);
}

.delivery-card:hover {
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-5px);
}

.delivery-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.delivery-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.delivery-time {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.delivery-note {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-top: 30px;
    font-style: italic;
}


/* Responsive */
@media (max-width: 992px) {
    .process-timeline::before {
        left: 35px;
    }
    
    .step-number {
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .step-content {
        margin-left: 70px;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 30px auto 0;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        left: 0;
    }
    
    .step-content {
        margin-left: 50px;
        padding: 20px;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .delivery-times {
        padding: 30px 20px;
    }
    
    .process-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .step-number {
        position: relative;
        margin: 0 auto 15px;
        left: auto;
    }
    
    .step-content {
        margin-left: 0;
        text-align: center;
    }
    
    .step-icon {
        margin: 0 auto 15px;
    }
    
    .step-details, .payment-info {
        text-align: left;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}


/* Sección Proceso Intro */
.pw-process-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos principales */
.pw-process-section {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    padding: 80px 0;
    color: #212529;
    position: relative;
    overflow: hidden;
}

.pw-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Encabezado de sección */
.pw-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pw-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.2;
}

.pw-section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.pw-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #f59e0b);
    margin: 0 auto;
    border-radius: 2px;
}

/* Tarjetas de proceso */
.pw-process-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.pw-highlight-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border: 1px solid #e9ecef;
}

.pw-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #f59e0b);
}

.pw-highlight-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    z-index: -1;
}

.pw-highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2563eb;
    transition: all 0.3s ease;
}

.pw-highlight-icon svg {
    width: 32px;
    height: 32px;
}

.pw-highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.pw-highlight-card p {
    color: #6c757d;
    margin-bottom: 20px;
    min-height: 40px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Efecto hover */
.pw-highlight-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.pw-highlight-card:hover .pw-highlight-hover {
    opacity: 1;
    transform: translateY(0);
}

.pw-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pw-highlight-card:hover .pw-highlight-icon {
    background-color: #2563eb;
    color: white;
}

/* Botones */
.pw-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.pw-btn-primary {
    background-color: #2563eb;
    color: white;
}

.pw-btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pw-btn-outline {
    background-color: transparent;
    border-color: #2563eb;
    color: #2563eb;
}

.pw-btn-outline:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* CTA final */
.pw-process-cta {
    text-align: center;
    margin-top: 50px;
}

.pw-process-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .pw-section-title {
        font-size: 2rem;
    }
    
    .pw-section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .pw-process-section {
        padding: 60px 0;
    }
    
    .pw-process-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .pw-process-highlights {
        grid-template-columns: 1fr;
    }
    
    .pw-section-title {
        font-size: 1.8rem;
    }
    
    .pw-process-cta h3 {
        font-size: 1.3rem;
    }
}