/* ===== SERVICES TASKS ===== */
.services-tasks {
    padding: 80px 10%;
    background-color: #f7f8fa;
    color: #E67E22;
}

.tasks-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tasks-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.tasks-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 50px;
}

.tasks-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.tasks-column {
    flex: 1 1 45%;
}

/* ===== TÍTULOS DE SERVICIO CON ICONO SVG ===== */
.tasks-column h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #626262;
    transition: color 0.3s ease;
    cursor: default;
}

.tasks-column h3:hover {
    color: #E67E22;
    transform: translateX(4px) scale(1.02);
}

.service-title-icon {
    stroke-width: 2px;
    width: 20px;
    height: 20px;
    fill: #E67E22;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.tasks-column h3:hover .service-title-icon {
    fill: #E67E22;
    transform: scale(1.2);
}

/* ===== LISTA DE TAREAS ===== */
.tasks-column ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.tasks-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    transition: color 0.3s ease;
    cursor: default;

}

.task-icon {
   width: 24px;
    height: 24px;
    fill: #E67E22;
    stroke: #E67E22;
    flex-shrink: 0;
    transition: fill 0.3s ease, transform 0.3s ease;
}

li:hover .task-icon {
  transform: rotate(-35deg);
  filter: saturate(100%);
}

.tasks-column ul li:hover {
    color: #E67E22;
}

.tasks-column ul li:hover svg.task-icon {
    fill: #E67E22;
    transform: scale(1.2) rotate(-30deg);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .tasks-grid {
        gap: 0px;
    }

    .tasks-column {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .tasks-title {
        font-size: 2rem;
    }

    .tasks-subtitle {
        font-size: 1rem;
    }

    .tasks-column h3 {
        font-size: 1.2rem;
    }

    .tasks-column ul li {
        font-size: 0.95rem;
    }

    .tasks-column ul li svg.task-icon {
        width: 12px;
        height: 12px;
    }

    .service-title-icon {
        width: 16px;
        height: 16px;
    }
}